blob: f98bd7e6ea3bafef8400a737184b960a4b7ab200 [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 Moolenaar59716a22017-03-01 20:32:44 +01001472#ifdef FEAT_BEVAL
1473 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;
Bram Moolenaar45500912014-07-09 20:51:07 +02001792 int conv = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001794#ifdef FEAT_MBYTE
1795 if (ch2 == NUL)
1796 {
1797 int i;
1798 char_u *p;
1799 WCHAR ch[2];
1800
1801 ch[0] = c;
1802 if (c >= 0xD800 && c <= 0xDBFF) /* High surrogate */
1803 {
1804 ch[1] = tgetch(&modifiers, &ch2);
1805 n++;
1806 }
1807 p = utf16_to_enc(ch, &n);
1808 if (p != NULL)
1809 {
1810 for (i = 0; i < n; i++)
1811 typeahead[typeaheadlen + i] = p[i];
1812 vim_free(p);
1813 }
1814 }
1815 else
1816#endif
1817 typeahead[typeaheadlen] = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 if (ch2 != NUL)
1819 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001820 typeahead[typeaheadlen + n] = 3;
1821 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
Bram Moolenaar45500912014-07-09 20:51:07 +02001822 n += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824
Bram Moolenaar45500912014-07-09 20:51:07 +02001825 if (conv)
1826 {
1827 char_u *p = typeahead + typeaheadlen;
Bram Moolenaar45500912014-07-09 20:51:07 +02001828
Bram Moolenaar1ec4dd42015-01-20 19:39:35 +01001829 if (*p != K_NUL)
Bram Moolenaar45500912014-07-09 20:51:07 +02001830 {
Bram Moolenaar1ec4dd42015-01-20 19:39:35 +01001831 char_u *e = typeahead + TYPEAHEADLEN;
1832
1833 while (*p && p < e)
Bram Moolenaar45500912014-07-09 20:51:07 +02001834 {
Bram Moolenaar1ec4dd42015-01-20 19:39:35 +01001835 if (*p == K_NUL)
1836 {
1837 ++p;
1838 mch_memmove(p + 1, p, ((size_t)(e - p)) - 1);
1839 *p = 3;
1840 ++n;
1841 }
Bram Moolenaar45500912014-07-09 20:51:07 +02001842 ++p;
Bram Moolenaar45500912014-07-09 20:51:07 +02001843 }
Bram Moolenaar45500912014-07-09 20:51:07 +02001844 }
1845 }
1846
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 /* Use the ALT key to set the 8th bit of the character
1848 * when it's one byte, the 8th bit isn't set yet and not
1849 * using a double-byte encoding (would become a lead
1850 * byte). */
1851 if ((modifiers & MOD_MASK_ALT)
1852 && n == 1
1853 && (typeahead[typeaheadlen] & 0x80) == 0
1854#ifdef FEAT_MBYTE
1855 && !enc_dbcs
1856#endif
1857 )
1858 {
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001859#ifdef FEAT_MBYTE
1860 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
1861 typeahead + typeaheadlen);
1862#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 typeahead[typeaheadlen] |= 0x80;
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001864#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 modifiers &= ~MOD_MASK_ALT;
1866 }
1867
1868 if (modifiers != 0)
1869 {
1870 /* Prepend modifiers to the character. */
1871 mch_memmove(typeahead + typeaheadlen + 3,
1872 typeahead + typeaheadlen, n);
1873 typeahead[typeaheadlen++] = K_SPECIAL;
1874 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
1875 typeahead[typeaheadlen++] = modifiers;
1876 }
1877
1878 typeaheadlen += n;
1879
1880#ifdef MCH_WRITE_DUMP
1881 if (fdDump)
1882 fputc(c, fdDump);
1883#endif
1884 }
1885 }
1886 }
1887
1888#ifdef MCH_WRITE_DUMP
1889 if (fdDump)
1890 {
1891 fputs("]\n", fdDump);
1892 fflush(fdDump);
1893 }
1894#endif
1895
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896theend:
1897 /* Move typeahead to "buf", as much as fits. */
1898 len = 0;
1899 while (len < maxlen && typeaheadlen > 0)
1900 {
1901 buf[len++] = typeahead[0];
1902 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
1903 }
1904 return len;
1905
1906#else /* FEAT_GUI_W32 */
1907 return 0;
1908#endif /* FEAT_GUI_W32 */
1909}
1910
Bram Moolenaar82881492012-11-20 16:53:39 +01001911#ifndef PROTO
1912# ifndef __MINGW32__
1913# include <shellapi.h> /* required for FindExecutable() */
1914# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915#endif
1916
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001917/*
Bram Moolenaar43663192017-03-05 14:29:12 +01001918 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
1919 * If "use_path" is FALSE: Return TRUE if "name" exists.
1920 * When returning TRUE and "path" is not NULL save the path and set "*path" to
1921 * the allocated memory.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001922 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001923 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 static int
Bram Moolenaar43663192017-03-05 14:29:12 +01001925executable_exists(char *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926{
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001927 char *dum;
1928 char fname[_MAX_PATH];
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001929 char *curpath, *newpath;
1930 long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931
Bram Moolenaar43663192017-03-05 14:29:12 +01001932 if (!use_path)
1933 {
Bram Moolenaarf7e894d2017-03-05 19:49:13 +01001934 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name))
Bram Moolenaar43663192017-03-05 14:29:12 +01001935 {
1936 if (path != NULL)
Bram Moolenaar066029e2017-03-05 15:19:32 +01001937 {
Bram Moolenaarf7e894d2017-03-05 19:49:13 +01001938 if (mch_isFullName((char_u *)name))
Bram Moolenaar066029e2017-03-05 15:19:32 +01001939 *path = vim_strsave((char_u *)name);
1940 else
1941 *path = FullName_save((char_u *)name, FALSE);
1942 }
Bram Moolenaar43663192017-03-05 14:29:12 +01001943 return TRUE;
1944 }
1945 return FALSE;
1946 }
1947
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001948#ifdef FEAT_MBYTE
1949 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001951 WCHAR *p = enc_to_utf16((char_u *)name, NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001952 WCHAR fnamew[_MAX_PATH];
1953 WCHAR *dumw;
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001954 WCHAR *wcurpath, *wnewpath;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001955
1956 if (p != NULL)
1957 {
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001958 wcurpath = _wgetenv(L"PATH");
1959 wnewpath = (WCHAR*)alloc((unsigned)(wcslen(wcurpath) + 3)
1960 * sizeof(WCHAR));
1961 if (wnewpath == NULL)
1962 return FALSE;
1963 wcscpy(wnewpath, L".;");
1964 wcscat(wnewpath, wcurpath);
1965 n = (long)SearchPathW(wnewpath, p, NULL, _MAX_PATH, fnamew, &dumw);
1966 vim_free(wnewpath);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001967 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001968 if (n == 0)
1969 return FALSE;
1970 if (GetFileAttributesW(fnamew) & FILE_ATTRIBUTE_DIRECTORY)
1971 return FALSE;
1972 if (path != NULL)
1973 *path = utf16_to_enc(fnamew, NULL);
1974 return TRUE;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001977#endif
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001978
1979 curpath = getenv("PATH");
1980 newpath = (char*)alloc((unsigned)(STRLEN(curpath) + 3));
1981 if (newpath == NULL)
1982 return FALSE;
1983 STRCPY(newpath, ".;");
1984 STRCAT(newpath, curpath);
1985 n = (long)SearchPath(newpath, name, NULL, _MAX_PATH, fname, &dum);
1986 vim_free(newpath);
1987 if (n == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001988 return FALSE;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001989 if (mch_isdir((char_u *)fname))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001990 return FALSE;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02001991 if (path != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001992 *path = vim_strsave((char_u *)fname);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001993 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994}
1995
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001996#if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02001997 __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001998/*
1999 * Bad parameter handler.
2000 *
2001 * Certain MS CRT functions will intentionally crash when passed invalid
2002 * parameters to highlight possible security holes. Setting this function as
2003 * the bad parameter handler will prevent the crash.
2004 *
2005 * In debug builds the parameters contain CRT information that might help track
2006 * down the source of a problem, but in non-debug builds the arguments are all
2007 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
2008 * worth allowing these to make debugging of issues easier.
2009 */
2010 static void
2011bad_param_handler(const wchar_t *expression,
2012 const wchar_t *function,
2013 const wchar_t *file,
2014 unsigned int line,
2015 uintptr_t pReserved)
2016{
2017}
2018
2019# define SET_INVALID_PARAM_HANDLER \
2020 ((void)_set_invalid_parameter_handler(bad_param_handler))
2021#else
2022# define SET_INVALID_PARAM_HANDLER
2023#endif
2024
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025#ifdef FEAT_GUI_W32
2026
2027/*
2028 * GUI version of mch_init().
2029 */
2030 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002031mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032{
2033#ifndef __MINGW32__
2034 extern int _fmode;
2035#endif
2036
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002037 /* Silently handle invalid parameters to CRT functions */
2038 SET_INVALID_PARAM_HANDLER;
2039
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 /* Let critical errors result in a failure, not in a dialog box. Required
2041 * for the timestamp test to work on removed floppies. */
2042 SetErrorMode(SEM_FAILCRITICALERRORS);
2043
2044 _fmode = O_BINARY; /* we do our own CR-LF translation */
2045
2046 /* Specify window size. Is there a place to get the default from? */
2047 Rows = 25;
2048 Columns = 80;
2049
2050 /* Look for 'vimrun' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 {
2052 char_u vimrun_location[_MAX_PATH + 4];
2053
2054 /* First try in same directory as gvim.exe */
2055 STRCPY(vimrun_location, exe_name);
2056 STRCPY(gettail(vimrun_location), "vimrun.exe");
2057 if (mch_getperm(vimrun_location) >= 0)
2058 {
2059 if (*skiptowhite(vimrun_location) != NUL)
2060 {
2061 /* Enclose path with white space in double quotes. */
2062 mch_memmove(vimrun_location + 1, vimrun_location,
2063 STRLEN(vimrun_location) + 1);
2064 *vimrun_location = '"';
2065 STRCPY(gettail(vimrun_location), "vimrun\" ");
2066 }
2067 else
2068 STRCPY(gettail(vimrun_location), "vimrun ");
2069
2070 vimrun_path = (char *)vim_strsave(vimrun_location);
2071 s_dont_use_vimrun = FALSE;
2072 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002073 else if (executable_exists("vimrun.exe", NULL, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 s_dont_use_vimrun = FALSE;
2075
2076 /* Don't give the warning for a missing vimrun.exe right now, but only
2077 * when vimrun was supposed to be used. Don't bother people that do
2078 * not need vimrun.exe. */
2079 if (s_dont_use_vimrun)
2080 need_vimrun_warning = TRUE;
2081 }
2082
2083 /*
2084 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2085 * Otherwise the default "findstr /n" is used.
2086 */
Bram Moolenaar43663192017-03-05 14:29:12 +01002087 if (!executable_exists("findstr.exe", NULL, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2089
2090#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002091 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092#endif
2093}
2094
2095
2096#else /* FEAT_GUI_W32 */
2097
2098#define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2099#define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
2100
2101/*
2102 * ClearConsoleBuffer()
2103 * Description:
2104 * Clears the entire contents of the console screen buffer, using the
2105 * specified attribute.
2106 * Returns:
2107 * TRUE on success
2108 */
2109 static BOOL
2110ClearConsoleBuffer(WORD wAttribute)
2111{
2112 CONSOLE_SCREEN_BUFFER_INFO csbi;
2113 COORD coord;
2114 DWORD NumCells, dummy;
2115
2116 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2117 return FALSE;
2118
2119 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2120 coord.X = 0;
2121 coord.Y = 0;
2122 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2123 coord, &dummy))
2124 {
2125 return FALSE;
2126 }
2127 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2128 coord, &dummy))
2129 {
2130 return FALSE;
2131 }
2132
2133 return TRUE;
2134}
2135
2136/*
2137 * FitConsoleWindow()
2138 * Description:
2139 * Checks if the console window will fit within given buffer dimensions.
2140 * Also, if requested, will shrink the window to fit.
2141 * Returns:
2142 * TRUE on success
2143 */
2144 static BOOL
2145FitConsoleWindow(
2146 COORD dwBufferSize,
2147 BOOL WantAdjust)
2148{
2149 CONSOLE_SCREEN_BUFFER_INFO csbi;
2150 COORD dwWindowSize;
2151 BOOL NeedAdjust = FALSE;
2152
2153 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2154 {
2155 /*
2156 * A buffer resize will fail if the current console window does
2157 * not lie completely within that buffer. To avoid this, we might
2158 * have to move and possibly shrink the window.
2159 */
2160 if (csbi.srWindow.Right >= dwBufferSize.X)
2161 {
2162 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2163 if (dwWindowSize.X > dwBufferSize.X)
2164 dwWindowSize.X = dwBufferSize.X;
2165 csbi.srWindow.Right = dwBufferSize.X - 1;
2166 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2167 NeedAdjust = TRUE;
2168 }
2169 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2170 {
2171 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2172 if (dwWindowSize.Y > dwBufferSize.Y)
2173 dwWindowSize.Y = dwBufferSize.Y;
2174 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2175 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2176 NeedAdjust = TRUE;
2177 }
2178 if (NeedAdjust && WantAdjust)
2179 {
2180 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2181 return FALSE;
2182 }
2183 return TRUE;
2184 }
2185
2186 return FALSE;
2187}
2188
2189typedef struct ConsoleBufferStruct
2190{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002191 BOOL IsValid;
2192 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002193 PCHAR_INFO Buffer;
2194 COORD BufferSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195} ConsoleBuffer;
2196
2197/*
2198 * SaveConsoleBuffer()
2199 * Description:
2200 * Saves important information about the console buffer, including the
2201 * actual buffer contents. The saved information is suitable for later
2202 * restoration by RestoreConsoleBuffer().
2203 * Returns:
2204 * TRUE if all information was saved; FALSE otherwise
2205 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2206 */
2207 static BOOL
2208SaveConsoleBuffer(
2209 ConsoleBuffer *cb)
2210{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002211 DWORD NumCells;
2212 COORD BufferCoord;
2213 SMALL_RECT ReadRegion;
2214 WORD Y, Y_incr;
2215
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 if (cb == NULL)
2217 return FALSE;
2218
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002219 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 {
2221 cb->IsValid = FALSE;
2222 return FALSE;
2223 }
2224 cb->IsValid = TRUE;
2225
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002226 /*
2227 * Allocate a buffer large enough to hold the entire console screen
2228 * buffer. If this ConsoleBuffer structure has already been initialized
2229 * with a buffer of the correct size, then just use that one.
2230 */
2231 if (!cb->IsValid || cb->Buffer == NULL ||
2232 cb->BufferSize.X != cb->Info.dwSize.X ||
2233 cb->BufferSize.Y != cb->Info.dwSize.Y)
2234 {
2235 cb->BufferSize.X = cb->Info.dwSize.X;
2236 cb->BufferSize.Y = cb->Info.dwSize.Y;
2237 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2238 vim_free(cb->Buffer);
2239 cb->Buffer = (PCHAR_INFO)alloc(NumCells * sizeof(CHAR_INFO));
2240 if (cb->Buffer == NULL)
2241 return FALSE;
2242 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243
2244 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002245 * We will now copy the console screen buffer into our buffer.
2246 * ReadConsoleOutput() seems to be limited as far as how much you
2247 * can read at a time. Empirically, this number seems to be about
2248 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2249 * in chunks until it is all copied. The chunks will all have the
2250 * same horizontal characteristics, so initialize them now. The
2251 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002253 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002254 ReadRegion.Left = 0;
2255 ReadRegion.Right = cb->Info.dwSize.X - 1;
2256 Y_incr = 12000 / cb->Info.dwSize.X;
2257 for (Y = 0; Y < cb->BufferSize.Y; Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002259 /*
2260 * Read into position (0, Y) in our buffer.
2261 */
2262 BufferCoord.Y = Y;
2263 /*
2264 * Read the region whose top left corner is (0, Y) and whose bottom
2265 * right corner is (width - 1, Y + Y_incr - 1). This should define
2266 * a region of size width by Y_incr. Don't worry if this region is
2267 * too large for the remaining buffer; it will be cropped.
2268 */
2269 ReadRegion.Top = Y;
2270 ReadRegion.Bottom = Y + Y_incr - 1;
2271 if (!ReadConsoleOutput(g_hConOut, /* output handle */
2272 cb->Buffer, /* our buffer */
2273 cb->BufferSize, /* dimensions of our buffer */
2274 BufferCoord, /* offset in our buffer */
2275 &ReadRegion)) /* region to save */
2276 {
2277 vim_free(cb->Buffer);
2278 cb->Buffer = NULL;
2279 return FALSE;
2280 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281 }
2282
2283 return TRUE;
2284}
2285
2286/*
2287 * RestoreConsoleBuffer()
2288 * Description:
2289 * Restores important information about the console buffer, including the
2290 * actual buffer contents, if desired. The information to restore is in
2291 * the same format used by SaveConsoleBuffer().
2292 * Returns:
2293 * TRUE on success
2294 */
2295 static BOOL
2296RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002297 ConsoleBuffer *cb,
2298 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002300 COORD BufferCoord;
2301 SMALL_RECT WriteRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302
2303 if (cb == NULL || !cb->IsValid)
2304 return FALSE;
2305
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002306 /*
2307 * Before restoring the buffer contents, clear the current buffer, and
2308 * restore the cursor position and window information. Doing this now
2309 * prevents old buffer contents from "flashing" onto the screen.
2310 */
2311 if (RestoreScreen)
2312 ClearConsoleBuffer(cb->Info.wAttributes);
2313
2314 FitConsoleWindow(cb->Info.dwSize, TRUE);
2315 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2316 return FALSE;
2317 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2318 return FALSE;
2319
2320 if (!RestoreScreen)
2321 {
2322 /*
2323 * No need to restore the screen buffer contents, so we're done.
2324 */
2325 return TRUE;
2326 }
2327
2328 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2329 return FALSE;
2330 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2331 return FALSE;
2332
2333 /*
2334 * Restore the screen buffer contents.
2335 */
2336 if (cb->Buffer != NULL)
2337 {
2338 BufferCoord.X = 0;
2339 BufferCoord.Y = 0;
2340 WriteRegion.Left = 0;
2341 WriteRegion.Top = 0;
2342 WriteRegion.Right = cb->Info.dwSize.X - 1;
2343 WriteRegion.Bottom = cb->Info.dwSize.Y - 1;
2344 if (!WriteConsoleOutput(g_hConOut, /* output handle */
2345 cb->Buffer, /* our buffer */
2346 cb->BufferSize, /* dimensions of our buffer */
2347 BufferCoord, /* offset in our buffer */
2348 &WriteRegion)) /* region to restore */
2349 {
2350 return FALSE;
2351 }
2352 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353
2354 return TRUE;
2355}
2356
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002357#define FEAT_RESTORE_ORIG_SCREEN
2358#ifdef FEAT_RESTORE_ORIG_SCREEN
2359static ConsoleBuffer g_cbOrig = { 0 };
2360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361static ConsoleBuffer g_cbNonTermcap = { 0 };
2362static ConsoleBuffer g_cbTermcap = { 0 };
2363
2364#ifdef FEAT_TITLE
2365#ifdef __BORLANDC__
2366typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID);
2367#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002368typedef HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369#endif
2370char g_szOrigTitle[256] = { 0 };
2371HWND g_hWnd = NULL; /* also used in os_mswin.c */
2372static HICON g_hOrigIconSmall = NULL;
2373static HICON g_hOrigIcon = NULL;
2374static HICON g_hVimIcon = NULL;
2375static BOOL g_fCanChangeIcon = FALSE;
2376
2377/* ICON* are not defined in VC++ 4.0 */
2378#ifndef ICON_SMALL
2379#define ICON_SMALL 0
2380#endif
2381#ifndef ICON_BIG
2382#define ICON_BIG 1
2383#endif
2384/*
2385 * GetConsoleIcon()
2386 * Description:
2387 * Attempts to retrieve the small icon and/or the big icon currently in
2388 * use by a given window.
2389 * Returns:
2390 * TRUE on success
2391 */
2392 static BOOL
2393GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002394 HWND hWnd,
2395 HICON *phIconSmall,
2396 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397{
2398 if (hWnd == NULL)
2399 return FALSE;
2400
2401 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002402 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2403 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002405 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2406 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 return TRUE;
2408}
2409
2410/*
2411 * SetConsoleIcon()
2412 * Description:
2413 * Attempts to change the small icon and/or the big icon currently in
2414 * use by a given window.
2415 * Returns:
2416 * TRUE on success
2417 */
2418 static BOOL
2419SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002420 HWND hWnd,
2421 HICON hIconSmall,
2422 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 if (hWnd == NULL)
2425 return FALSE;
2426
2427 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002428 SendMessage(hWnd, WM_SETICON,
2429 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002431 SendMessage(hWnd, WM_SETICON,
2432 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 return TRUE;
2434}
2435
2436/*
2437 * SaveConsoleTitleAndIcon()
2438 * Description:
2439 * Saves the current console window title in g_szOrigTitle, for later
2440 * restoration. Also, attempts to obtain a handle to the console window,
2441 * and use it to save the small and big icons currently in use by the
2442 * console window. This is not always possible on some versions of Windows;
2443 * nor is it possible when running Vim remotely using Telnet (since the
2444 * console window the user sees is owned by a remote process).
2445 */
2446 static void
2447SaveConsoleTitleAndIcon(void)
2448{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 /* Save the original title. */
2450 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2451 return;
2452
2453 /*
2454 * Obtain a handle to the console window using GetConsoleWindow() from
2455 * KERNEL32.DLL; we need to handle in order to change the window icon.
2456 * This function only exists on NT-based Windows, starting with Windows
2457 * 2000. On older operating systems, we can't change the window icon
2458 * anyway.
2459 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002460 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 if (g_hWnd == NULL)
2462 return;
2463
2464 /* Save the original console window icon. */
2465 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2466 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2467 return;
2468
2469 /* Extract the first icon contained in the Vim executable. */
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002470 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002471 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 if (g_hVimIcon != NULL)
2473 g_fCanChangeIcon = TRUE;
2474}
2475#endif
2476
2477static int g_fWindInitCalled = FALSE;
2478static int g_fTermcapMode = FALSE;
2479static CONSOLE_CURSOR_INFO g_cci;
2480static DWORD g_cmodein = 0;
2481static DWORD g_cmodeout = 0;
2482
2483/*
2484 * non-GUI version of mch_init().
2485 */
2486 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002487mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002489#ifndef FEAT_RESTORE_ORIG_SCREEN
2490 CONSOLE_SCREEN_BUFFER_INFO csbi;
2491#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492#ifndef __MINGW32__
2493 extern int _fmode;
2494#endif
2495
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002496 /* Silently handle invalid parameters to CRT functions */
2497 SET_INVALID_PARAM_HANDLER;
2498
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 /* Let critical errors result in a failure, not in a dialog box. Required
2500 * for the timestamp test to work on removed floppies. */
2501 SetErrorMode(SEM_FAILCRITICALERRORS);
2502
2503 _fmode = O_BINARY; /* we do our own CR-LF translation */
2504 out_flush();
2505
2506 /* Obtain handles for the standard Console I/O devices */
2507 if (read_cmd_fd == 0)
2508 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2509 else
2510 create_conin();
2511 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2512
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002513#ifdef FEAT_RESTORE_ORIG_SCREEN
2514 /* Save the initial console buffer for later restoration */
2515 SaveConsoleBuffer(&g_cbOrig);
2516 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
2517#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 /* Get current text attributes */
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002519 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2520 g_attrCurrent = g_attrDefault = csbi.wAttributes;
2521#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 if (cterm_normal_fg_color == 0)
2523 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2524 if (cterm_normal_bg_color == 0)
2525 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2526
2527 /* set termcap codes to current text attributes */
2528 update_tcap(g_attrCurrent);
2529
2530 GetConsoleCursorInfo(g_hConOut, &g_cci);
2531 GetConsoleMode(g_hConIn, &g_cmodein);
2532 GetConsoleMode(g_hConOut, &g_cmodeout);
2533
2534#ifdef FEAT_TITLE
2535 SaveConsoleTitleAndIcon();
2536 /*
2537 * Set both the small and big icons of the console window to Vim's icon.
2538 * Note that Vim presently only has one size of icon (32x32), but it
2539 * automatically gets scaled down to 16x16 when setting the small icon.
2540 */
2541 if (g_fCanChangeIcon)
2542 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
2543#endif
2544
2545 ui_get_shellsize();
2546
2547#ifdef MCH_WRITE_DUMP
2548 fdDump = fopen("dump", "wt");
2549
2550 if (fdDump)
2551 {
2552 time_t t;
2553
2554 time(&t);
2555 fputs(ctime(&t), fdDump);
2556 fflush(fdDump);
2557 }
2558#endif
2559
2560 g_fWindInitCalled = TRUE;
2561
2562#ifdef FEAT_MOUSE
2563 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
2564#endif
2565
2566#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002567 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569}
2570
2571/*
2572 * non-GUI version of mch_exit().
2573 * Shut down and exit with status `r'
2574 * Careful: mch_exit() may be called before mch_init()!
2575 */
2576 void
2577mch_exit(int r)
2578{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002579 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580
Bram Moolenaar955f1982017-02-05 15:10:51 +01002581 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 if (g_fWindInitCalled)
2583 settmode(TMODE_COOK);
2584
2585 ml_close_all(TRUE); /* remove all memfiles */
2586
2587 if (g_fWindInitCalled)
2588 {
2589#ifdef FEAT_TITLE
2590 mch_restore_title(3);
2591 /*
2592 * Restore both the small and big icons of the console window to
2593 * what they were at startup. Don't do this when the window is
2594 * closed, Vim would hang here.
2595 */
2596 if (g_fCanChangeIcon && !g_fForceExit)
2597 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
2598#endif
2599
2600#ifdef MCH_WRITE_DUMP
2601 if (fdDump)
2602 {
2603 time_t t;
2604
2605 time(&t);
2606 fputs(ctime(&t), fdDump);
2607 fclose(fdDump);
2608 }
2609 fdDump = NULL;
2610#endif
2611 }
2612
2613 SetConsoleCursorInfo(g_hConOut, &g_cci);
2614 SetConsoleMode(g_hConIn, g_cmodein);
2615 SetConsoleMode(g_hConOut, g_cmodeout);
2616
2617#ifdef DYNAMIC_GETTEXT
2618 dyn_libintl_end();
2619#endif
2620
2621 exit(r);
2622}
2623#endif /* !FEAT_GUI_W32 */
2624
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625/*
2626 * Do we have an interactive window?
2627 */
2628 int
2629mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002630 int argc UNUSED,
2631 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632{
2633 get_exe_name();
2634
2635#ifdef FEAT_GUI_W32
2636 return OK; /* GUI always has a tty */
2637#else
2638 if (isatty(1))
2639 return OK;
2640 return FAIL;
2641#endif
2642}
2643
2644
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002645#ifdef FEAT_MBYTE
2646/*
2647 * fname_casew(): Wide version of fname_case(). Set the case of the file name,
2648 * if it already exists. When "len" is > 0, also expand short to long
2649 * filenames.
2650 * Return FAIL if wide functions are not available, OK otherwise.
2651 * NOTE: much of this is identical to fname_case(), keep in sync!
2652 */
2653 static int
2654fname_casew(
2655 WCHAR *name,
2656 int len)
2657{
2658 WCHAR szTrueName[_MAX_PATH + 2];
2659 WCHAR szTrueNameTemp[_MAX_PATH + 2];
2660 WCHAR *ptrue, *ptruePrev;
2661 WCHAR *porig, *porigPrev;
2662 int flen;
2663 WIN32_FIND_DATAW fb;
Bram Moolenaar73c61632013-12-07 14:48:10 +01002664 HANDLE hFind = INVALID_HANDLE_VALUE;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002665 int c;
2666 int slen;
2667
2668 flen = (int)wcslen(name);
2669 if (flen > _MAX_PATH)
2670 return OK;
2671
2672 /* slash_adjust(name) not needed, already adjusted by fname_case(). */
2673
2674 /* Build the new name in szTrueName[] one component at a time. */
2675 porig = name;
2676 ptrue = szTrueName;
2677
2678 if (iswalpha(porig[0]) && porig[1] == L':')
2679 {
2680 /* copy leading drive letter */
2681 *ptrue++ = *porig++;
2682 *ptrue++ = *porig++;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002683 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002684 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002685
2686 while (*porig != NUL)
2687 {
2688 /* copy \ characters */
2689 while (*porig == psepc)
2690 *ptrue++ = *porig++;
2691
2692 ptruePrev = ptrue;
2693 porigPrev = porig;
2694 while (*porig != NUL && *porig != psepc)
2695 {
2696 *ptrue++ = *porig++;
2697 }
2698 *ptrue = NUL;
2699
2700 /* To avoid a slow failure append "\*" when searching a directory,
2701 * server or network share. */
2702 wcscpy(szTrueNameTemp, szTrueName);
2703 slen = (int)wcslen(szTrueNameTemp);
2704 if (*porig == psepc && slen + 2 < _MAX_PATH)
2705 wcscpy(szTrueNameTemp + slen, L"\\*");
2706
2707 /* Skip "", "." and "..". */
2708 if (ptrue > ptruePrev
2709 && (ptruePrev[0] != L'.'
2710 || (ptruePrev[1] != NUL
2711 && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL)))
2712 && (hFind = FindFirstFileW(szTrueNameTemp, &fb))
2713 != INVALID_HANDLE_VALUE)
2714 {
2715 c = *porig;
2716 *porig = NUL;
2717
2718 /* Only use the match when it's the same name (ignoring case) or
2719 * expansion is allowed and there is a match with the short name
2720 * and there is enough room. */
2721 if (_wcsicoll(porigPrev, fb.cFileName) == 0
2722 || (len > 0
2723 && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0
2724 && (int)(ptruePrev - szTrueName)
2725 + (int)wcslen(fb.cFileName) < len)))
2726 {
2727 wcscpy(ptruePrev, fb.cFileName);
2728
2729 /* Look for exact match and prefer it if found. Must be a
2730 * long name, otherwise there would be only one match. */
2731 while (FindNextFileW(hFind, &fb))
2732 {
2733 if (*fb.cAlternateFileName != NUL
2734 && (wcscoll(porigPrev, fb.cFileName) == 0
2735 || (len > 0
2736 && (_wcsicoll(porigPrev,
2737 fb.cAlternateFileName) == 0
2738 && (int)(ptruePrev - szTrueName)
2739 + (int)wcslen(fb.cFileName) < len))))
2740 {
2741 wcscpy(ptruePrev, fb.cFileName);
2742 break;
2743 }
2744 }
2745 }
2746 FindClose(hFind);
2747 *porig = c;
2748 ptrue = ptruePrev + wcslen(ptruePrev);
2749 }
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002750 }
2751
2752 wcscpy(name, szTrueName);
2753 return OK;
2754}
2755#endif
2756
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757/*
2758 * fname_case(): Set the case of the file name, if it already exists.
2759 * When "len" is > 0, also expand short to long filenames.
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002760 * NOTE: much of this is identical to fname_casew(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 */
2762 void
2763fname_case(
2764 char_u *name,
2765 int len)
2766{
2767 char szTrueName[_MAX_PATH + 2];
Bram Moolenaar464c9252010-10-13 20:37:41 +02002768 char szTrueNameTemp[_MAX_PATH + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 char *ptrue, *ptruePrev;
2770 char *porig, *porigPrev;
2771 int flen;
2772 WIN32_FIND_DATA fb;
2773 HANDLE hFind;
2774 int c;
Bram Moolenaar464c9252010-10-13 20:37:41 +02002775 int slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00002777 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002778 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 return;
2780
2781 slash_adjust(name);
2782
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002783#ifdef FEAT_MBYTE
2784 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2785 {
2786 WCHAR *p = enc_to_utf16(name, NULL);
2787
2788 if (p != NULL)
2789 {
2790 char_u *q;
Bram Moolenaar21d89b62014-10-07 10:38:40 +02002791 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002792
Bram Moolenaar21d89b62014-10-07 10:38:40 +02002793 wcsncpy(buf, p, _MAX_PATH);
2794 buf[_MAX_PATH] = L'\0';
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002795 vim_free(p);
2796
2797 if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK)
2798 {
2799 q = utf16_to_enc(buf, NULL);
2800 if (q != NULL)
2801 {
2802 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
2803 vim_free(q);
2804 return;
2805 }
2806 }
2807 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002808 return;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002809 }
2810#endif
2811
2812 /* If 'enc' is utf-8, flen can be larger than _MAX_PATH.
2813 * So we should check this after calling wide function. */
2814 if (flen > _MAX_PATH)
2815 return;
2816
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817 /* Build the new name in szTrueName[] one component at a time. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002818 porig = (char *)name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 ptrue = szTrueName;
2820
2821 if (isalpha(porig[0]) && porig[1] == ':')
2822 {
2823 /* copy leading drive letter */
2824 *ptrue++ = *porig++;
2825 *ptrue++ = *porig++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002827 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828
2829 while (*porig != NUL)
2830 {
2831 /* copy \ characters */
2832 while (*porig == psepc)
2833 *ptrue++ = *porig++;
2834
2835 ptruePrev = ptrue;
2836 porigPrev = porig;
2837 while (*porig != NUL && *porig != psepc)
2838 {
2839#ifdef FEAT_MBYTE
2840 int l;
2841
2842 if (enc_dbcs)
2843 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002844 l = (*mb_ptr2len)((char_u *)porig);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 while (--l >= 0)
2846 *ptrue++ = *porig++;
2847 }
2848 else
2849#endif
2850 *ptrue++ = *porig++;
2851 }
2852 *ptrue = NUL;
2853
Bram Moolenaar464c9252010-10-13 20:37:41 +02002854 /* To avoid a slow failure append "\*" when searching a directory,
2855 * server or network share. */
2856 STRCPY(szTrueNameTemp, szTrueName);
Bram Moolenaar6b5ef062010-10-27 12:18:00 +02002857 slen = (int)strlen(szTrueNameTemp);
Bram Moolenaar464c9252010-10-13 20:37:41 +02002858 if (*porig == psepc && slen + 2 < _MAX_PATH)
2859 STRCPY(szTrueNameTemp + slen, "\\*");
2860
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 /* Skip "", "." and "..". */
2862 if (ptrue > ptruePrev
2863 && (ptruePrev[0] != '.'
2864 || (ptruePrev[1] != NUL
2865 && (ptruePrev[1] != '.' || ptruePrev[2] != NUL)))
Bram Moolenaar464c9252010-10-13 20:37:41 +02002866 && (hFind = FindFirstFile(szTrueNameTemp, &fb))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 != INVALID_HANDLE_VALUE)
2868 {
2869 c = *porig;
2870 *porig = NUL;
2871
2872 /* Only use the match when it's the same name (ignoring case) or
2873 * expansion is allowed and there is a match with the short name
2874 * and there is enough room. */
2875 if (_stricoll(porigPrev, fb.cFileName) == 0
2876 || (len > 0
2877 && (_stricoll(porigPrev, fb.cAlternateFileName) == 0
2878 && (int)(ptruePrev - szTrueName)
2879 + (int)strlen(fb.cFileName) < len)))
2880 {
2881 STRCPY(ptruePrev, fb.cFileName);
2882
2883 /* Look for exact match and prefer it if found. Must be a
2884 * long name, otherwise there would be only one match. */
2885 while (FindNextFile(hFind, &fb))
2886 {
2887 if (*fb.cAlternateFileName != NUL
2888 && (strcoll(porigPrev, fb.cFileName) == 0
2889 || (len > 0
2890 && (_stricoll(porigPrev,
2891 fb.cAlternateFileName) == 0
2892 && (int)(ptruePrev - szTrueName)
2893 + (int)strlen(fb.cFileName) < len))))
2894 {
2895 STRCPY(ptruePrev, fb.cFileName);
2896 break;
2897 }
2898 }
2899 }
2900 FindClose(hFind);
2901 *porig = c;
2902 ptrue = ptruePrev + strlen(ptruePrev);
2903 }
2904 }
2905
2906 STRCPY(name, szTrueName);
2907}
2908
2909
2910/*
2911 * Insert user name in s[len].
2912 */
2913 int
2914mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002915 char_u *s,
2916 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917{
Bram Moolenaar41a09032007-10-01 18:34:34 +00002918 char szUserName[256 + 1]; /* UNLEN is 256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 DWORD cch = sizeof szUserName;
2920
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002921#ifdef FEAT_MBYTE
2922 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2923 {
2924 WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */
2925 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
2926
2927 if (GetUserNameW(wszUserName, &wcch))
2928 {
2929 char_u *p = utf16_to_enc(wszUserName, NULL);
2930
2931 if (p != NULL)
2932 {
2933 vim_strncpy(s, p, len - 1);
2934 vim_free(p);
2935 return OK;
2936 }
2937 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002938 }
2939#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 if (GetUserName(szUserName, &cch))
2941 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002942 vim_strncpy(s, (char_u *)szUserName, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943 return OK;
2944 }
2945 s[0] = NUL;
2946 return FAIL;
2947}
2948
2949
2950/*
2951 * Insert host name in s[len].
2952 */
2953 void
2954mch_get_host_name(
2955 char_u *s,
2956 int len)
2957{
2958 DWORD cch = len;
2959
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002960#ifdef FEAT_MBYTE
2961 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2962 {
2963 WCHAR wszHostName[256 + 1];
2964 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
2965
2966 if (GetComputerNameW(wszHostName, &wcch))
2967 {
2968 char_u *p = utf16_to_enc(wszHostName, NULL);
2969
2970 if (p != NULL)
2971 {
2972 vim_strncpy(s, p, len - 1);
2973 vim_free(p);
2974 return;
2975 }
2976 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002977 }
2978#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002979 if (!GetComputerName((LPSTR)s, &cch))
2980 vim_strncpy(s, (char_u *)"PC (Win32 Vim)", len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981}
2982
2983
2984/*
2985 * return process ID
2986 */
2987 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002988mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989{
2990 return (long)GetCurrentProcessId();
2991}
2992
2993
2994/*
2995 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2996 * Return OK for success, FAIL for failure.
2997 */
2998 int
2999mch_dirname(
3000 char_u *buf,
3001 int len)
3002{
3003 /*
3004 * Originally this was:
3005 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3006 * But the Win32s known bug list says that getcwd() doesn't work
3007 * so use the Win32 system call instead. <Negri>
3008 */
3009#ifdef FEAT_MBYTE
3010 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3011 {
3012 WCHAR wbuf[_MAX_PATH + 1];
3013
3014 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
3015 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003016 char_u *p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017
3018 if (p != NULL)
3019 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003020 vim_strncpy(buf, p, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 vim_free(p);
3022 return OK;
3023 }
3024 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003025 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 }
3027#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003028 return (GetCurrentDirectory(len, (LPSTR)buf) != 0 ? OK : FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029}
3030
3031/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003032 * Get file permissions for "name".
3033 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034 */
3035 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003036mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003038 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003039 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003041 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003042 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043}
3044
3045
3046/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003047 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003048 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003049 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 */
3051 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003052mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053{
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003054 long n = -1;
3055
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056#ifdef FEAT_MBYTE
3057 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3058 {
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003059 WCHAR *p = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060
3061 if (p != NULL)
3062 {
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003063 n = _wchmod(p, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003065 if (n == -1)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003066 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067 }
3068 }
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003069 if (n == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003071 n = _chmod((const char *)name, perm);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003072 if (n == -1)
3073 return FAIL;
3074
3075 win32_set_archive(name);
3076
3077 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078}
3079
3080/*
3081 * Set hidden flag for "name".
3082 */
3083 void
3084mch_hide(char_u *name)
3085{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003086 int attrs = win32_getattrs(name);
3087 if (attrs == -1)
3088 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003090 attrs |= FILE_ATTRIBUTE_HIDDEN;
3091 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092}
3093
3094/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003095 * Return TRUE if file "name" exists and is hidden.
3096 */
3097 int
3098mch_ishidden(char_u *name)
3099{
3100 int f = win32_getattrs(name);
3101
3102 if (f == -1)
3103 return FALSE; /* file does not exist at all */
3104
3105 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3106}
3107
3108/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 * return TRUE if "name" is a directory
3110 * return FALSE if "name" is not a directory or upon error
3111 */
3112 int
3113mch_isdir(char_u *name)
3114{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003115 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116
3117 if (f == -1)
3118 return FALSE; /* file does not exist at all */
3119
3120 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3121}
3122
3123/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003124 * return TRUE if "name" is a directory, NOT a symlink to a directory
3125 * return FALSE if "name" is not a directory
3126 * return FALSE for error
3127 */
3128 int
3129mch_isrealdir(char_u *name)
3130{
3131 return mch_isdir(name) && !mch_is_symbolic_link(name);
3132}
3133
3134/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003135 * Create directory "name".
3136 * Return 0 on success, -1 on error.
3137 */
3138 int
3139mch_mkdir(char_u *name)
3140{
3141#ifdef FEAT_MBYTE
3142 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3143 {
3144 WCHAR *p;
3145 int retval;
3146
3147 p = enc_to_utf16(name, NULL);
3148 if (p == NULL)
3149 return -1;
3150 retval = _wmkdir(p);
3151 vim_free(p);
3152 return retval;
3153 }
3154#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003155 return _mkdir((const char *)name);
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003156}
3157
3158/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003159 * Delete directory "name".
3160 * Return 0 on success, -1 on error.
3161 */
3162 int
3163mch_rmdir(char_u *name)
3164{
3165#ifdef FEAT_MBYTE
3166 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3167 {
3168 WCHAR *p;
3169 int retval;
3170
3171 p = enc_to_utf16(name, NULL);
3172 if (p == NULL)
3173 return -1;
3174 retval = _wrmdir(p);
3175 vim_free(p);
3176 return retval;
3177 }
3178#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003179 return _rmdir((const char *)name);
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003180}
3181
3182/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003183 * Return TRUE if file "fname" has more than one link.
3184 */
3185 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003186mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003187{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003188 BY_HANDLE_FILE_INFORMATION info;
3189
3190 return win32_fileinfo(fname, &info) == FILEINFO_OK
3191 && info.nNumberOfLinks > 1;
3192}
3193
3194/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003195 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003196 */
3197 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003198mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003199{
3200 HANDLE hFind;
3201 int res = FALSE;
3202 WIN32_FIND_DATAA findDataA;
3203 DWORD fileFlags = 0, reparseTag = 0;
3204#ifdef FEAT_MBYTE
3205 WCHAR *wn = NULL;
3206 WIN32_FIND_DATAW findDataW;
3207
3208 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003209 wn = enc_to_utf16(name, NULL);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003210 if (wn != NULL)
3211 {
3212 hFind = FindFirstFileW(wn, &findDataW);
3213 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003214 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003215 {
3216 fileFlags = findDataW.dwFileAttributes;
3217 reparseTag = findDataW.dwReserved0;
3218 }
3219 }
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003220 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003221#endif
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003222 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003223 hFind = FindFirstFile((LPCSTR)name, &findDataA);
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003224 if (hFind != INVALID_HANDLE_VALUE)
3225 {
3226 fileFlags = findDataA.dwFileAttributes;
3227 reparseTag = findDataA.dwReserved0;
3228 }
3229 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003230
3231 if (hFind != INVALID_HANDLE_VALUE)
3232 FindClose(hFind);
3233
3234 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003235 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3236 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003237 res = TRUE;
3238
3239 return res;
3240}
3241
3242/*
3243 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3244 * link.
3245 */
3246 int
3247mch_is_linked(char_u *fname)
3248{
3249 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3250 return TRUE;
3251 return FALSE;
3252}
3253
3254/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003255 * Get the by-handle-file-information for "fname".
3256 * Returns FILEINFO_OK when OK.
3257 * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
3258 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3259 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3260 */
3261 int
3262win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3263{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003264 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003265 int res = FILEINFO_READ_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003266#ifdef FEAT_MBYTE
3267 WCHAR *wn = NULL;
3268
3269 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003270 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003271 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003272 if (wn == NULL)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003273 return FILEINFO_ENC_FAIL;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003274 }
Bram Moolenaar03f48552006-02-28 23:52:23 +00003275 if (wn != NULL)
3276 {
3277 hFile = CreateFileW(wn, /* file name */
3278 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003279 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003280 NULL, /* security descriptor */
3281 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003282 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003283 NULL); /* handle to template file */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003284 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003285 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003286 else
Bram Moolenaar03f48552006-02-28 23:52:23 +00003287#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003288 hFile = CreateFile((LPCSTR)fname, /* file name */
3289 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003290 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003291 NULL, /* security descriptor */
3292 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003293 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003294 NULL); /* handle to template file */
3295
3296 if (hFile != INVALID_HANDLE_VALUE)
3297 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003298 if (GetFileInformationByHandle(hFile, info) != 0)
3299 res = FILEINFO_OK;
3300 else
3301 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003302 CloseHandle(hFile);
3303 }
3304
Bram Moolenaar03f48552006-02-28 23:52:23 +00003305 return res;
3306}
3307
3308/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003309 * get file attributes for `name'
3310 * -1 : error
3311 * else FILE_ATTRIBUTE_* defined in winnt.h
3312 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003313 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003314win32_getattrs(char_u *name)
3315{
3316 int attr;
3317#ifdef FEAT_MBYTE
3318 WCHAR *p = NULL;
3319
3320 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3321 p = enc_to_utf16(name, NULL);
3322
3323 if (p != NULL)
3324 {
3325 attr = GetFileAttributesW(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003326 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003327 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003328 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003329#endif
3330 attr = GetFileAttributes((char *)name);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003331
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003332 return attr;
3333}
3334
3335/*
3336 * set file attributes for `name' to `attrs'
3337 *
3338 * return -1 for failure, 0 otherwise
3339 */
3340 static
3341 int
3342win32_setattrs(char_u *name, int attrs)
3343{
3344 int res;
3345#ifdef FEAT_MBYTE
3346 WCHAR *p = NULL;
3347
3348 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3349 p = enc_to_utf16(name, NULL);
3350
3351 if (p != NULL)
3352 {
3353 res = SetFileAttributesW(p, attrs);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003354 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003355 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003356 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003357#endif
3358 res = SetFileAttributes((char *)name, attrs);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003359
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003360 return res ? 0 : -1;
3361}
3362
3363/*
3364 * Set archive flag for "name".
3365 */
3366 static
3367 int
3368win32_set_archive(char_u *name)
3369{
3370 int attrs = win32_getattrs(name);
3371 if (attrs == -1)
3372 return -1;
3373
3374 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3375 return win32_setattrs(name, attrs);
3376}
3377
3378/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 * Return TRUE if file or directory "name" is writable (not readonly).
3380 * Strange semantics of Win32: a readonly directory is writable, but you can't
3381 * delete a file. Let's say this means it is writable.
3382 */
3383 int
3384mch_writable(char_u *name)
3385{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003386 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003388 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3389 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390}
3391
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003393 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003394 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003395 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3396 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 */
3398 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003399mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400{
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003401 char_u buf[_MAX_PATH];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003402 int len = (int)STRLEN(name);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003403 char_u *p;
3404
3405 if (len >= _MAX_PATH) /* safety check */
3406 return FALSE;
3407
3408 /* If there already is an extension try using the name directly. Also do
3409 * this with a Unix-shell like 'shell'. */
3410 if (vim_strchr(gettail(name), '.') != NULL
3411 || strstr((char *)gettail(p_sh), "sh") != NULL)
Bram Moolenaar43663192017-03-05 14:29:12 +01003412 if (executable_exists((char *)name, path, use_path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003413 return TRUE;
3414
3415 /*
3416 * Loop over all extensions in $PATHEXT.
3417 */
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003418 vim_strncpy(buf, name, _MAX_PATH - 1);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003419 p = mch_getenv("PATHEXT");
3420 if (p == NULL)
3421 p = (char_u *)".com;.exe;.bat;.cmd";
3422 while (*p)
3423 {
3424 if (p[0] == '.' && (p[1] == NUL || p[1] == ';'))
3425 {
3426 /* A single "." means no extension is added. */
3427 buf[len] = NUL;
3428 ++p;
3429 if (*p)
3430 ++p;
3431 }
3432 else
3433 copy_option_part(&p, buf + len, _MAX_PATH - len, ";");
Bram Moolenaar43663192017-03-05 14:29:12 +01003434 if (executable_exists((char *)buf, path, use_path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003435 return TRUE;
3436 }
3437 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439
3440/*
3441 * Check what "name" is:
3442 * NODE_NORMAL: file or directory (or doesn't exist)
3443 * NODE_WRITABLE: writable device, socket, fifo, etc.
3444 * NODE_OTHER: non-writable things
3445 */
3446 int
3447mch_nodetype(char_u *name)
3448{
3449 HANDLE hFile;
3450 int type;
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003451#ifdef FEAT_MBYTE
3452 WCHAR *wn = NULL;
3453#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454
Bram Moolenaar043545e2006-10-10 16:44:07 +00003455 /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3456 * read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3457 * here. */
3458 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3459 return NODE_WRITABLE;
3460
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003461#ifdef FEAT_MBYTE
3462 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003463 wn = enc_to_utf16(name, NULL);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003464
3465 if (wn != NULL)
3466 {
3467 hFile = CreateFileW(wn, /* file name */
3468 GENERIC_WRITE, /* access mode */
3469 0, /* share mode */
3470 NULL, /* security descriptor */
3471 OPEN_EXISTING, /* creation disposition */
3472 0, /* file attributes */
3473 NULL); /* handle to template file */
3474 vim_free(wn);
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003475 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003476 else
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003477#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003478 hFile = CreateFile((LPCSTR)name, /* file name */
3479 GENERIC_WRITE, /* access mode */
3480 0, /* share mode */
3481 NULL, /* security descriptor */
3482 OPEN_EXISTING, /* creation disposition */
3483 0, /* file attributes */
3484 NULL); /* handle to template file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485
3486 if (hFile == INVALID_HANDLE_VALUE)
3487 return NODE_NORMAL;
3488
3489 type = GetFileType(hFile);
3490 CloseHandle(hFile);
3491 if (type == FILE_TYPE_CHAR)
3492 return NODE_WRITABLE;
3493 if (type == FILE_TYPE_DISK)
3494 return NODE_NORMAL;
3495 return NODE_OTHER;
3496}
3497
3498#ifdef HAVE_ACL
3499struct my_acl
3500{
3501 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3502 PSID pSidOwner;
3503 PSID pSidGroup;
3504 PACL pDacl;
3505 PACL pSacl;
3506};
3507#endif
3508
3509/*
3510 * Return a pointer to the ACL of file "fname" in allocated memory.
3511 * Return NULL if the ACL is not available for whatever reason.
3512 */
3513 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003514mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515{
3516#ifndef HAVE_ACL
3517 return (vim_acl_T)NULL;
3518#else
3519 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003520 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003522 p = (struct my_acl *)alloc_clear((unsigned)sizeof(struct my_acl));
3523 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524 {
Bram Moolenaar27515922013-06-29 15:36:26 +02003525# ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003526 WCHAR *wn = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003527
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003528 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3529 wn = enc_to_utf16(fname, NULL);
3530 if (wn != NULL)
3531 {
3532 /* Try to retrieve the entire security descriptor. */
3533 err = GetNamedSecurityInfoW(
3534 wn, // Abstract filename
3535 SE_FILE_OBJECT, // File Object
3536 OWNER_SECURITY_INFORMATION |
3537 GROUP_SECURITY_INFORMATION |
3538 DACL_SECURITY_INFORMATION |
3539 SACL_SECURITY_INFORMATION,
3540 &p->pSidOwner, // Ownership information.
3541 &p->pSidGroup, // Group membership.
3542 &p->pDacl, // Discretionary information.
3543 &p->pSacl, // For auditing purposes.
3544 &p->pSecurityDescriptor);
3545 if (err == ERROR_ACCESS_DENIED ||
3546 err == ERROR_PRIVILEGE_NOT_HELD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003548 /* Retrieve only DACL. */
3549 (void)GetNamedSecurityInfoW(
3550 wn,
3551 SE_FILE_OBJECT,
3552 DACL_SECURITY_INFORMATION,
3553 NULL,
3554 NULL,
3555 &p->pDacl,
3556 NULL,
3557 &p->pSecurityDescriptor);
Bram Moolenaar27515922013-06-29 15:36:26 +02003558 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003559 if (p->pSecurityDescriptor == NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003560 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003561 mch_free_acl((vim_acl_T)p);
3562 p = NULL;
3563 }
3564 vim_free(wn);
3565 }
3566 else
3567# endif
3568 {
3569 /* Try to retrieve the entire security descriptor. */
3570 err = GetNamedSecurityInfo(
3571 (LPSTR)fname, // Abstract filename
3572 SE_FILE_OBJECT, // File Object
3573 OWNER_SECURITY_INFORMATION |
3574 GROUP_SECURITY_INFORMATION |
3575 DACL_SECURITY_INFORMATION |
3576 SACL_SECURITY_INFORMATION,
3577 &p->pSidOwner, // Ownership information.
3578 &p->pSidGroup, // Group membership.
3579 &p->pDacl, // Discretionary information.
3580 &p->pSacl, // For auditing purposes.
3581 &p->pSecurityDescriptor);
3582 if (err == ERROR_ACCESS_DENIED ||
3583 err == ERROR_PRIVILEGE_NOT_HELD)
3584 {
3585 /* Retrieve only DACL. */
3586 (void)GetNamedSecurityInfo(
3587 (LPSTR)fname,
3588 SE_FILE_OBJECT,
3589 DACL_SECURITY_INFORMATION,
3590 NULL,
3591 NULL,
3592 &p->pDacl,
3593 NULL,
3594 &p->pSecurityDescriptor);
3595 }
3596 if (p->pSecurityDescriptor == NULL)
3597 {
3598 mch_free_acl((vim_acl_T)p);
3599 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 }
3601 }
3602 }
3603
3604 return (vim_acl_T)p;
3605#endif
3606}
3607
Bram Moolenaar27515922013-06-29 15:36:26 +02003608#ifdef HAVE_ACL
3609/*
3610 * Check if "acl" contains inherited ACE.
3611 */
3612 static BOOL
3613is_acl_inherited(PACL acl)
3614{
3615 DWORD i;
3616 ACL_SIZE_INFORMATION acl_info;
3617 PACCESS_ALLOWED_ACE ace;
3618
3619 acl_info.AceCount = 0;
3620 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3621 for (i = 0; i < acl_info.AceCount; i++)
3622 {
3623 GetAce(acl, i, (LPVOID *)&ace);
3624 if (ace->Header.AceFlags & INHERITED_ACE)
3625 return TRUE;
3626 }
3627 return FALSE;
3628}
3629#endif
3630
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631/*
3632 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3633 * Errors are ignored.
3634 * This must only be called with "acl" equal to what mch_get_acl() returned.
3635 */
3636 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003637mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638{
3639#ifdef HAVE_ACL
3640 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003641 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003643 if (p != NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003644 {
3645# ifdef FEAT_MBYTE
3646 WCHAR *wn = NULL;
3647# endif
3648
3649 /* Set security flags */
3650 if (p->pSidOwner)
3651 sec_info |= OWNER_SECURITY_INFORMATION;
3652 if (p->pSidGroup)
3653 sec_info |= GROUP_SECURITY_INFORMATION;
3654 if (p->pDacl)
3655 {
3656 sec_info |= DACL_SECURITY_INFORMATION;
3657 /* Do not inherit its parent's DACL.
3658 * If the DACL is inherited, Cygwin permissions would be changed.
3659 */
3660 if (!is_acl_inherited(p->pDacl))
3661 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
3662 }
3663 if (p->pSacl)
3664 sec_info |= SACL_SECURITY_INFORMATION;
3665
3666# ifdef FEAT_MBYTE
3667 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3668 wn = enc_to_utf16(fname, NULL);
3669 if (wn != NULL)
3670 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003671 (void)SetNamedSecurityInfoW(
Bram Moolenaar27515922013-06-29 15:36:26 +02003672 wn, // Abstract filename
3673 SE_FILE_OBJECT, // File Object
3674 sec_info,
3675 p->pSidOwner, // Ownership information.
3676 p->pSidGroup, // Group membership.
3677 p->pDacl, // Discretionary information.
3678 p->pSacl // For auditing purposes.
3679 );
3680 vim_free(wn);
3681 }
3682 else
3683# endif
3684 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003685 (void)SetNamedSecurityInfo(
Bram Moolenaar27515922013-06-29 15:36:26 +02003686 (LPSTR)fname, // Abstract filename
3687 SE_FILE_OBJECT, // File Object
3688 sec_info,
3689 p->pSidOwner, // Ownership information.
3690 p->pSidGroup, // Group membership.
3691 p->pDacl, // Discretionary information.
3692 p->pSacl // For auditing purposes.
3693 );
3694 }
3695 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696#endif
3697}
3698
3699 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003700mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701{
3702#ifdef HAVE_ACL
3703 struct my_acl *p = (struct my_acl *)acl;
3704
3705 if (p != NULL)
3706 {
3707 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3708 vim_free(p);
3709 }
3710#endif
3711}
3712
3713#ifndef FEAT_GUI_W32
3714
3715/*
3716 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3717 */
3718 static BOOL WINAPI
3719handler_routine(
3720 DWORD dwCtrlType)
3721{
3722 switch (dwCtrlType)
3723 {
3724 case CTRL_C_EVENT:
3725 if (ctrl_c_interrupts)
3726 g_fCtrlCPressed = TRUE;
3727 return TRUE;
3728
3729 case CTRL_BREAK_EVENT:
3730 g_fCBrkPressed = TRUE;
3731 return TRUE;
3732
3733 /* fatal events: shut down gracefully */
3734 case CTRL_CLOSE_EVENT:
3735 case CTRL_LOGOFF_EVENT:
3736 case CTRL_SHUTDOWN_EVENT:
3737 windgoto((int)Rows - 1, 0);
3738 g_fForceExit = TRUE;
3739
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003740 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 (dwCtrlType == CTRL_CLOSE_EVENT
3742 ? _("close")
3743 : dwCtrlType == CTRL_LOGOFF_EVENT
3744 ? _("logoff")
3745 : _("shutdown")));
3746#ifdef DEBUG
3747 OutputDebugString(IObuff);
3748#endif
3749
3750 preserve_exit(); /* output IObuff, preserve files and exit */
3751
3752 return TRUE; /* not reached */
3753
3754 default:
3755 return FALSE;
3756 }
3757}
3758
3759
3760/*
3761 * set the tty in (raw) ? "raw" : "cooked" mode
3762 */
3763 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003764mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765{
3766 DWORD cmodein;
3767 DWORD cmodeout;
3768 BOOL bEnableHandler;
3769
3770 GetConsoleMode(g_hConIn, &cmodein);
3771 GetConsoleMode(g_hConOut, &cmodeout);
3772 if (tmode == TMODE_RAW)
3773 {
3774 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3775 ENABLE_ECHO_INPUT);
3776#ifdef FEAT_MOUSE
3777 if (g_fMouseActive)
3778 cmodein |= ENABLE_MOUSE_INPUT;
3779#endif
3780 cmodeout &= ~(ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3781 bEnableHandler = TRUE;
3782 }
3783 else /* cooked */
3784 {
3785 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3786 ENABLE_ECHO_INPUT);
3787 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3788 bEnableHandler = FALSE;
3789 }
3790 SetConsoleMode(g_hConIn, cmodein);
3791 SetConsoleMode(g_hConOut, cmodeout);
3792 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3793
3794#ifdef MCH_WRITE_DUMP
3795 if (fdDump)
3796 {
3797 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3798 tmode == TMODE_RAW ? "raw" :
3799 tmode == TMODE_COOK ? "cooked" : "normal",
3800 cmodein, cmodeout);
3801 fflush(fdDump);
3802 }
3803#endif
3804}
3805
3806
3807/*
3808 * Get the size of the current window in `Rows' and `Columns'
3809 * Return OK when size could be determined, FAIL otherwise.
3810 */
3811 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003812mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813{
3814 CONSOLE_SCREEN_BUFFER_INFO csbi;
3815
3816 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3817 {
3818 /*
3819 * For some reason, we are trying to get the screen dimensions
3820 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3821 * variables are really intended to mean the size of Vim screen
3822 * while in termcap mode.
3823 */
3824 Rows = g_cbTermcap.Info.dwSize.Y;
3825 Columns = g_cbTermcap.Info.dwSize.X;
3826 }
3827 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3828 {
3829 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3830 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3831 }
3832 else
3833 {
3834 Rows = 25;
3835 Columns = 80;
3836 }
3837 return OK;
3838}
3839
3840/*
3841 * Set a console window to `xSize' * `ySize'
3842 */
3843 static void
3844ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003845 HANDLE hConsole,
3846 int xSize,
3847 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848{
3849 CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */
3850 SMALL_RECT srWindowRect; /* hold the new console size */
3851 COORD coordScreen;
3852
3853#ifdef MCH_WRITE_DUMP
3854 if (fdDump)
3855 {
3856 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3857 fflush(fdDump);
3858 }
3859#endif
3860
3861 /* get the largest size we can size the console window to */
3862 coordScreen = GetLargestConsoleWindowSize(hConsole);
3863
3864 /* define the new console window size and scroll position */
3865 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3866 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3867 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3868
3869 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3870 {
3871 int sx, sy;
3872
3873 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3874 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3875 if (sy < ySize || sx < xSize)
3876 {
3877 /*
3878 * Increasing number of lines/columns, do buffer first.
3879 * Use the maximal size in x and y direction.
3880 */
3881 if (sy < ySize)
3882 coordScreen.Y = ySize;
3883 else
3884 coordScreen.Y = sy;
3885 if (sx < xSize)
3886 coordScreen.X = xSize;
3887 else
3888 coordScreen.X = sx;
3889 SetConsoleScreenBufferSize(hConsole, coordScreen);
3890 }
3891 }
3892
3893 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &srWindowRect))
3894 {
3895#ifdef MCH_WRITE_DUMP
3896 if (fdDump)
3897 {
3898 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3899 GetLastError());
3900 fflush(fdDump);
3901 }
3902#endif
3903 }
3904
3905 /* define the new console buffer size */
3906 coordScreen.X = xSize;
3907 coordScreen.Y = ySize;
3908
3909 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3910 {
3911#ifdef MCH_WRITE_DUMP
3912 if (fdDump)
3913 {
3914 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3915 GetLastError());
3916 fflush(fdDump);
3917 }
3918#endif
3919 }
3920}
3921
3922
3923/*
3924 * Set the console window to `Rows' * `Columns'
3925 */
3926 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003927mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928{
3929 COORD coordScreen;
3930
3931 /* Don't change window size while still starting up */
3932 if (suppress_winsize != 0)
3933 {
3934 suppress_winsize = 2;
3935 return;
3936 }
3937
3938 if (term_console)
3939 {
3940 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3941
3942 /* Clamp Rows and Columns to reasonable values */
3943 if (Rows > coordScreen.Y)
3944 Rows = coordScreen.Y;
3945 if (Columns > coordScreen.X)
3946 Columns = coordScreen.X;
3947
3948 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3949 }
3950}
3951
3952/*
3953 * Rows and/or Columns has changed.
3954 */
3955 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003956mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957{
3958 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3959}
3960
3961
3962/*
3963 * Called when started up, to set the winsize that was delayed.
3964 */
3965 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003966mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967{
3968 if (suppress_winsize == 2)
3969 {
3970 suppress_winsize = 0;
3971 mch_set_shellsize();
3972 shell_resized();
3973 }
3974 suppress_winsize = 0;
3975}
3976#endif /* FEAT_GUI_W32 */
3977
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003978 static BOOL
3979vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003980 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003981 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01003982 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003983 STARTUPINFO *si,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02003984 PROCESS_INFORMATION *pi,
3985 LPVOID *env,
3986 char *cwd)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003987{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003988#ifdef FEAT_MBYTE
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003989 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3990 {
Bram Moolenaar05aafed2017-08-11 19:12:11 +02003991 BOOL ret;
3992 WCHAR *wcmd, *wcwd = NULL;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003993
Bram Moolenaar05aafed2017-08-11 19:12:11 +02003994 wcmd = enc_to_utf16((char_u *)cmd, NULL);
3995 if (wcmd == NULL)
3996 goto fallback;
3997 if (cwd != NULL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003998 {
Bram Moolenaar05aafed2017-08-11 19:12:11 +02003999 wcwd = enc_to_utf16((char_u *)cwd, NULL);
4000 if (wcwd == NULL)
4001 {
4002 vim_free(wcmd);
4003 goto fallback;
4004 }
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004005 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004006
4007 ret = CreateProcessW(
4008 NULL, /* Executable name */
4009 wcmd, /* Command to execute */
4010 NULL, /* Process security attributes */
4011 NULL, /* Thread security attributes */
4012 inherit_handles, /* Inherit handles */
4013 flags, /* Creation flags */
4014 env, /* Environment */
4015 wcwd, /* Current directory */
4016 (LPSTARTUPINFOW)si, /* Startup information */
4017 pi); /* Process information */
4018 vim_free(wcmd);
4019 if (wcwd != NULL)
4020 vim_free(wcwd);
4021 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004022 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004023fallback:
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004024#endif
4025 return CreateProcess(
4026 NULL, /* Executable name */
4027 cmd, /* Command to execute */
4028 NULL, /* Process security attributes */
4029 NULL, /* Thread security attributes */
4030 inherit_handles, /* Inherit handles */
4031 flags, /* Creation flags */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004032 env, /* Environment */
4033 cwd, /* Current directory */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004034 si, /* Startup information */
4035 pi); /* Process information */
4036}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037
4038
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004039 static HINSTANCE
4040vim_shell_execute(
4041 char *cmd,
4042 INT n_show_cmd)
4043{
4044#ifdef FEAT_MBYTE
4045 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4046 {
4047 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL);
4048 if (wcmd != NULL)
4049 {
4050 HINSTANCE ret;
4051 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd);
4052 vim_free(wcmd);
4053 return ret;
4054 }
4055 }
4056#endif
4057 return ShellExecute(NULL, NULL, cmd, NULL, NULL, n_show_cmd);
4058}
4059
4060
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061#if defined(FEAT_GUI_W32) || defined(PROTO)
4062
4063/*
4064 * Specialised version of system() for Win32 GUI mode.
4065 * This version proceeds as follows:
4066 * 1. Create a console window for use by the subprocess
4067 * 2. Run the subprocess (it gets the allocated console by default)
4068 * 3. Wait for the subprocess to terminate and get its exit code
4069 * 4. Prompt the user to press a key to close the console window
4070 */
4071 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004072mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073{
4074 STARTUPINFO si;
4075 PROCESS_INFORMATION pi;
4076 DWORD ret = 0;
4077 HWND hwnd = GetFocus();
4078
4079 si.cb = sizeof(si);
4080 si.lpReserved = NULL;
4081 si.lpDesktop = NULL;
4082 si.lpTitle = NULL;
4083 si.dwFlags = STARTF_USESHOWWINDOW;
4084 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004085 * It's nicer to run a filter command in a minimized window.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004086 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004088 if (options & SHELL_DOOUT)
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004089 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 else
4091 si.wShowWindow = SW_SHOWNORMAL;
4092 si.cbReserved2 = 0;
4093 si.lpReserved2 = NULL;
4094
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 /* Now, run the command */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004096 vim_create_process(cmd, FALSE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004097 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE,
4098 &si, &pi, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099
4100 /* Wait for the command to terminate before continuing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 {
4102#ifdef FEAT_GUI
4103 int delay = 1;
4104
4105 /* Keep updating the window while waiting for the shell to finish. */
4106 for (;;)
4107 {
4108 MSG msg;
4109
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004110 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 {
4112 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004113 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004114 delay = 1;
4115 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 }
4117 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4118 break;
4119
4120 /* We start waiting for a very short time and then increase it, so
4121 * that we respond quickly when the process is quick, and don't
4122 * consume too much overhead when it's slow. */
4123 if (delay < 50)
4124 delay += 10;
4125 }
4126#else
4127 WaitForSingleObject(pi.hProcess, INFINITE);
4128#endif
4129
4130 /* Get the command exit code */
4131 GetExitCodeProcess(pi.hProcess, &ret);
4132 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133
4134 /* Close the handles to the subprocess, so that it goes away */
4135 CloseHandle(pi.hThread);
4136 CloseHandle(pi.hProcess);
4137
4138 /* Try to get input focus back. Doesn't always work though. */
4139 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4140
4141 return ret;
4142}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004143
4144/*
4145 * Thread launched by the gui to send the current buffer data to the
4146 * process. This way avoid to hang up vim totally if the children
4147 * process take a long time to process the lines.
4148 */
Bram Moolenaar4c38d662016-08-03 20:54:57 +02004149 static unsigned int __stdcall
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004150sub_process_writer(LPVOID param)
4151{
4152 HANDLE g_hChildStd_IN_Wr = param;
4153 linenr_T lnum = curbuf->b_op_start.lnum;
4154 DWORD len = 0;
4155 DWORD l;
4156 char_u *lp = ml_get(lnum);
4157 char_u *s;
4158 int written = 0;
4159
4160 for (;;)
4161 {
4162 l = (DWORD)STRLEN(lp + written);
4163 if (l == 0)
4164 len = 0;
4165 else if (lp[written] == NL)
4166 {
4167 /* NL -> NUL translation */
4168 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4169 }
4170 else
4171 {
4172 s = vim_strchr(lp + written, NL);
4173 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4174 s == NULL ? l : (DWORD)(s - (lp + written)),
4175 &len, NULL);
4176 }
4177 if (len == (int)l)
4178 {
4179 /* Finished a line, add a NL, unless this line should not have
4180 * one. */
4181 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004182 || (!curbuf->b_p_bin
4183 && curbuf->b_p_fixeol)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004184 || (lnum != curbuf->b_no_eol_lnum
4185 && (lnum != curbuf->b_ml.ml_line_count
4186 || curbuf->b_p_eol)))
4187 {
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01004188 WriteFile(g_hChildStd_IN_Wr, "\n", 1, (LPDWORD)&ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004189 }
4190
4191 ++lnum;
4192 if (lnum > curbuf->b_op_end.lnum)
4193 break;
4194
4195 lp = ml_get(lnum);
4196 written = 0;
4197 }
4198 else if (len > 0)
4199 written += len;
4200 }
4201
4202 /* finished all the lines, close pipe */
4203 CloseHandle(g_hChildStd_IN_Wr);
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004204 return 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004205}
4206
4207
4208# define BUFLEN 100 /* length for buffer, stolen from unix version */
4209
4210/*
4211 * This function read from the children's stdout and write the
4212 * data on screen or in the buffer accordingly.
4213 */
4214 static void
4215dump_pipe(int options,
4216 HANDLE g_hChildStd_OUT_Rd,
4217 garray_T *ga,
4218 char_u buffer[],
4219 DWORD *buffer_off)
4220{
4221 DWORD availableBytes = 0;
4222 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004223 int ret;
4224 DWORD len;
4225 DWORD toRead;
4226 int repeatCount;
4227
4228 /* we query the pipe to see if there is any data to read
4229 * to avoid to perform a blocking read */
4230 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */
4231 NULL, /* optional buffer */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004232 0, /* buffer size */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004233 NULL, /* number of read bytes */
4234 &availableBytes, /* available bytes total */
4235 NULL); /* byteLeft */
4236
4237 repeatCount = 0;
4238 /* We got real data in the pipe, read it */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004239 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004240 {
4241 repeatCount++;
4242 toRead =
4243# ifdef FEAT_MBYTE
4244 (DWORD)(BUFLEN - *buffer_off);
4245# else
4246 (DWORD)BUFLEN;
4247# endif
4248 toRead = availableBytes < toRead ? availableBytes : toRead;
4249 ReadFile(g_hChildStd_OUT_Rd, buffer
4250# ifdef FEAT_MBYTE
4251 + *buffer_off, toRead
4252# else
4253 , toRead
4254# endif
4255 , &len, NULL);
4256
4257 /* If we haven't read anything, there is a problem */
4258 if (len == 0)
4259 break;
4260
4261 availableBytes -= len;
4262
4263 if (options & SHELL_READ)
4264 {
4265 /* Do NUL -> NL translation, append NL separated
4266 * lines to the current buffer. */
4267 for (i = 0; i < len; ++i)
4268 {
4269 if (buffer[i] == NL)
4270 append_ga_line(ga);
4271 else if (buffer[i] == NUL)
4272 ga_append(ga, NL);
4273 else
4274 ga_append(ga, buffer[i]);
4275 }
4276 }
4277# ifdef FEAT_MBYTE
4278 else if (has_mbyte)
4279 {
4280 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004281 int c;
4282 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004283
4284 len += *buffer_off;
4285 buffer[len] = NUL;
4286
4287 /* Check if the last character in buffer[] is
4288 * incomplete, keep these bytes for the next
4289 * round. */
4290 for (p = buffer; p < buffer + len; p += l)
4291 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004292 l = MB_CPTR2LEN(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004293 if (l == 0)
4294 l = 1; /* NUL byte? */
4295 else if (MB_BYTE2LEN(*p) != l)
4296 break;
4297 }
4298 if (p == buffer) /* no complete character */
4299 {
4300 /* avoid getting stuck at an illegal byte */
4301 if (len >= 12)
4302 ++p;
4303 else
4304 {
4305 *buffer_off = len;
4306 return;
4307 }
4308 }
4309 c = *p;
4310 *p = NUL;
4311 msg_puts(buffer);
4312 if (p < buffer + len)
4313 {
4314 *p = c;
4315 *buffer_off = (DWORD)((buffer + len) - p);
4316 mch_memmove(buffer, p, *buffer_off);
4317 return;
4318 }
4319 *buffer_off = 0;
4320 }
4321# endif /* FEAT_MBYTE */
4322 else
4323 {
4324 buffer[len] = NUL;
4325 msg_puts(buffer);
4326 }
4327
4328 windgoto(msg_row, msg_col);
4329 cursor_on();
4330 out_flush();
4331 }
4332}
4333
4334/*
4335 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4336 * for communication and doesn't open any new window.
4337 */
4338 static int
4339mch_system_piped(char *cmd, int options)
4340{
4341 STARTUPINFO si;
4342 PROCESS_INFORMATION pi;
4343 DWORD ret = 0;
4344
4345 HANDLE g_hChildStd_IN_Rd = NULL;
4346 HANDLE g_hChildStd_IN_Wr = NULL;
4347 HANDLE g_hChildStd_OUT_Rd = NULL;
4348 HANDLE g_hChildStd_OUT_Wr = NULL;
4349
4350 char_u buffer[BUFLEN + 1]; /* reading buffer + size */
4351 DWORD len;
4352
4353 /* buffer used to receive keys */
4354 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4355 int ta_len = 0; /* valid bytes in ta_buf[] */
4356
4357 DWORD i;
4358 int c;
4359 int noread_cnt = 0;
4360 garray_T ga;
4361 int delay = 1;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004362 DWORD buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004363 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004364
4365 SECURITY_ATTRIBUTES saAttr;
4366
4367 /* Set the bInheritHandle flag so pipe handles are inherited. */
4368 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4369 saAttr.bInheritHandle = TRUE;
4370 saAttr.lpSecurityDescriptor = NULL;
4371
4372 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
4373 /* Ensure the read handle to the pipe for STDOUT is not inherited. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004374 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004375 /* Create a pipe for the child process's STDIN. */
4376 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
4377 /* Ensure the write handle to the pipe for STDIN is not inherited. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004378 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004379 {
4380 CloseHandle(g_hChildStd_IN_Rd);
4381 CloseHandle(g_hChildStd_IN_Wr);
4382 CloseHandle(g_hChildStd_OUT_Rd);
4383 CloseHandle(g_hChildStd_OUT_Wr);
4384 MSG_PUTS(_("\nCannot create pipes\n"));
4385 }
4386
4387 si.cb = sizeof(si);
4388 si.lpReserved = NULL;
4389 si.lpDesktop = NULL;
4390 si.lpTitle = NULL;
4391 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4392
4393 /* set-up our file redirection */
4394 si.hStdError = g_hChildStd_OUT_Wr;
4395 si.hStdOutput = g_hChildStd_OUT_Wr;
4396 si.hStdInput = g_hChildStd_IN_Rd;
4397 si.wShowWindow = SW_HIDE;
4398 si.cbReserved2 = 0;
4399 si.lpReserved2 = NULL;
4400
4401 if (options & SHELL_READ)
4402 ga_init2(&ga, 1, BUFLEN);
4403
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004404 if (cmd != NULL)
4405 {
4406 p = (char *)vim_strsave((char_u *)cmd);
4407 if (p != NULL)
4408 unescape_shellxquote((char_u *)p, p_sxe);
4409 else
4410 p = cmd;
4411 }
4412
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004413 /* Now, run the command.
4414 * About "Inherit handles" being TRUE: this command can be litigious,
4415 * handle inheritance was deactivated for pending temp file, but, if we
4416 * deactivate it, the pipes don't work for some reason. */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004417 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE,
4418 &si, &pi, NULL, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004419
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004420 if (p != cmd)
4421 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004422
4423 /* Close our unused side of the pipes */
4424 CloseHandle(g_hChildStd_IN_Rd);
4425 CloseHandle(g_hChildStd_OUT_Wr);
4426
4427 if (options & SHELL_WRITE)
4428 {
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004429 HANDLE thread = (HANDLE)
4430 _beginthreadex(NULL, /* security attributes */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004431 0, /* default stack size */
4432 sub_process_writer, /* function to be executed */
4433 g_hChildStd_IN_Wr, /* parameter */
4434 0, /* creation flag, start immediately */
4435 NULL); /* we don't care about thread id */
4436 CloseHandle(thread);
4437 g_hChildStd_IN_Wr = NULL;
4438 }
4439
4440 /* Keep updating the window while waiting for the shell to finish. */
4441 for (;;)
4442 {
4443 MSG msg;
4444
Bram Moolenaar175d0702013-12-11 18:36:33 +01004445 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004446 {
4447 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004448 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004449 }
4450
4451 /* write pipe information in the window */
4452 if ((options & (SHELL_READ|SHELL_WRITE))
4453# ifdef FEAT_GUI
4454 || gui.in_use
4455# endif
4456 )
4457 {
4458 len = 0;
4459 if (!(options & SHELL_EXPAND)
4460 && ((options &
4461 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4462 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4463# ifdef FEAT_GUI
4464 || gui.in_use
4465# endif
4466 )
4467 && (ta_len > 0 || noread_cnt > 4))
4468 {
4469 if (ta_len == 0)
4470 {
4471 /* Get extra characters when we don't have any. Reset the
4472 * counter and timer. */
4473 noread_cnt = 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004474 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4475 }
4476 if (ta_len > 0 || len > 0)
4477 {
4478 /*
4479 * For pipes: Check for CTRL-C: send interrupt signal to
4480 * child. Check for CTRL-D: EOF, close pipe to child.
4481 */
4482 if (len == 1 && cmd != NULL)
4483 {
4484 if (ta_buf[ta_len] == Ctrl_C)
4485 {
4486 /* Learn what exit code is expected, for
4487 * now put 9 as SIGKILL */
4488 TerminateProcess(pi.hProcess, 9);
4489 }
4490 if (ta_buf[ta_len] == Ctrl_D)
4491 {
4492 CloseHandle(g_hChildStd_IN_Wr);
4493 g_hChildStd_IN_Wr = NULL;
4494 }
4495 }
4496
4497 /* replace K_BS by <BS> and K_DEL by <DEL> */
4498 for (i = ta_len; i < ta_len + len; ++i)
4499 {
4500 if (ta_buf[i] == CSI && len - i > 2)
4501 {
4502 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4503 if (c == K_DEL || c == K_KDEL || c == K_BS)
4504 {
4505 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4506 (size_t)(len - i - 2));
4507 if (c == K_DEL || c == K_KDEL)
4508 ta_buf[i] = DEL;
4509 else
4510 ta_buf[i] = Ctrl_H;
4511 len -= 2;
4512 }
4513 }
4514 else if (ta_buf[i] == '\r')
4515 ta_buf[i] = '\n';
4516# ifdef FEAT_MBYTE
4517 if (has_mbyte)
4518 i += (*mb_ptr2len_len)(ta_buf + i,
4519 ta_len + len - i) - 1;
4520# endif
4521 }
4522
4523 /*
4524 * For pipes: echo the typed characters. For a pty this
4525 * does not seem to work.
4526 */
4527 for (i = ta_len; i < ta_len + len; ++i)
4528 {
4529 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4530 msg_putchar(ta_buf[i]);
4531# ifdef FEAT_MBYTE
4532 else if (has_mbyte)
4533 {
4534 int l = (*mb_ptr2len)(ta_buf + i);
4535
4536 msg_outtrans_len(ta_buf + i, l);
4537 i += l - 1;
4538 }
4539# endif
4540 else
4541 msg_outtrans_len(ta_buf + i, 1);
4542 }
4543 windgoto(msg_row, msg_col);
4544 out_flush();
4545
4546 ta_len += len;
4547
4548 /*
4549 * Write the characters to the child, unless EOF has been
4550 * typed for pipes. Write one character at a time, to
4551 * avoid losing too much typeahead. When writing buffer
4552 * lines, drop the typed characters (only check for
4553 * CTRL-C).
4554 */
4555 if (options & SHELL_WRITE)
4556 ta_len = 0;
4557 else if (g_hChildStd_IN_Wr != NULL)
4558 {
4559 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4560 1, &len, NULL);
4561 // if we are typing in, we want to keep things reactive
4562 delay = 1;
4563 if (len > 0)
4564 {
4565 ta_len -= len;
4566 mch_memmove(ta_buf, ta_buf + len, ta_len);
4567 }
4568 }
4569 }
4570 }
4571 }
4572
4573 if (ta_len)
4574 ui_inchar_undo(ta_buf, ta_len);
4575
4576 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4577 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004578 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004579 break;
4580 }
4581
4582 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004583 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004584
4585 /* We start waiting for a very short time and then increase it, so
4586 * that we respond quickly when the process is quick, and don't
4587 * consume too much overhead when it's slow. */
4588 if (delay < 50)
4589 delay += 10;
4590 }
4591
4592 /* Close the pipe */
4593 CloseHandle(g_hChildStd_OUT_Rd);
4594 if (g_hChildStd_IN_Wr != NULL)
4595 CloseHandle(g_hChildStd_IN_Wr);
4596
4597 WaitForSingleObject(pi.hProcess, INFINITE);
4598
4599 /* Get the command exit code */
4600 GetExitCodeProcess(pi.hProcess, &ret);
4601
4602 if (options & SHELL_READ)
4603 {
4604 if (ga.ga_len > 0)
4605 {
4606 append_ga_line(&ga);
4607 /* remember that the NL was missing */
4608 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4609 }
4610 else
4611 curbuf->b_no_eol_lnum = 0;
4612 ga_clear(&ga);
4613 }
4614
4615 /* Close the handles to the subprocess, so that it goes away */
4616 CloseHandle(pi.hThread);
4617 CloseHandle(pi.hProcess);
4618
4619 return ret;
4620}
4621
4622 static int
4623mch_system(char *cmd, int options)
4624{
4625 /* if we can pipe and the shelltemp option is off */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004626 if (!p_stmp)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004627 return mch_system_piped(cmd, options);
4628 else
4629 return mch_system_classic(cmd, options);
4630}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631#else
4632
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004633# ifdef FEAT_MBYTE
4634 static int
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01004635mch_system(char *cmd, int options)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004636{
4637 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4638 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004639 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004640 if (wcmd != NULL)
4641 {
4642 int ret = _wsystem(wcmd);
4643 vim_free(wcmd);
4644 return ret;
4645 }
4646 }
4647 return system(cmd);
4648}
4649# else
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01004650# define mch_system(c, o) system(c)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004651# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652
4653#endif
4654
4655/*
4656 * Either execute a command by calling the shell or start a new shell
4657 */
4658 int
4659mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004660 char_u *cmd,
4661 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662{
4663 int x = 0;
4664 int tmode = cur_tmode;
4665#ifdef FEAT_TITLE
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004666 char szShellTitle[512];
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004667# ifdef FEAT_MBYTE
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004668 int did_set_title = FALSE;
4669
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004670 /* Change the title to reflect that we are in a subshell. */
4671 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4672 {
4673 WCHAR szShellTitle[512];
4674
4675 if (GetConsoleTitleW(szShellTitle,
4676 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0)
4677 {
4678 if (cmd == NULL)
4679 wcscat(szShellTitle, L" :sh");
4680 else
4681 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004682 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004683
4684 if (wn != NULL)
4685 {
4686 wcscat(szShellTitle, L" - !");
4687 if ((wcslen(szShellTitle) + wcslen(wn) <
4688 sizeof(szShellTitle)/sizeof(WCHAR)))
4689 wcscat(szShellTitle, wn);
4690 SetConsoleTitleW(szShellTitle);
4691 vim_free(wn);
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004692 did_set_title = TRUE;
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004693 }
4694 }
4695 }
4696 }
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004697 if (!did_set_title)
4698# endif
4699 /* Change the title to reflect that we are in a subshell. */
4700 if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701 {
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004702 if (cmd == NULL)
4703 strcat(szShellTitle, " :sh");
4704 else
4705 {
4706 strcat(szShellTitle, " - !");
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004707 if ((strlen(szShellTitle) + strlen((char *)cmd)
4708 < sizeof(szShellTitle)))
4709 strcat(szShellTitle, (char *)cmd);
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004710 }
4711 SetConsoleTitle(szShellTitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713#endif
4714
4715 out_flush();
4716
4717#ifdef MCH_WRITE_DUMP
4718 if (fdDump)
4719 {
4720 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4721 fflush(fdDump);
4722 }
4723#endif
4724
4725 /*
4726 * Catch all deadly signals while running the external command, because a
4727 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4728 */
4729 signal(SIGINT, SIG_IGN);
4730#if defined(__GNUC__) && !defined(__MINGW32__)
4731 signal(SIGKILL, SIG_IGN);
4732#else
4733 signal(SIGBREAK, SIG_IGN);
4734#endif
4735 signal(SIGILL, SIG_IGN);
4736 signal(SIGFPE, SIG_IGN);
4737 signal(SIGSEGV, SIG_IGN);
4738 signal(SIGTERM, SIG_IGN);
4739 signal(SIGABRT, SIG_IGN);
4740
4741 if (options & SHELL_COOKED)
4742 settmode(TMODE_COOK); /* set to normal mode */
4743
4744 if (cmd == NULL)
4745 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004746 x = mch_system((char *)p_sh, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 }
4748 else
4749 {
4750 /* we use "command" or "cmd" to start the shell; slow but easy */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004751 char_u *newcmd = NULL;
4752 char_u *cmdbase = cmd;
4753 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004754
4755 /* Skip a leading ", ( and "(. */
4756 if (*cmdbase == '"' )
4757 ++cmdbase;
4758 if (*cmdbase == '(')
4759 ++cmdbase;
4760
Bram Moolenaar1c465442017-03-12 20:10:05 +01004761 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004762 {
4763 STARTUPINFO si;
4764 PROCESS_INFORMATION pi;
4765 DWORD flags = CREATE_NEW_CONSOLE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004766 INT n_show_cmd = SW_SHOWNORMAL;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004767 char_u *p;
4768
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004769 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004770 si.cb = sizeof(si);
4771 si.lpReserved = NULL;
4772 si.lpDesktop = NULL;
4773 si.lpTitle = NULL;
4774 si.dwFlags = 0;
4775 si.cbReserved2 = 0;
4776 si.lpReserved2 = NULL;
4777
4778 cmdbase = skipwhite(cmdbase + 5);
4779 if ((STRNICMP(cmdbase, "/min", 4) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004780 && VIM_ISWHITE(cmdbase[4]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004781 {
4782 cmdbase = skipwhite(cmdbase + 4);
4783 si.dwFlags = STARTF_USESHOWWINDOW;
4784 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004785 n_show_cmd = SW_SHOWMINNOACTIVE;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004786 }
4787 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004788 && VIM_ISWHITE(cmdbase[2]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004789 {
4790 cmdbase = skipwhite(cmdbase + 2);
4791 flags = CREATE_NO_WINDOW;
4792 si.dwFlags = STARTF_USESTDHANDLES;
4793 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004794 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004795 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004796 NULL, // Security att.
4797 OPEN_EXISTING, // Open flags
4798 FILE_ATTRIBUTE_NORMAL, // File att.
4799 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004800 si.hStdOutput = si.hStdInput;
4801 si.hStdError = si.hStdInput;
4802 }
4803
4804 /* Remove a trailing ", ) and )" if they have a match
4805 * at the start of the command. */
4806 if (cmdbase > cmd)
4807 {
4808 p = cmdbase + STRLEN(cmdbase);
4809 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4810 *--p = NUL;
4811 if (p > cmdbase && p[-1] == ')'
4812 && (*cmd =='(' || cmd[1] == '('))
4813 *--p = NUL;
4814 }
4815
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004816 newcmd = cmdbase;
4817 unescape_shellxquote(cmdbase, p_sxe);
4818
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004819 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004820 * If creating new console, arguments are passed to the
4821 * 'cmd.exe' as-is. If it's not, arguments are not treated
4822 * correctly for current 'cmd.exe'. So unescape characters in
4823 * shellxescape except '|' for avoiding to be treated as
4824 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004825 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004826 if (flags != CREATE_NEW_CONSOLE)
4827 {
4828 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004829 char_u *cmd_shell = mch_getenv("COMSPEC");
4830
4831 if (cmd_shell == NULL || *cmd_shell == NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004832 cmd_shell = (char_u *)default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004833
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004834 subcmd = vim_strsave_escaped_ext(cmdbase,
4835 (char_u *)"|", '^', FALSE);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004836 if (subcmd != NULL)
4837 {
4838 /* make "cmd.exe /c arguments" */
4839 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004840 newcmd = lalloc(cmdlen, TRUE);
4841 if (newcmd != NULL)
4842 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004843 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004844 else
4845 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004846 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004847 }
4848 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004849
4850 /*
4851 * Now, start the command as a process, so that it doesn't
4852 * inherit our handles which causes unpleasant dangling swap
4853 * files if we exit before the spawned process
4854 */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004855 if (vim_create_process((char *)newcmd, FALSE, flags,
4856 &si, &pi, NULL, NULL))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004857 x = 0;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004858 else if (vim_shell_execute((char *)newcmd, n_show_cmd)
4859 > (HINSTANCE)32)
4860 x = 0;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004861 else
4862 {
4863 x = -1;
4864#ifdef FEAT_GUI_W32
4865 EMSG(_("E371: Command not found"));
4866#endif
4867 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004868
4869 if (newcmd != cmdbase)
4870 vim_free(newcmd);
4871
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004872 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004873 {
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004874 /* Close the handle to \\.\NUL created above. */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004875 CloseHandle(si.hStdInput);
4876 }
4877 /* Close the handles to the subprocess, so that it goes away */
4878 CloseHandle(pi.hThread);
4879 CloseHandle(pi.hProcess);
4880 }
4881 else
4882 {
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004883 cmdlen = (
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884#ifdef FEAT_GUI_W32
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004885 (!p_stmp ? 0 : STRLEN(vimrun_path)) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886#endif
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004887 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10);
4888
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004889 newcmd = lalloc(cmdlen, TRUE);
4890 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 {
4892#if defined(FEAT_GUI_W32)
4893 if (need_vimrun_warning)
4894 {
Bram Moolenaar63e43442016-11-19 17:28:44 +01004895 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
4896 "External commands will not pause after completion.\n"
4897 "See :help win32-vimrun for more information.");
4898 char *title = _("Vim Warning");
4899# ifdef FEAT_MBYTE
4900 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4901 {
4902 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
4903 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
4904
4905 if (wmsg != NULL && wtitle != NULL)
4906 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
4907 vim_free(wmsg);
4908 vim_free(wtitle);
4909 }
4910 else
4911# endif
4912 MessageBox(NULL, msg, title, MB_ICONWARNING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 need_vimrun_warning = FALSE;
4914 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004915 if (!s_dont_use_vimrun && p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 /* Use vimrun to execute the command. It opens a console
4917 * window, which can be closed without killing Vim. */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004918 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 vimrun_path,
4920 (msg_silent != 0 || (options & SHELL_DOOUT))
4921 ? "-s " : "",
4922 p_sh, p_shcf, cmd);
4923 else
4924#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004925 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004926 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004928 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 }
4931 }
4932
4933 if (tmode == TMODE_RAW)
4934 settmode(TMODE_RAW); /* set to raw mode */
4935
4936 /* Print the return value, unless "vimrun" was used. */
4937 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
4938#if defined(FEAT_GUI_W32)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004939 && ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940#endif
4941 )
4942 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004943 smsg((char_u *)_("shell returned %d"), x);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 msg_putchar('\n');
4945 }
4946#ifdef FEAT_TITLE
4947 resettitle();
4948#endif
4949
4950 signal(SIGINT, SIG_DFL);
4951#if defined(__GNUC__) && !defined(__MINGW32__)
4952 signal(SIGKILL, SIG_DFL);
4953#else
4954 signal(SIGBREAK, SIG_DFL);
4955#endif
4956 signal(SIGILL, SIG_DFL);
4957 signal(SIGFPE, SIG_DFL);
4958 signal(SIGSEGV, SIG_DFL);
4959 signal(SIGTERM, SIG_DFL);
4960 signal(SIGABRT, SIG_DFL);
4961
4962 return x;
4963}
4964
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004965#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004966 static HANDLE
4967job_io_file_open(
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004968 char_u *fname,
4969 DWORD dwDesiredAccess,
4970 DWORD dwShareMode,
4971 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
4972 DWORD dwCreationDisposition,
4973 DWORD dwFlagsAndAttributes)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004974{
4975 HANDLE h;
4976# ifdef FEAT_MBYTE
4977 WCHAR *wn = NULL;
4978 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4979 {
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004980 wn = enc_to_utf16(fname, NULL);
4981 if (wn != NULL)
4982 {
4983 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
4984 lpSecurityAttributes, dwCreationDisposition,
4985 dwFlagsAndAttributes, NULL);
4986 vim_free(wn);
4987 }
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004988 }
4989 if (wn == NULL)
4990# endif
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004991 h = CreateFile((LPCSTR)fname, dwDesiredAccess, dwShareMode,
4992 lpSecurityAttributes, dwCreationDisposition,
4993 dwFlagsAndAttributes, NULL);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004994 return h;
4995}
4996
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004997/*
4998 * Turn the dictionary "env" into a NUL separated list that can be used as the
4999 * environment argument of vim_create_process().
5000 */
5001 static void
5002make_job_env(garray_T *gap, dict_T *env)
5003{
5004 hashitem_T *hi;
5005 int todo = (int)env->dv_hashtab.ht_used;
5006 LPVOID base = GetEnvironmentStringsW();
5007
5008 /* for last \0 */
5009 if (ga_grow(gap, 1) == FAIL)
5010 return;
5011
5012 if (base)
5013 {
5014 WCHAR *p = (WCHAR*) base;
5015
5016 /* for last \0 */
5017 if (ga_grow(gap, 1) == FAIL)
5018 return;
5019
5020 while (*p != 0 || *(p + 1) != 0)
5021 {
5022 if (ga_grow(gap, 1) == OK)
5023 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
5024 p++;
5025 }
5026 FreeEnvironmentStrings(base);
5027 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5028 }
5029
5030 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi)
5031 {
5032 if (!HASHITEM_EMPTY(hi))
5033 {
5034 typval_T *item = &dict_lookup(hi)->di_tv;
5035 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL);
5036 WCHAR *wval = enc_to_utf16(get_tv_string(item), NULL);
5037 --todo;
5038 if (wkey != NULL && wval != NULL)
5039 {
5040 int n, lkey = wcslen(wkey), lval = wcslen(wval);
5041 if (ga_grow(gap, lkey + lval + 2) != OK)
5042 continue;
5043 for (n = 0; n < lkey; n++)
5044 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n];
5045 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'=';
5046 for (n = 0; n < lval; n++)
5047 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n];
5048 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5049 }
5050 if (wkey != NULL) vim_free(wkey);
5051 if (wval != NULL) vim_free(wval);
5052 }
5053 }
5054
5055 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5056}
5057
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005058 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005059mch_job_start(char *cmd, job_T *job, jobopt_T *options)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005060{
5061 STARTUPINFO si;
5062 PROCESS_INFORMATION pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005063 HANDLE jo;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005064 SECURITY_ATTRIBUTES saAttr;
5065 channel_T *channel = NULL;
Bram Moolenaard8070362016-02-15 21:56:54 +01005066 HANDLE ifd[2];
5067 HANDLE ofd[2];
5068 HANDLE efd[2];
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005069 garray_T ga;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005070
5071 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5072 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5073 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
5074 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
5075 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5076 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
5077 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
5078
5079 if (use_out_for_err && use_null_for_out)
5080 use_null_for_err = TRUE;
Bram Moolenaard8070362016-02-15 21:56:54 +01005081
5082 ifd[0] = INVALID_HANDLE_VALUE;
5083 ifd[1] = INVALID_HANDLE_VALUE;
5084 ofd[0] = INVALID_HANDLE_VALUE;
5085 ofd[1] = INVALID_HANDLE_VALUE;
5086 efd[0] = INVALID_HANDLE_VALUE;
5087 efd[1] = INVALID_HANDLE_VALUE;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005088 ga_init2(&ga, (int)sizeof(wchar_t), 500);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005089
Bram Moolenaar14207f42016-10-27 21:13:10 +02005090 jo = CreateJobObject(NULL, NULL);
5091 if (jo == NULL)
5092 {
5093 job->jv_status = JOB_FAILED;
5094 goto failed;
5095 }
5096
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005097 if (options->jo_env != NULL)
5098 make_job_env(&ga, options->jo_env);
5099
Bram Moolenaar76467df2016-02-12 19:30:26 +01005100 ZeroMemory(&pi, sizeof(pi));
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005101 ZeroMemory(&si, sizeof(si));
5102 si.cb = sizeof(si);
Bram Moolenaard8070362016-02-15 21:56:54 +01005103 si.dwFlags |= STARTF_USESHOWWINDOW;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005104 si.wShowWindow = SW_HIDE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005105
Bram Moolenaard8070362016-02-15 21:56:54 +01005106 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5107 saAttr.bInheritHandle = TRUE;
5108 saAttr.lpSecurityDescriptor = NULL;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005109
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005110 if (use_file_for_in)
5111 {
5112 char_u *fname = options->jo_io_name[PART_IN];
5113
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005114 ifd[0] = job_io_file_open(fname, GENERIC_READ,
5115 FILE_SHARE_READ | FILE_SHARE_WRITE,
5116 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
5117 if (ifd[0] == INVALID_HANDLE_VALUE)
Bram Moolenaar94d01912016-03-08 13:48:51 +01005118 {
5119 EMSG2(_(e_notopen), fname);
5120 goto failed;
5121 }
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005122 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005123 else if (!use_null_for_in &&
5124 (!CreatePipe(&ifd[0], &ifd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005125 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005126 goto failed;
5127
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005128 if (use_file_for_out)
5129 {
5130 char_u *fname = options->jo_io_name[PART_OUT];
5131
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005132 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
5133 FILE_SHARE_READ | FILE_SHARE_WRITE,
5134 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5135 if (ofd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005136 {
5137 EMSG2(_(e_notopen), fname);
5138 goto failed;
5139 }
5140 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005141 else if (!use_null_for_out &&
5142 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005143 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005144 goto failed;
5145
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005146 if (use_file_for_err)
5147 {
5148 char_u *fname = options->jo_io_name[PART_ERR];
5149
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005150 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
5151 FILE_SHARE_READ | FILE_SHARE_WRITE,
5152 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5153 if (efd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005154 {
5155 EMSG2(_(e_notopen), fname);
5156 goto failed;
5157 }
5158 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005159 else if (!use_out_for_err && !use_null_for_err &&
5160 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005161 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaard8070362016-02-15 21:56:54 +01005162 goto failed;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005163
Bram Moolenaard8070362016-02-15 21:56:54 +01005164 si.dwFlags |= STARTF_USESTDHANDLES;
5165 si.hStdInput = ifd[0];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005166 si.hStdOutput = ofd[1];
5167 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
5168
5169 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5170 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005171 if (options->jo_set & JO_CHANNEL)
5172 {
5173 channel = options->jo_channel;
5174 if (channel != NULL)
5175 ++channel->ch_refcount;
5176 }
5177 else
5178 channel = add_channel();
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005179 if (channel == NULL)
5180 goto failed;
5181 }
Bram Moolenaard8070362016-02-15 21:56:54 +01005182
5183 if (!vim_create_process(cmd, TRUE,
Bram Moolenaar14207f42016-10-27 21:13:10 +02005184 CREATE_SUSPENDED |
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005185 CREATE_DEFAULT_ERROR_MODE |
5186 CREATE_NEW_PROCESS_GROUP |
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005187 CREATE_UNICODE_ENVIRONMENT |
Bram Moolenaar76467df2016-02-12 19:30:26 +01005188 CREATE_NEW_CONSOLE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005189 &si, &pi,
5190 ga.ga_data,
5191 (char *)options->jo_cwd))
Bram Moolenaar76467df2016-02-12 19:30:26 +01005192 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005193 CloseHandle(jo);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005194 job->jv_status = JOB_FAILED;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005195 goto failed;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005196 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005197
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005198 ga_clear(&ga);
5199
Bram Moolenaar14207f42016-10-27 21:13:10 +02005200 if (!AssignProcessToJobObject(jo, pi.hProcess))
5201 {
5202 /* if failing, switch the way to terminate
5203 * process with TerminateProcess. */
5204 CloseHandle(jo);
5205 jo = NULL;
5206 }
5207 ResumeThread(pi.hThread);
Bram Moolenaar75578a32016-03-10 16:33:31 +01005208 CloseHandle(pi.hThread);
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005209 job->jv_proc_info = pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005210 job->jv_job_object = jo;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005211 job->jv_status = JOB_STARTED;
5212
Bram Moolenaar641ad6c2016-09-01 18:32:11 +02005213 CloseHandle(ifd[0]);
5214 CloseHandle(ofd[1]);
5215 if (!use_out_for_err && !use_null_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005216 CloseHandle(efd[1]);
Bram Moolenaard8070362016-02-15 21:56:54 +01005217
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005218 job->jv_channel = channel;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005219 if (channel != NULL)
5220 {
5221 channel_set_pipes(channel,
5222 use_file_for_in || use_null_for_in
5223 ? INVALID_FD : (sock_T)ifd[1],
5224 use_file_for_out || use_null_for_out
5225 ? INVALID_FD : (sock_T)ofd[0],
5226 use_out_for_err || use_file_for_err || use_null_for_err
5227 ? INVALID_FD : (sock_T)efd[0]);
5228 channel_set_job(channel, job, options);
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005229 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005230 return;
5231
5232failed:
Bram Moolenaard8070362016-02-15 21:56:54 +01005233 CloseHandle(ifd[0]);
5234 CloseHandle(ofd[0]);
5235 CloseHandle(efd[0]);
5236 CloseHandle(ifd[1]);
5237 CloseHandle(ofd[1]);
5238 CloseHandle(efd[1]);
Bram Moolenaarde279892016-03-11 22:19:44 +01005239 channel_unref(channel);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005240 ga_clear(&ga);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005241}
5242
5243 char *
5244mch_job_status(job_T *job)
5245{
5246 DWORD dwExitCode = 0;
5247
Bram Moolenaar76467df2016-02-12 19:30:26 +01005248 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
5249 || dwExitCode != STILL_ACTIVE)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005250 {
Bram Moolenaareab089d2016-02-21 19:32:02 +01005251 job->jv_exitval = (int)dwExitCode;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005252 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005253 {
5254 ch_log(job->jv_channel, "Job ended");
5255 job->jv_status = JOB_ENDED;
5256 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005257 return "dead";
5258 }
5259 return "run";
5260}
5261
Bram Moolenaar97792de2016-10-15 18:36:49 +02005262 job_T *
5263mch_detect_ended_job(job_T *job_list)
5264{
5265 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
5266 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
5267 job_T *job = job_list;
5268
5269 while (job != NULL)
5270 {
5271 DWORD n;
5272 DWORD result;
5273
5274 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
5275 && job != NULL; job = job->jv_next)
5276 {
5277 if (job->jv_status == JOB_STARTED)
5278 {
5279 jobHandles[n] = job->jv_proc_info.hProcess;
5280 jobArray[n] = job;
5281 ++n;
5282 }
5283 }
5284 if (n == 0)
5285 continue;
5286 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
5287 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
5288 {
5289 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
5290
5291 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
5292 return wait_job;
5293 }
5294 }
5295 return NULL;
5296}
5297
Bram Moolenaarfb630902016-10-29 14:55:00 +02005298 static BOOL
5299terminate_all(HANDLE process, int code)
5300{
5301 PROCESSENTRY32 pe;
5302 HANDLE h = INVALID_HANDLE_VALUE;
5303 DWORD pid = GetProcessId(process);
5304
5305 if (pid != 0)
5306 {
5307 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5308 if (h != INVALID_HANDLE_VALUE)
5309 {
5310 pe.dwSize = sizeof(PROCESSENTRY32);
5311 if (!Process32First(h, &pe))
5312 goto theend;
5313
5314 do
5315 {
5316 if (pe.th32ParentProcessID == pid)
5317 {
5318 HANDLE ph = OpenProcess(
5319 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
5320 if (ph != NULL)
5321 {
5322 terminate_all(ph, code);
5323 CloseHandle(ph);
5324 }
5325 }
5326 } while (Process32Next(h, &pe));
5327
5328 CloseHandle(h);
5329 }
5330 }
5331
5332theend:
5333 return TerminateProcess(process, code);
5334}
5335
5336/*
5337 * Send a (deadly) signal to "job".
5338 * Return FAIL if it didn't work.
5339 */
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005340 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005341mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005342{
Bram Moolenaar923d9262016-02-25 20:56:01 +01005343 int ret;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005344
Bram Moolenaar923d9262016-02-25 20:56:01 +01005345 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
Bram Moolenaar76467df2016-02-12 19:30:26 +01005346 {
Bram Moolenaarfb630902016-10-29 14:55:00 +02005347 /* deadly signal */
Bram Moolenaar14207f42016-10-27 21:13:10 +02005348 if (job->jv_job_object != NULL)
5349 return TerminateJobObject(job->jv_job_object, 0) ? OK : FAIL;
Bram Moolenaarfb630902016-10-29 14:55:00 +02005350 return terminate_all(job->jv_proc_info.hProcess, 0) ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005351 }
5352
5353 if (!AttachConsole(job->jv_proc_info.dwProcessId))
5354 return FAIL;
5355 ret = GenerateConsoleCtrlEvent(
Bram Moolenaar923d9262016-02-25 20:56:01 +01005356 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
5357 job->jv_proc_info.dwProcessId)
5358 ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005359 FreeConsole();
5360 return ret;
5361}
5362
5363/*
5364 * Clear the data related to "job".
5365 */
5366 void
5367mch_clear_job(job_T *job)
5368{
5369 if (job->jv_status != JOB_FAILED)
5370 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005371 if (job->jv_job_object != NULL)
5372 CloseHandle(job->jv_job_object);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005373 CloseHandle(job->jv_proc_info.hProcess);
5374 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005375}
5376#endif
5377
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378
5379#ifndef FEAT_GUI_W32
5380
5381/*
5382 * Start termcap mode
5383 */
5384 static void
5385termcap_mode_start(void)
5386{
5387 DWORD cmodein;
5388
5389 if (g_fTermcapMode)
5390 return;
5391
5392 SaveConsoleBuffer(&g_cbNonTermcap);
5393
5394 if (g_cbTermcap.IsValid)
5395 {
5396 /*
5397 * We've been in termcap mode before. Restore certain screen
5398 * characteristics, including the buffer size and the window
5399 * size. Since we will be redrawing the screen, we don't need
5400 * to restore the actual contents of the buffer.
5401 */
5402 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
5403 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
5404 Rows = g_cbTermcap.Info.dwSize.Y;
5405 Columns = g_cbTermcap.Info.dwSize.X;
5406 }
5407 else
5408 {
5409 /*
5410 * This is our first time entering termcap mode. Clear the console
5411 * screen buffer, and resize the buffer to match the current window
5412 * size. We will use this as the size of our editing environment.
5413 */
5414 ClearConsoleBuffer(g_attrCurrent);
5415 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
5416 }
5417
5418#ifdef FEAT_TITLE
5419 resettitle();
5420#endif
5421
5422 GetConsoleMode(g_hConIn, &cmodein);
5423#ifdef FEAT_MOUSE
5424 if (g_fMouseActive)
5425 cmodein |= ENABLE_MOUSE_INPUT;
5426 else
5427 cmodein &= ~ENABLE_MOUSE_INPUT;
5428#endif
5429 cmodein |= ENABLE_WINDOW_INPUT;
5430 SetConsoleMode(g_hConIn, cmodein);
5431
5432 redraw_later_clear();
5433 g_fTermcapMode = TRUE;
5434}
5435
5436
5437/*
5438 * End termcap mode
5439 */
5440 static void
5441termcap_mode_end(void)
5442{
5443 DWORD cmodein;
5444 ConsoleBuffer *cb;
5445 COORD coord;
5446 DWORD dwDummy;
5447
5448 if (!g_fTermcapMode)
5449 return;
5450
5451 SaveConsoleBuffer(&g_cbTermcap);
5452
5453 GetConsoleMode(g_hConIn, &cmodein);
5454 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
5455 SetConsoleMode(g_hConIn, cmodein);
5456
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005457#ifdef FEAT_RESTORE_ORIG_SCREEN
5458 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
5459#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460 cb = &g_cbNonTermcap;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005461#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 RestoreConsoleBuffer(cb, p_rs);
5463 SetConsoleCursorInfo(g_hConOut, &g_cci);
5464
5465 if (p_rs || exiting)
5466 {
5467 /*
5468 * Clear anything that happens to be on the current line.
5469 */
5470 coord.X = 0;
5471 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
5472 FillConsoleOutputCharacter(g_hConOut, ' ',
5473 cb->Info.dwSize.X, coord, &dwDummy);
5474 /*
5475 * The following is just for aesthetics. If we are exiting without
5476 * restoring the screen, then we want to have a prompt string
5477 * appear at the bottom line. However, the command interpreter
5478 * seems to always advance the cursor one line before displaying
5479 * the prompt string, which causes the screen to scroll. To
5480 * counter this, move the cursor up one line before exiting.
5481 */
5482 if (exiting && !p_rs)
5483 coord.Y--;
5484 /*
5485 * Position the cursor at the leftmost column of the desired row.
5486 */
5487 SetConsoleCursorPosition(g_hConOut, coord);
5488 }
5489
5490 g_fTermcapMode = FALSE;
5491}
5492#endif /* FEAT_GUI_W32 */
5493
5494
5495#ifdef FEAT_GUI_W32
5496 void
5497mch_write(
Bram Moolenaar1266d672017-02-01 13:43:36 +01005498 char_u *s UNUSED,
5499 int len UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500{
5501 /* never used */
5502}
5503
5504#else
5505
5506/*
5507 * clear `n' chars, starting from `coord'
5508 */
5509 static void
5510clear_chars(
5511 COORD coord,
5512 DWORD n)
5513{
5514 DWORD dwDummy;
5515
5516 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5517 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy);
5518}
5519
5520
5521/*
5522 * Clear the screen
5523 */
5524 static void
5525clear_screen(void)
5526{
5527 g_coord.X = g_coord.Y = 0;
5528 clear_chars(g_coord, Rows * Columns);
5529}
5530
5531
5532/*
5533 * Clear to end of display
5534 */
5535 static void
5536clear_to_end_of_display(void)
5537{
5538 clear_chars(g_coord, (Rows - g_coord.Y - 1)
5539 * Columns + (Columns - g_coord.X));
5540}
5541
5542
5543/*
5544 * Clear to end of line
5545 */
5546 static void
5547clear_to_end_of_line(void)
5548{
5549 clear_chars(g_coord, Columns - g_coord.X);
5550}
5551
5552
5553/*
5554 * Scroll the scroll region up by `cLines' lines
5555 */
5556 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005557scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558{
5559 COORD oldcoord = g_coord;
5560
5561 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5562 delete_lines(cLines);
5563
5564 g_coord = oldcoord;
5565}
5566
5567
5568/*
5569 * Set the scroll region
5570 */
5571 static void
5572set_scroll_region(
5573 unsigned left,
5574 unsigned top,
5575 unsigned right,
5576 unsigned bottom)
5577{
5578 if (left >= right
5579 || top >= bottom
5580 || right > (unsigned) Columns - 1
5581 || bottom > (unsigned) Rows - 1)
5582 return;
5583
5584 g_srScrollRegion.Left = left;
5585 g_srScrollRegion.Top = top;
5586 g_srScrollRegion.Right = right;
5587 g_srScrollRegion.Bottom = bottom;
5588}
5589
5590
5591/*
5592 * Insert `cLines' lines at the current cursor position
5593 */
5594 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005595insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596{
5597 SMALL_RECT source;
5598 COORD dest;
5599 CHAR_INFO fill;
5600
5601 dest.X = 0;
5602 dest.Y = g_coord.Y + cLines;
5603
5604 source.Left = 0;
5605 source.Top = g_coord.Y;
5606 source.Right = g_srScrollRegion.Right;
5607 source.Bottom = g_srScrollRegion.Bottom - cLines;
5608
5609 fill.Char.AsciiChar = ' ';
5610 fill.Attributes = g_attrCurrent;
5611
5612 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5613
5614 /* Here we have to deal with a win32 console flake: If the scroll
5615 * region looks like abc and we scroll c to a and fill with d we get
5616 * cbd... if we scroll block c one line at a time to a, we get cdd...
5617 * vim expects cdd consistently... So we have to deal with that
5618 * here... (this also occurs scrolling the same way in the other
5619 * direction). */
5620
5621 if (source.Bottom < dest.Y)
5622 {
5623 COORD coord;
5624
5625 coord.X = 0;
5626 coord.Y = source.Bottom;
5627 clear_chars(coord, Columns * (dest.Y - source.Bottom));
5628 }
5629}
5630
5631
5632/*
5633 * Delete `cLines' lines at the current cursor position
5634 */
5635 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005636delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637{
5638 SMALL_RECT source;
5639 COORD dest;
5640 CHAR_INFO fill;
5641 int nb;
5642
5643 dest.X = 0;
5644 dest.Y = g_coord.Y;
5645
5646 source.Left = 0;
5647 source.Top = g_coord.Y + cLines;
5648 source.Right = g_srScrollRegion.Right;
5649 source.Bottom = g_srScrollRegion.Bottom;
5650
5651 fill.Char.AsciiChar = ' ';
5652 fill.Attributes = g_attrCurrent;
5653
5654 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5655
5656 /* Here we have to deal with a win32 console flake: If the scroll
5657 * region looks like abc and we scroll c to a and fill with d we get
5658 * cbd... if we scroll block c one line at a time to a, we get cdd...
5659 * vim expects cdd consistently... So we have to deal with that
5660 * here... (this also occurs scrolling the same way in the other
5661 * direction). */
5662
5663 nb = dest.Y + (source.Bottom - source.Top) + 1;
5664
5665 if (nb < source.Top)
5666 {
5667 COORD coord;
5668
5669 coord.X = 0;
5670 coord.Y = nb;
5671 clear_chars(coord, Columns * (source.Top - nb));
5672 }
5673}
5674
5675
5676/*
5677 * Set the cursor position
5678 */
5679 static void
5680gotoxy(
5681 unsigned x,
5682 unsigned y)
5683{
5684 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
5685 return;
5686
5687 /* external cursor coords are 1-based; internal are 0-based */
5688 g_coord.X = x - 1;
5689 g_coord.Y = y - 1;
5690 SetConsoleCursorPosition(g_hConOut, g_coord);
5691}
5692
5693
5694/*
5695 * Set the current text attribute = (foreground | background)
5696 * See ../doc/os_win32.txt for the numbers.
5697 */
5698 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005699textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005701 g_attrCurrent = wAttr & 0xff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702
5703 SetConsoleTextAttribute(g_hConOut, wAttr);
5704}
5705
5706
5707 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005708textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005710 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711
5712 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5713}
5714
5715
5716 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005717textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005718{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005719 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720
5721 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5722}
5723
5724
5725/*
5726 * restore the default text attribute (whatever we started with)
5727 */
5728 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005729normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005730{
5731 textattr(g_attrDefault);
5732}
5733
5734
5735static WORD g_attrPreStandout = 0;
5736
5737/*
5738 * Make the text standout, by brightening it
5739 */
5740 static void
5741standout(void)
5742{
5743 g_attrPreStandout = g_attrCurrent;
5744 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
5745}
5746
5747
5748/*
5749 * Turn off standout mode
5750 */
5751 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005752standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753{
5754 if (g_attrPreStandout)
5755 {
5756 textattr(g_attrPreStandout);
5757 g_attrPreStandout = 0;
5758 }
5759}
5760
5761
5762/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00005763 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764 */
5765 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005766mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767{
5768 char_u *p;
5769 int n;
5770
5771 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
5772 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
5773 if (T_ME[0] == ESC && T_ME[1] == '|')
5774 {
5775 p = T_ME + 2;
5776 n = getdigits(&p);
5777 if (*p == 'm' && n > 0)
5778 {
5779 cterm_normal_fg_color = (n & 0xf) + 1;
5780 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
5781 }
5782 }
5783}
5784
5785
5786/*
5787 * visual bell: flash the screen
5788 */
5789 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005790visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791{
5792 COORD coordOrigin = {0, 0};
5793 WORD attrFlash = ~g_attrCurrent & 0xff;
5794
5795 DWORD dwDummy;
5796 LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD));
5797
5798 if (oldattrs == NULL)
5799 return;
5800 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5801 coordOrigin, &dwDummy);
5802 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
5803 coordOrigin, &dwDummy);
5804
5805 Sleep(15); /* wait for 15 msec */
5806 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5807 coordOrigin, &dwDummy);
5808 vim_free(oldattrs);
5809}
5810
5811
5812/*
5813 * Make the cursor visible or invisible
5814 */
5815 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005816cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817{
5818 s_cursor_visible = fVisible;
5819#ifdef MCH_CURSOR_SHAPE
5820 mch_update_cursor();
5821#endif
5822}
5823
5824
5825/*
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005826 * Write "cbToWrite" bytes in `pchBuf' to the screen.
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005827 * Returns the number of bytes actually written (at least one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005829 static DWORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830write_chars(
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005831 char_u *pchBuf,
5832 DWORD cbToWrite)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833{
5834 COORD coord = g_coord;
5835 DWORD written;
5836
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005837#ifdef FEAT_MBYTE
5838 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5839 {
5840 static WCHAR *unicodebuf = NULL;
5841 static int unibuflen = 0;
5842 int length;
5843 DWORD n, cchwritten, cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005845 length = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite, 0, 0);
5846 if (unicodebuf == NULL || length > unibuflen)
5847 {
5848 vim_free(unicodebuf);
5849 unicodebuf = (WCHAR *)lalloc(length * sizeof(WCHAR), FALSE);
5850 unibuflen = length;
5851 }
5852 MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite,
5853 unicodebuf, unibuflen);
5854
5855 cells = mb_string2cells(pchBuf, cbToWrite);
5856 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
5857 coord, &written);
5858 /* When writing fails or didn't write a single character, pretend one
5859 * character was written, otherwise we get stuck. */
5860 if (WriteConsoleOutputCharacterW(g_hConOut, unicodebuf, length,
5861 coord, &cchwritten) == 0
5862 || cchwritten == 0)
5863 cchwritten = 1;
5864
5865 if (cchwritten == length)
5866 {
5867 written = cbToWrite;
5868 g_coord.X += (SHORT)cells;
5869 }
5870 else
5871 {
5872 char_u *p = pchBuf;
5873 for (n = 0; n < cchwritten; n++)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005874 MB_CPTR_ADV(p);
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005875 written = p - pchBuf;
5876 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
5877 }
5878 }
5879 else
5880#endif
5881 {
5882 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cbToWrite,
5883 coord, &written);
5884 /* When writing fails or didn't write a single character, pretend one
5885 * character was written, otherwise we get stuck. */
5886 if (WriteConsoleOutputCharacter(g_hConOut, (LPCSTR)pchBuf, cbToWrite,
5887 coord, &written) == 0
5888 || written == 0)
5889 written = 1;
5890
5891 g_coord.X += (SHORT) written;
5892 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893
5894 while (g_coord.X > g_srScrollRegion.Right)
5895 {
5896 g_coord.X -= (SHORT) Columns;
5897 if (g_coord.Y < g_srScrollRegion.Bottom)
5898 g_coord.Y++;
5899 }
5900
5901 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5902
5903 return written;
5904}
5905
5906
5907/*
5908 * mch_write(): write the output buffer to the screen, translating ESC
5909 * sequences into calls to console output routines.
5910 */
5911 void
5912mch_write(
5913 char_u *s,
5914 int len)
5915{
5916 s[len] = NUL;
5917
5918 if (!term_console)
5919 {
5920 write(1, s, (unsigned)len);
5921 return;
5922 }
5923
5924 /* translate ESC | sequences into faked bios calls */
5925 while (len--)
5926 {
5927 /* optimization: use one single write_chars for runs of text,
5928 * rather than once per character It ain't curses, but it helps. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005929 DWORD prefix = (DWORD)strcspn((char *)s, "\n\r\b\a\033");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930
5931 if (p_wd)
5932 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005933 WaitForChar(p_wd, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 if (prefix != 0)
5935 prefix = 1;
5936 }
5937
5938 if (prefix != 0)
5939 {
5940 DWORD nWritten;
5941
5942 nWritten = write_chars(s, prefix);
5943#ifdef MCH_WRITE_DUMP
5944 if (fdDump)
5945 {
5946 fputc('>', fdDump);
5947 fwrite(s, sizeof(char_u), nWritten, fdDump);
5948 fputs("<\n", fdDump);
5949 }
5950#endif
5951 len -= (nWritten - 1);
5952 s += nWritten;
5953 }
5954 else if (s[0] == '\n')
5955 {
5956 /* \n, newline: go to the beginning of the next line or scroll */
5957 if (g_coord.Y == g_srScrollRegion.Bottom)
5958 {
5959 scroll(1);
5960 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
5961 }
5962 else
5963 {
5964 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
5965 }
5966#ifdef MCH_WRITE_DUMP
5967 if (fdDump)
5968 fputs("\\n\n", fdDump);
5969#endif
5970 s++;
5971 }
5972 else if (s[0] == '\r')
5973 {
5974 /* \r, carriage return: go to beginning of line */
5975 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
5976#ifdef MCH_WRITE_DUMP
5977 if (fdDump)
5978 fputs("\\r\n", fdDump);
5979#endif
5980 s++;
5981 }
5982 else if (s[0] == '\b')
5983 {
5984 /* \b, backspace: move cursor one position left */
5985 if (g_coord.X > g_srScrollRegion.Left)
5986 g_coord.X--;
5987 else if (g_coord.Y > g_srScrollRegion.Top)
5988 {
5989 g_coord.X = g_srScrollRegion.Right;
5990 g_coord.Y--;
5991 }
5992 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5993#ifdef MCH_WRITE_DUMP
5994 if (fdDump)
5995 fputs("\\b\n", fdDump);
5996#endif
5997 s++;
5998 }
5999 else if (s[0] == '\a')
6000 {
6001 /* \a, bell */
6002 MessageBeep(0xFFFFFFFF);
6003#ifdef MCH_WRITE_DUMP
6004 if (fdDump)
6005 fputs("\\a\n", fdDump);
6006#endif
6007 s++;
6008 }
6009 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
6010 {
6011#ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006012 char_u *old_s = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006014 char_u *p;
6015 int arg1 = 0, arg2 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006016
6017 switch (s[2])
6018 {
6019 /* one or two numeric arguments, separated by ';' */
6020
6021 case '0': case '1': case '2': case '3': case '4':
6022 case '5': case '6': case '7': case '8': case '9':
6023 p = s + 2;
6024 arg1 = getdigits(&p); /* no check for length! */
6025 if (p > s + len)
6026 break;
6027
6028 if (*p == ';')
6029 {
6030 ++p;
6031 arg2 = getdigits(&p); /* no check for length! */
6032 if (p > s + len)
6033 break;
6034
6035 if (*p == 'H')
6036 gotoxy(arg2, arg1);
6037 else if (*p == 'r')
6038 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
6039 }
6040 else if (*p == 'A')
6041 {
6042 /* move cursor up arg1 lines in same column */
6043 gotoxy(g_coord.X + 1,
6044 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
6045 }
6046 else if (*p == 'C')
6047 {
6048 /* move cursor right arg1 columns in same line */
6049 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
6050 g_coord.Y + 1);
6051 }
6052 else if (*p == 'H')
6053 {
6054 gotoxy(1, arg1);
6055 }
6056 else if (*p == 'L')
6057 {
6058 insert_lines(arg1);
6059 }
6060 else if (*p == 'm')
6061 {
6062 if (arg1 == 0)
6063 normvideo();
6064 else
6065 textattr((WORD) arg1);
6066 }
6067 else if (*p == 'f')
6068 {
6069 textcolor((WORD) arg1);
6070 }
6071 else if (*p == 'b')
6072 {
6073 textbackground((WORD) arg1);
6074 }
6075 else if (*p == 'M')
6076 {
6077 delete_lines(arg1);
6078 }
6079
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006080 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 s = p + 1;
6082 break;
6083
6084
6085 /* Three-character escape sequences */
6086
6087 case 'A':
6088 /* move cursor up one line in same column */
6089 gotoxy(g_coord.X + 1,
6090 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
6091 goto got3;
6092
6093 case 'B':
6094 visual_bell();
6095 goto got3;
6096
6097 case 'C':
6098 /* move cursor right one column in same line */
6099 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
6100 g_coord.Y + 1);
6101 goto got3;
6102
6103 case 'E':
6104 termcap_mode_end();
6105 goto got3;
6106
6107 case 'F':
6108 standout();
6109 goto got3;
6110
6111 case 'f':
6112 standend();
6113 goto got3;
6114
6115 case 'H':
6116 gotoxy(1, 1);
6117 goto got3;
6118
6119 case 'j':
6120 clear_to_end_of_display();
6121 goto got3;
6122
6123 case 'J':
6124 clear_screen();
6125 goto got3;
6126
6127 case 'K':
6128 clear_to_end_of_line();
6129 goto got3;
6130
6131 case 'L':
6132 insert_lines(1);
6133 goto got3;
6134
6135 case 'M':
6136 delete_lines(1);
6137 goto got3;
6138
6139 case 'S':
6140 termcap_mode_start();
6141 goto got3;
6142
6143 case 'V':
6144 cursor_visible(TRUE);
6145 goto got3;
6146
6147 case 'v':
6148 cursor_visible(FALSE);
6149 goto got3;
6150
6151 got3:
6152 s += 3;
6153 len -= 2;
6154 }
6155
6156#ifdef MCH_WRITE_DUMP
6157 if (fdDump)
6158 {
6159 fputs("ESC | ", fdDump);
6160 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
6161 fputc('\n', fdDump);
6162 }
6163#endif
6164 }
6165 else
6166 {
6167 /* Write a single character */
6168 DWORD nWritten;
6169
6170 nWritten = write_chars(s, 1);
6171#ifdef MCH_WRITE_DUMP
6172 if (fdDump)
6173 {
6174 fputc('>', fdDump);
6175 fwrite(s, sizeof(char_u), nWritten, fdDump);
6176 fputs("<\n", fdDump);
6177 }
6178#endif
6179
6180 len -= (nWritten - 1);
6181 s += nWritten;
6182 }
6183 }
6184
6185#ifdef MCH_WRITE_DUMP
6186 if (fdDump)
6187 fflush(fdDump);
6188#endif
6189}
6190
6191#endif /* FEAT_GUI_W32 */
6192
6193
6194/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01006195 * Delay for "msec" milliseconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 */
6197 void
6198mch_delay(
6199 long msec,
Bram Moolenaar1266d672017-02-01 13:43:36 +01006200 int ignoreinput UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006201{
6202#ifdef FEAT_GUI_W32
6203 Sleep((int)msec); /* never wait for input */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006204#else /* Console */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 if (ignoreinput)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006206# ifdef FEAT_MZSCHEME
6207 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
6208 {
6209 int towait = p_mzq;
6210
6211 /* if msec is large enough, wait by portions in p_mzq */
6212 while (msec > 0)
6213 {
6214 mzvim_check_threads();
6215 if (msec < towait)
6216 towait = msec;
6217 Sleep(towait);
6218 msec -= towait;
6219 }
6220 }
6221 else
6222# endif
6223 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006224 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006225 WaitForChar(msec, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226#endif
6227}
6228
6229
6230/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01006231 * This version of remove is not scared by a readonly (backup) file.
6232 * This can also remove a symbolic link like Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 * Return 0 for success, -1 for failure.
6234 */
6235 int
6236mch_remove(char_u *name)
6237{
6238#ifdef FEAT_MBYTE
6239 WCHAR *wn = NULL;
6240 int n;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006241#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242
Bram Moolenaar203258c2016-01-17 22:15:16 +01006243 /*
6244 * On Windows, deleting a directory's symbolic link is done by
6245 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
6246 */
6247 if (mch_isdir(name) && mch_is_symbolic_link(name))
6248 return mch_rmdir(name);
6249
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006250 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
6251
6252#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006253 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6254 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006255 wn = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006256 if (wn != NULL)
6257 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258 n = DeleteFileW(wn) ? 0 : -1;
6259 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006260 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261 }
6262 }
6263#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006264 return DeleteFile((LPCSTR)name) ? 0 : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006265}
6266
6267
6268/*
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006269 * Check for an "interrupt signal": CTRL-break or CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270 */
6271 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006272mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273{
6274#ifndef FEAT_GUI_W32 /* never used */
6275 if (g_fCtrlCPressed || g_fCBrkPressed)
6276 {
6277 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6278 got_int = TRUE;
6279 }
6280#endif
6281}
6282
Bram Moolenaaree273972016-01-02 21:11:51 +01006283/* physical RAM to leave for the OS */
6284#define WINNT_RESERVE_BYTES (256*1024*1024)
Bram Moolenaaree273972016-01-02 21:11:51 +01006285
6286/*
6287 * How much main memory in KiB that can be used by VIM.
6288 */
Bram Moolenaaree273972016-01-02 21:11:51 +01006289 long_u
Bram Moolenaar1266d672017-02-01 13:43:36 +01006290mch_total_mem(int special UNUSED)
Bram Moolenaaree273972016-01-02 21:11:51 +01006291{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006292 MEMORYSTATUSEX ms;
6293
Bram Moolenaaree273972016-01-02 21:11:51 +01006294 PlatformId();
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006295 /* Need to use GlobalMemoryStatusEx() when there is more memory than
6296 * what fits in 32 bits. But it's not always available. */
6297 ms.dwLength = sizeof(MEMORYSTATUSEX);
6298 GlobalMemoryStatusEx(&ms);
6299 if (ms.ullAvailVirtual < ms.ullTotalPhys)
Bram Moolenaaree273972016-01-02 21:11:51 +01006300 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006301 /* Process address space fits in physical RAM, use all of it. */
6302 return (long_u)(ms.ullAvailVirtual / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006303 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006304 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
Bram Moolenaaree273972016-01-02 21:11:51 +01006305 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006306 /* Catch old NT box or perverse hardware setup. */
6307 return (long_u)((ms.ullTotalPhys / 2) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006308 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006309 /* Use physical RAM less reserve for OS + data. */
6310 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006311}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313#ifdef FEAT_MBYTE
6314/*
6315 * Same code as below, but with wide functions and no comments.
6316 * Return 0 for success, non-zero for failure.
6317 */
6318 int
6319mch_wrename(WCHAR *wold, WCHAR *wnew)
6320{
6321 WCHAR *p;
6322 int i;
6323 WCHAR szTempFile[_MAX_PATH + 1];
6324 WCHAR szNewPath[_MAX_PATH + 1];
6325 HANDLE hf;
6326
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006327 p = wold;
6328 for (i = 0; wold[i] != NUL; ++i)
6329 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
6330 && wold[i + 1] != 0)
6331 p = wold + i + 1;
6332 if ((int)(wold + i - p) < 8 || p[6] != '~')
6333 return (MoveFileW(wold, wnew) == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334
6335 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
6336 return -1;
6337 *p = NUL;
6338
6339 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
6340 return -2;
6341
6342 if (!DeleteFileW(szTempFile))
6343 return -3;
6344
6345 if (!MoveFileW(wold, szTempFile))
6346 return -4;
6347
6348 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
6349 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6350 return -5;
6351 if (!CloseHandle(hf))
6352 return -6;
6353
6354 if (!MoveFileW(szTempFile, wnew))
6355 {
6356 (void)MoveFileW(szTempFile, wold);
6357 return -7;
6358 }
6359
6360 DeleteFileW(szTempFile);
6361
6362 if (!DeleteFileW(wold))
6363 return -8;
6364
6365 return 0;
6366}
6367#endif
6368
6369
6370/*
6371 * mch_rename() works around a bug in rename (aka MoveFile) in
6372 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
6373 * file whose short file name is "FOO.BAR" (its long file name will
6374 * be correct: "foo.bar~"). Because a file can be accessed by
6375 * either its SFN or its LFN, "foo.bar" has effectively been
6376 * renamed to "foo.bar", which is not at all what was wanted. This
6377 * seems to happen only when renaming files with three-character
6378 * extensions by appending a suffix that does not include ".".
6379 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
6380 *
6381 * There is another problem, which isn't really a bug but isn't right either:
6382 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
6383 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
6384 * service pack 6. Doesn't seem to happen on Windows 98.
6385 *
6386 * Like rename(), returns 0 upon success, non-zero upon failure.
6387 * Should probably set errno appropriately when errors occur.
6388 */
6389 int
6390mch_rename(
6391 const char *pszOldFile,
6392 const char *pszNewFile)
6393{
6394 char szTempFile[_MAX_PATH+1];
6395 char szNewPath[_MAX_PATH+1];
6396 char *pszFilePart;
6397 HANDLE hf;
6398#ifdef FEAT_MBYTE
6399 WCHAR *wold = NULL;
6400 WCHAR *wnew = NULL;
6401 int retval = -1;
6402
6403 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6404 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006405 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
6406 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 if (wold != NULL && wnew != NULL)
6408 retval = mch_wrename(wold, wnew);
6409 vim_free(wold);
6410 vim_free(wnew);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006411 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006412 }
6413#endif
6414
6415 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006416 * No need to play tricks unless the file name contains a "~" as the
6417 * seventh character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006419 pszFilePart = (char *)gettail((char_u *)pszOldFile);
6420 if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~')
6421 return rename(pszOldFile, pszNewFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006422
6423 /* Get base path of new file name. Undocumented feature: If pszNewFile is
6424 * a directory, no error is returned and pszFilePart will be NULL. */
6425 if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0
6426 || pszFilePart == NULL)
6427 return -1;
6428 *pszFilePart = NUL;
6429
6430 /* Get (and create) a unique temporary file name in directory of new file */
6431 if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0)
6432 return -2;
6433
6434 /* blow the temp file away */
6435 if (!DeleteFile(szTempFile))
6436 return -3;
6437
6438 /* rename old file to the temp file */
6439 if (!MoveFile(pszOldFile, szTempFile))
6440 return -4;
6441
6442 /* now create an empty file called pszOldFile; this prevents the operating
6443 * system using pszOldFile as an alias (SFN) if we're renaming within the
6444 * same directory. For example, we're editing a file called
6445 * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
6446 * to filena~1.txt~ (i.e., we're making a backup while writing it), the
6447 * SFN for filena~1.txt~ will be filena~1.txt, by default, which will
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006448 * cause all sorts of problems later in buf_write(). So, we create an
6449 * empty file called filena~1.txt and the system will have to find some
6450 * other SFN for filena~1.txt~, such as filena~2.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451 */
6452 if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW,
6453 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6454 return -5;
6455 if (!CloseHandle(hf))
6456 return -6;
6457
6458 /* rename the temp file to the new file */
6459 if (!MoveFile(szTempFile, pszNewFile))
6460 {
6461 /* Renaming failed. Rename the file back to its old name, so that it
6462 * looks like nothing happened. */
6463 (void)MoveFile(szTempFile, pszOldFile);
6464
6465 return -7;
6466 }
6467
6468 /* Seems to be left around on Novell filesystems */
6469 DeleteFile(szTempFile);
6470
6471 /* finally, remove the empty old file */
6472 if (!DeleteFile(pszOldFile))
6473 return -8;
6474
6475 return 0; /* success */
6476}
6477
6478/*
6479 * Get the default shell for the current hardware platform
6480 */
6481 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006482default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 PlatformId();
6485
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006486 return "cmd.exe";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487}
6488
6489/*
6490 * mch_access() extends access() to do more detailed check on network drives.
6491 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
6492 */
6493 int
6494mch_access(char *n, int p)
6495{
6496 HANDLE hFile;
6497 DWORD am;
6498 int retval = -1; /* default: fail */
6499#ifdef FEAT_MBYTE
6500 WCHAR *wn = NULL;
6501
6502 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006503 wn = enc_to_utf16((char_u *)n, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006504#endif
6505
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006506 if (mch_isdir((char_u *)n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507 {
6508 char TempName[_MAX_PATH + 16] = "";
6509#ifdef FEAT_MBYTE
6510 WCHAR TempNameW[_MAX_PATH + 16] = L"";
6511#endif
6512
6513 if (p & R_OK)
6514 {
6515 /* Read check is performed by seeing if we can do a find file on
6516 * the directory for any file. */
6517#ifdef FEAT_MBYTE
6518 if (wn != NULL)
6519 {
6520 int i;
6521 WIN32_FIND_DATAW d;
6522
6523 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
6524 TempNameW[i] = wn[i];
6525 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
6526 TempNameW[i++] = '\\';
6527 TempNameW[i++] = '*';
6528 TempNameW[i++] = 0;
6529
6530 hFile = FindFirstFileW(TempNameW, &d);
6531 if (hFile == INVALID_HANDLE_VALUE)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006532 goto getout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533 else
6534 (void)FindClose(hFile);
6535 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006536 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006537#endif
6538 {
6539 char *pch;
6540 WIN32_FIND_DATA d;
6541
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006542 vim_strncpy((char_u *)TempName, (char_u *)n, _MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543 pch = TempName + STRLEN(TempName) - 1;
6544 if (*pch != '\\' && *pch != '/')
6545 *++pch = '\\';
6546 *++pch = '*';
6547 *++pch = NUL;
6548
6549 hFile = FindFirstFile(TempName, &d);
6550 if (hFile == INVALID_HANDLE_VALUE)
6551 goto getout;
6552 (void)FindClose(hFile);
6553 }
6554 }
6555
6556 if (p & W_OK)
6557 {
6558 /* Trying to create a temporary file in the directory should catch
6559 * directories on read-only network shares. However, in
6560 * directories whose ACL allows writes but denies deletes will end
6561 * up keeping the temporary file :-(. */
6562#ifdef FEAT_MBYTE
6563 if (wn != NULL)
6564 {
6565 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006566 goto getout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567 else
6568 DeleteFileW(TempNameW);
6569 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006570 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571#endif
6572 {
6573 if (!GetTempFileName(n, "VIM", 0, TempName))
6574 goto getout;
6575 mch_remove((char_u *)TempName);
6576 }
6577 }
6578 }
6579 else
6580 {
6581 /* Trying to open the file for the required access does ACL, read-only
6582 * network share, and file attribute checks. */
6583 am = ((p & W_OK) ? GENERIC_WRITE : 0)
6584 | ((p & R_OK) ? GENERIC_READ : 0);
6585#ifdef FEAT_MBYTE
6586 if (wn != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587 hFile = CreateFileW(wn, am, 0, NULL, OPEN_EXISTING, 0, NULL);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006588 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589#endif
6590 hFile = CreateFile(n, am, 0, NULL, OPEN_EXISTING, 0, NULL);
6591 if (hFile == INVALID_HANDLE_VALUE)
6592 goto getout;
6593 CloseHandle(hFile);
6594 }
6595
6596 retval = 0; /* success */
6597getout:
6598#ifdef FEAT_MBYTE
6599 vim_free(wn);
6600#endif
6601 return retval;
6602}
6603
6604#if defined(FEAT_MBYTE) || defined(PROTO)
6605/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006606 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006607 */
6608 int
Bram Moolenaarb6843a02017-08-02 22:07:12 +02006609mch_open(const char *name, int flags, int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006610{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006611 /* _wopen() does not work with Borland C 5.5: creates a read-only file. */
6612# ifndef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 WCHAR *wn;
6614 int f;
6615
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006616 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006618 wn = enc_to_utf16((char_u *)name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619 if (wn != NULL)
6620 {
6621 f = _wopen(wn, flags, mode);
6622 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006623 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006624 }
6625 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006626# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627
Bram Moolenaarf9e6c3b2014-11-05 18:36:03 +01006628 /* open() can open a file which name is longer than _MAX_PATH bytes
6629 * and shorter than _MAX_PATH characters successfully, but sometimes it
6630 * causes unexpected error in another part. We make it an error explicitly
6631 * here. */
6632 if (strlen(name) >= _MAX_PATH)
6633 return -1;
6634
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635 return open(name, flags, mode);
6636}
6637
6638/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006639 * Version of fopen() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640 */
6641 FILE *
Bram Moolenaarb6843a02017-08-02 22:07:12 +02006642mch_fopen(const char *name, const char *mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643{
6644 WCHAR *wn, *wm;
6645 FILE *f = NULL;
6646
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006647 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648 {
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006649# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006650 /* Work around an annoying assertion in the Microsoft debug CRT
6651 * when mode's text/binary setting doesn't match _get_fmode(). */
6652 char newMode = mode[strlen(mode) - 1];
6653 int oldMode = 0;
6654
6655 _get_fmode(&oldMode);
6656 if (newMode == 't')
6657 _set_fmode(_O_TEXT);
6658 else if (newMode == 'b')
6659 _set_fmode(_O_BINARY);
6660# endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006661 wn = enc_to_utf16((char_u *)name, NULL);
6662 wm = enc_to_utf16((char_u *)mode, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006663 if (wn != NULL && wm != NULL)
6664 f = _wfopen(wn, wm);
6665 vim_free(wn);
6666 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006667
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006668# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006669 _set_fmode(oldMode);
6670# endif
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006671 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 }
6673
Bram Moolenaarf9e6c3b2014-11-05 18:36:03 +01006674 /* fopen() 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 NULL;
6680
Bram Moolenaar071d4272004-06-13 20:20:40 +00006681 return fopen(name, mode);
6682}
6683#endif
6684
6685#ifdef FEAT_MBYTE
6686/*
6687 * SUB STREAM (aka info stream) handling:
6688 *
6689 * NTFS can have sub streams for each file. Normal contents of file is
6690 * stored in the main stream, and extra contents (author information and
6691 * title and so on) can be stored in sub stream. After Windows 2000, user
6692 * can access and store those informations in sub streams via explorer's
6693 * property menuitem in right click menu. Those informations in sub streams
6694 * were lost when copying only the main stream. So we have to copy sub
6695 * streams.
6696 *
6697 * Incomplete explanation:
6698 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
6699 * More useful info and an example:
6700 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
6701 */
6702
6703/*
6704 * Copy info stream data "substream". Read from the file with BackupRead(sh)
6705 * and write to stream "substream" of file "to".
6706 * Errors are ignored.
6707 */
6708 static void
6709copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
6710{
6711 HANDLE hTo;
6712 WCHAR *to_name;
6713
6714 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
6715 wcscpy(to_name, to);
6716 wcscat(to_name, substream);
6717
6718 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
6719 FILE_ATTRIBUTE_NORMAL, NULL);
6720 if (hTo != INVALID_HANDLE_VALUE)
6721 {
6722 long done;
6723 DWORD todo;
6724 DWORD readcnt, written;
6725 char buf[4096];
6726
6727 /* Copy block of bytes at a time. Abort when something goes wrong. */
6728 for (done = 0; done < len; done += written)
6729 {
6730 /* (size_t) cast for Borland C 5.5 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006731 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
6732 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
6734 FALSE, FALSE, context)
6735 || readcnt != todo
6736 || !WriteFile(hTo, buf, todo, &written, NULL)
6737 || written != todo)
6738 break;
6739 }
6740 CloseHandle(hTo);
6741 }
6742
6743 free(to_name);
6744}
6745
6746/*
6747 * Copy info streams from file "from" to file "to".
6748 */
6749 static void
6750copy_infostreams(char_u *from, char_u *to)
6751{
6752 WCHAR *fromw;
6753 WCHAR *tow;
6754 HANDLE sh;
6755 WIN32_STREAM_ID sid;
6756 int headersize;
6757 WCHAR streamname[_MAX_PATH];
6758 DWORD readcount;
6759 void *context = NULL;
6760 DWORD lo, hi;
6761 int len;
6762
6763 /* Convert the file names to wide characters. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006764 fromw = enc_to_utf16(from, NULL);
6765 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006766 if (fromw != NULL && tow != NULL)
6767 {
6768 /* Open the file for reading. */
6769 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
6770 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
6771 if (sh != INVALID_HANDLE_VALUE)
6772 {
6773 /* Use BackupRead() to find the info streams. Repeat until we
6774 * have done them all.*/
6775 for (;;)
6776 {
6777 /* Get the header to find the length of the stream name. If
6778 * the "readcount" is zero we have done all info streams. */
6779 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006780 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
6782 &readcount, FALSE, FALSE, &context)
6783 || readcount == 0)
6784 break;
6785
6786 /* We only deal with streams that have a name. The normal
6787 * file data appears to be without a name, even though docs
6788 * suggest it is called "::$DATA". */
6789 if (sid.dwStreamNameSize > 0)
6790 {
6791 /* Read the stream name. */
6792 if (!BackupRead(sh, (LPBYTE)streamname,
6793 sid.dwStreamNameSize,
6794 &readcount, FALSE, FALSE, &context))
6795 break;
6796
6797 /* Copy an info stream with a name ":anything:$DATA".
6798 * Skip "::$DATA", it has no stream name (examples suggest
6799 * it might be used for the normal file contents).
6800 * Note that BackupRead() counts bytes, but the name is in
6801 * wide characters. */
6802 len = readcount / sizeof(WCHAR);
6803 streamname[len] = 0;
6804 if (len > 7 && wcsicmp(streamname + len - 6,
6805 L":$DATA") == 0)
6806 {
6807 streamname[len - 6] = 0;
6808 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006809 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006810 }
6811 }
6812
6813 /* Advance to the next stream. We might try seeking too far,
6814 * but BackupSeek() doesn't skip over stream borders, thus
6815 * that's OK. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006816 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817 &lo, &hi, &context);
6818 }
6819
6820 /* Clear the context. */
6821 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
6822
6823 CloseHandle(sh);
6824 }
6825 }
6826 vim_free(fromw);
6827 vim_free(tow);
6828}
6829#endif
6830
6831/*
6832 * Copy file attributes from file "from" to file "to".
6833 * For Windows NT and later we copy info streams.
6834 * Always returns zero, errors are ignored.
6835 */
6836 int
6837mch_copy_file_attribute(char_u *from, char_u *to)
6838{
6839#ifdef FEAT_MBYTE
6840 /* File streams only work on Windows NT and later. */
6841 PlatformId();
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006842 copy_infostreams(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006843#endif
6844 return 0;
6845}
6846
6847#if defined(MYRESETSTKOFLW) || defined(PROTO)
6848/*
6849 * Recreate a destroyed stack guard page in win32.
6850 * Written by Benjamin Peterson.
6851 */
6852
6853/* These magic numbers are from the MS header files */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854#define MIN_STACK_WINNT 2
6855
6856/*
6857 * This function does the same thing as _resetstkoflw(), which is only
6858 * available in DevStudio .net and later.
6859 * Returns 0 for failure, 1 for success.
6860 */
6861 int
6862myresetstkoflw(void)
6863{
6864 BYTE *pStackPtr;
6865 BYTE *pGuardPage;
6866 BYTE *pStackBase;
6867 BYTE *pLowestPossiblePage;
6868 MEMORY_BASIC_INFORMATION mbi;
6869 SYSTEM_INFO si;
6870 DWORD nPageSize;
6871 DWORD dummy;
6872
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873 PlatformId();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006874
6875 /* We need to know the system page size. */
6876 GetSystemInfo(&si);
6877 nPageSize = si.dwPageSize;
6878
6879 /* ...and the current stack pointer */
6880 pStackPtr = (BYTE*)_alloca(1);
6881
6882 /* ...and the base of the stack. */
6883 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
6884 return 0;
6885 pStackBase = (BYTE*)mbi.AllocationBase;
6886
6887 /* ...and the page thats min_stack_req pages away from stack base; this is
6888 * the lowest page we could use. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006889 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006892 /* We want the first committed page in the stack Start at the stack
6893 * base and move forward through memory until we find a committed block.
6894 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006895 BYTE *pBlock = pStackBase;
6896
Bram Moolenaara466c992005-07-09 21:03:22 +00006897 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006898 {
6899 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
6900 return 0;
6901
6902 pBlock += mbi.RegionSize;
6903
6904 if (mbi.State & MEM_COMMIT)
6905 break;
6906 }
6907
6908 /* mbi now describes the first committed block in the stack. */
6909 if (mbi.Protect & PAGE_GUARD)
6910 return 1;
6911
6912 /* decide where the guard page should start */
6913 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
6914 pGuardPage = pLowestPossiblePage;
6915 else
6916 pGuardPage = (BYTE*)mbi.BaseAddress;
6917
6918 /* allocate the guard page */
6919 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
6920 return 0;
6921
6922 /* apply the guard attribute to the page */
6923 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
6924 &dummy))
6925 return 0;
6926 }
6927
6928 return 1;
6929}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006930#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006931
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006932
6933#if defined(FEAT_MBYTE) || defined(PROTO)
6934/*
6935 * The command line arguments in UCS2
6936 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006937static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006938static LPWSTR *ArglistW = NULL;
6939static int global_argc = 0;
6940static char **global_argv;
6941
6942static int used_file_argc = 0; /* last argument in global_argv[] used
6943 for the argument list. */
6944static int *used_file_indexes = NULL; /* indexes in global_argv[] for
6945 command line arguments added to
6946 the argument list */
6947static int used_file_count = 0; /* nr of entries in used_file_indexes */
6948static int used_file_literal = FALSE; /* take file names literally */
6949static int used_file_full_path = FALSE; /* file name was full path */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006950static int used_file_diff_mode = FALSE; /* file name was with diff mode */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006951static int used_alist_count = 0;
6952
6953
6954/*
6955 * Get the command line arguments. Unicode version.
6956 * Returns argc. Zero when something fails.
6957 */
6958 int
6959get_cmd_argsW(char ***argvp)
6960{
6961 char **argv = NULL;
6962 int argc = 0;
6963 int i;
6964
Bram Moolenaar14993322014-09-09 12:25:33 +02006965 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006966 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
6967 if (ArglistW != NULL)
6968 {
6969 argv = malloc((nArgsW + 1) * sizeof(char *));
6970 if (argv != NULL)
6971 {
6972 argc = nArgsW;
6973 argv[argc] = NULL;
6974 for (i = 0; i < argc; ++i)
6975 {
6976 int len;
6977
6978 /* Convert each Unicode argument to the current codepage. */
6979 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006980 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006981 (LPSTR *)&argv[i], &len, 0, 0);
6982 if (argv[i] == NULL)
6983 {
6984 /* Out of memory, clear everything. */
6985 while (i > 0)
6986 free(argv[--i]);
6987 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01006988 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006989 argc = 0;
6990 }
6991 }
6992 }
6993 }
6994
6995 global_argc = argc;
6996 global_argv = argv;
6997 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02006998 {
6999 if (used_file_indexes != NULL)
7000 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007001 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02007002 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007003
7004 if (argvp != NULL)
7005 *argvp = argv;
7006 return argc;
7007}
7008
7009 void
7010free_cmd_argsW(void)
7011{
7012 if (ArglistW != NULL)
7013 {
7014 GlobalFree(ArglistW);
7015 ArglistW = NULL;
7016 }
7017}
7018
7019/*
7020 * Remember "name" is an argument that was added to the argument list.
7021 * This avoids that we have to re-parse the argument list when fix_arg_enc()
7022 * is called.
7023 */
7024 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007025used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007026{
7027 int i;
7028
7029 if (used_file_indexes == NULL)
7030 return;
7031 for (i = used_file_argc + 1; i < global_argc; ++i)
7032 if (STRCMP(global_argv[i], name) == 0)
7033 {
7034 used_file_argc = i;
7035 used_file_indexes[used_file_count++] = i;
7036 break;
7037 }
7038 used_file_literal = literal;
7039 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007040 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007041}
7042
7043/*
7044 * Remember the length of the argument list as it was. If it changes then we
7045 * leave it alone when 'encoding' is set.
7046 */
7047 void
7048set_alist_count(void)
7049{
7050 used_alist_count = GARGCOUNT;
7051}
7052
7053/*
7054 * Fix the encoding of the command line arguments. Invoked when 'encoding'
7055 * has been changed while starting up. Use the UCS-2 command line arguments
7056 * and convert them to 'encoding'.
7057 */
7058 void
7059fix_arg_enc(void)
7060{
7061 int i;
7062 int idx;
7063 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007064 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007065
7066 /* Safety checks:
7067 * - if argument count differs between the wide and non-wide argument
7068 * list, something must be wrong.
7069 * - the file name arguments must have been located.
7070 * - the length of the argument list wasn't changed by the user.
7071 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007072 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007073 || ArglistW == NULL
7074 || used_file_indexes == NULL
7075 || used_file_count == 0
7076 || used_alist_count != GARGCOUNT)
7077 return;
7078
Bram Moolenaar86b68352004-12-27 21:59:20 +00007079 /* Remember the buffer numbers for the arguments. */
7080 fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT);
7081 if (fnum_list == NULL)
7082 return; /* out of memory */
7083 for (i = 0; i < GARGCOUNT; ++i)
7084 fnum_list[i] = GARGLIST[i].ae_fnum;
7085
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007086 /* Clear the argument list. Make room for the new arguments. */
7087 alist_clear(&global_alist);
7088 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007089 return; /* out of memory */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007090
7091 for (i = 0; i < used_file_count; ++i)
7092 {
7093 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007094 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007095 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007096 {
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007097 int literal = used_file_literal;
7098
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007099#ifdef FEAT_DIFF
7100 /* When using diff mode may need to concatenate file name to
7101 * directory name. Just like it's done in main(). */
7102 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
7103 && !mch_isdir(alist_name(&GARGLIST[0])))
7104 {
7105 char_u *r;
7106
7107 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
7108 if (r != NULL)
7109 {
7110 vim_free(str);
7111 str = r;
7112 }
7113 }
7114#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00007115 /* Re-use the old buffer by renaming it. When not using literal
7116 * names it's done by alist_expand() below. */
7117 if (used_file_literal)
7118 buf_set_name(fnum_list[i], str);
7119
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007120 /* Check backtick literal. backtick literal is already expanded in
7121 * main.c, so this part add str as literal. */
7122 if (literal == FALSE)
7123 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02007124 size_t len = STRLEN(str);
7125
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007126 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
7127 literal = TRUE;
7128 }
7129 alist_add(&global_alist, str, literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007130 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007131 }
7132
7133 if (!used_file_literal)
7134 {
7135 /* Now expand wildcards in the arguments. */
7136 /* Temporarily add '(' and ')' to 'isfname'. These are valid
7137 * filename characters but are excluded from 'isfname' to make
7138 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
7139 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +00007140 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007141 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
7142 }
7143
7144 /* If wildcard expansion failed, we are editing the first file of the
7145 * arglist and there is no file name: Edit the first argument now. */
7146 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7147 {
7148 do_cmdline_cmd((char_u *)":rewind");
7149 if (GARGCOUNT == 1 && used_file_full_path)
7150 (void)vim_chdirfile(alist_name(&GARGLIST[0]));
7151 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007152
7153 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007154}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155#endif
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007156
7157 int
7158mch_setenv(char *var, char *value, int x)
7159{
7160 char_u *envbuf;
7161
7162 envbuf = alloc((unsigned)(STRLEN(var) + STRLEN(value) + 2));
7163 if (envbuf == NULL)
7164 return -1;
7165
7166 sprintf((char *)envbuf, "%s=%s", var, value);
7167
7168#ifdef FEAT_MBYTE
7169 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
7170 {
7171 WCHAR *p = enc_to_utf16(envbuf, NULL);
7172
7173 vim_free(envbuf);
7174 if (p == NULL)
7175 return -1;
7176 _wputenv(p);
7177# ifdef libintl_wputenv
7178 libintl_wputenv(p);
7179# endif
7180 /* Unlike Un*x systems, we can free the string for _wputenv(). */
7181 vim_free(p);
7182 }
7183 else
7184#endif
7185 {
7186 _putenv((char *)envbuf);
7187# ifdef libintl_putenv
7188 libintl_putenv((char *)envbuf);
7189# endif
7190 /* Unlike Un*x systems, we can free the string for _putenv(). */
7191 vim_free(envbuf);
7192 }
7193
7194 return 0;
7195}