blob: 43ad1026d5d0ef2203438106729f69b881f5ac36 [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
Bram Moolenaar4f974752019-02-17 17:44:42 +010013 * the console version only, so there is a lot of "#ifndef FEAT_GUI_MSWIN".
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
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
Bram Moolenaar0f873732019-12-05 20:28:46 +010033// cproto fails on missing include files
Bram Moolenaar82881492012-11-20 16:53:39 +010034#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
Bram Moolenaar4f974752019-02-17 17:44:42 +010048# if defined(FEAT_TITLE) && !defined(FEAT_GUI_MSWIN)
Bram Moolenaar82881492012-11-20 16:53:39 +010049# 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
Bram Moolenaar0f873732019-12-05 20:28:46 +010085// Record all output and all keyboard & mouse input
86// #define MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +000087
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
Bram Moolenaar912bc4a2019-12-01 18:58:11 +010097# 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;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100146# define __stdcall // empty
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147#endif
148
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200149#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100150// Win32 Console handles for input and output
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151static HANDLE g_hConIn = INVALID_HANDLE_VALUE;
152static HANDLE g_hConOut = INVALID_HANDLE_VALUE;
153
Bram Moolenaar0f873732019-12-05 20:28:46 +0100154// Win32 Screen buffer,coordinate,console I/O information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155static SMALL_RECT g_srScrollRegion;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100156static COORD g_coord; // 0-based, but external coords are 1-based
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157
Bram Moolenaar0f873732019-12-05 20:28:46 +0100158// The attribute of the screen when the editor was started
159static WORD g_attrDefault = 7; // lightgray text on black background
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160static WORD g_attrCurrent;
161
Bram Moolenaar0f873732019-12-05 20:28:46 +0100162static int g_fCBrkPressed = FALSE; // set by ctrl-break interrupt
163static int g_fCtrlCPressed = FALSE; // set when ctrl-C or ctrl-break detected
164static int g_fForceExit = FALSE; // set when forcefully exiting
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166static void scroll(unsigned cLines);
167static void set_scroll_region(unsigned left, unsigned top,
168 unsigned right, unsigned bottom);
Bram Moolenaar6982f422019-02-16 16:48:01 +0100169static void set_scroll_region_tb(unsigned top, unsigned bottom);
170static void set_scroll_region_lr(unsigned left, unsigned right);
171static void insert_lines(unsigned cLines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172static void delete_lines(unsigned cLines);
173static void gotoxy(unsigned x, unsigned y);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174static void standout(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175static int s_cursor_visible = TRUE;
176static int did_create_conin = FALSE;
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200177#endif
178#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179static int s_dont_use_vimrun = TRUE;
180static int need_vimrun_warning = FALSE;
181static char *vimrun_path = "vimrun ";
182#endif
183
Bram Moolenaar12b559e2013-06-12 22:41:37 +0200184static int win32_getattrs(char_u *name);
185static int win32_setattrs(char_u *name, int attrs);
186static int win32_set_archive(char_u *name);
187
Bram Moolenaard9ef1b82019-02-13 19:23:10 +0100188static int conpty_working = 0;
Bram Moolenaar57da6982019-09-13 22:30:11 +0200189static int conpty_type = 0;
Bram Moolenaard9ef1b82019-02-13 19:23:10 +0100190static int conpty_stable = 0;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +0200191static int conpty_fix_type = 0;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100192static void vtp_flag_init();
193
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200194#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar6902c0e2019-02-16 14:07:37 +0100195static int vtp_working = 0;
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100196static void vtp_init();
197static void vtp_exit();
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100198static void vtp_sgr_bulk(int arg);
199static void vtp_sgr_bulks(int argc, int *argv);
200
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200201static int wt_working = 0;
202static void wt_init();
203
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100204static guicolor_T save_console_bg_rgb;
205static guicolor_T save_console_fg_rgb;
Bram Moolenaardf543822020-01-30 11:53:59 +0100206static guicolor_T store_console_bg_rgb;
207static guicolor_T store_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100208
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +0200209static int g_color_index_bg = 0;
210static int g_color_index_fg = 7;
211
212# ifdef FEAT_TERMGUICOLORS
213static int default_console_color_bg = 0x000000; // black
214static int default_console_color_fg = 0xc0c0c0; // white
215# endif
216
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100217# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +0200218# define USE_VTP (vtp_working && is_term_win32() && (p_tgc || (!p_tgc && t_colors >= 256)))
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200219# define USE_WT (wt_working)
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100220# else
221# define USE_VTP 0
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200222# define USE_WT 0
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100223# endif
224
225static void set_console_color_rgb(void);
226static void reset_console_color_rgb(void);
Bram Moolenaardf543822020-01-30 11:53:59 +0100227static void restore_console_color_rgb(void);
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100228#endif
229
Bram Moolenaar0f873732019-12-05 20:28:46 +0100230// This flag is newly created from Windows 10
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100231#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
232# define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
233#endif
234
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200235#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100236static int suppress_winsize = 1; // don't fiddle with console
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237#endif
238
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200239static char_u *exe_path = NULL;
240
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100241static BOOL win8_or_later = FALSE;
242
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200243# if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
244# define UChar UnicodeChar
245# else
246# define UChar uChar.UnicodeChar
247# endif
248
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200249#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100250// Dynamic loading for portability
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100251typedef struct _DYN_CONSOLE_SCREEN_BUFFER_INFOEX
252{
253 ULONG cbSize;
254 COORD dwSize;
255 COORD dwCursorPosition;
256 WORD wAttributes;
257 SMALL_RECT srWindow;
258 COORD dwMaximumWindowSize;
259 WORD wPopupAttributes;
260 BOOL bFullscreenSupported;
261 COLORREF ColorTable[16];
262} DYN_CONSOLE_SCREEN_BUFFER_INFOEX, *PDYN_CONSOLE_SCREEN_BUFFER_INFOEX;
263typedef BOOL (WINAPI *PfnGetConsoleScreenBufferInfoEx)(HANDLE, PDYN_CONSOLE_SCREEN_BUFFER_INFOEX);
264static PfnGetConsoleScreenBufferInfoEx pGetConsoleScreenBufferInfoEx;
265typedef BOOL (WINAPI *PfnSetConsoleScreenBufferInfoEx)(HANDLE, PDYN_CONSOLE_SCREEN_BUFFER_INFOEX);
266static PfnSetConsoleScreenBufferInfoEx pSetConsoleScreenBufferInfoEx;
267static BOOL has_csbiex = FALSE;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100268#endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100269
270/*
271 * Get version number including build number
272 */
273typedef BOOL (WINAPI *PfnRtlGetVersion)(LPOSVERSIONINFOW);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100274#define MAKE_VER(major, minor, build) \
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100275 (((major) << 24) | ((minor) << 16) | (build))
276
277 static DWORD
278get_build_number(void)
279{
280 OSVERSIONINFOW osver = {sizeof(OSVERSIONINFOW)};
281 HMODULE hNtdll;
282 PfnRtlGetVersion pRtlGetVersion;
283 DWORD ver = MAKE_VER(0, 0, 0);
284
285 hNtdll = GetModuleHandle("ntdll.dll");
286 if (hNtdll != NULL)
287 {
288 pRtlGetVersion =
289 (PfnRtlGetVersion)GetProcAddress(hNtdll, "RtlGetVersion");
290 pRtlGetVersion(&osver);
291 ver = MAKE_VER(min(osver.dwMajorVersion, 255),
292 min(osver.dwMinorVersion, 255),
293 min(osver.dwBuildNumber, 32767));
294 }
295 return ver;
296}
297
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200298#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200299 static BOOL
300is_ambiwidth_event(
301 INPUT_RECORD *ir)
302{
303 return ir->EventType == KEY_EVENT
304 && ir->Event.KeyEvent.bKeyDown
305 && ir->Event.KeyEvent.wRepeatCount == 1
306 && ir->Event.KeyEvent.wVirtualKeyCode == 0x12
307 && ir->Event.KeyEvent.wVirtualScanCode == 0x38
308 && ir->Event.KeyEvent.UChar == 0
309 && ir->Event.KeyEvent.dwControlKeyState == 2;
310}
311
312 static void
313make_ambiwidth_event(
314 INPUT_RECORD *down,
315 INPUT_RECORD *up)
316{
317 down->Event.KeyEvent.wVirtualKeyCode = 0;
318 down->Event.KeyEvent.wVirtualScanCode = 0;
319 down->Event.KeyEvent.UChar = up->Event.KeyEvent.UChar;
320 down->Event.KeyEvent.dwControlKeyState = 0;
321}
322
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100323/*
324 * Version of ReadConsoleInput() that works with IME.
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100325 * Works around problems on Windows 8.
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100326 */
327 static BOOL
328read_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100329 HANDLE hInput,
330 INPUT_RECORD *lpBuffer,
331 DWORD nLength,
332 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100333{
334 enum
335 {
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100336 IRSIZE = 10
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100337 };
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100338 static INPUT_RECORD s_irCache[IRSIZE];
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100339 static DWORD s_dwIndex = 0;
340 static DWORD s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100341 DWORD dwEvents;
Bram Moolenaardd415a62014-02-05 14:02:27 +0100342 int head;
343 int tail;
344 int i;
Bram Moolenaarbc970da2020-04-26 19:00:07 +0200345 static INPUT_RECORD s_irPseudo;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100346
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200347 if (nLength == -2)
348 return (s_dwMax > 0) ? TRUE : FALSE;
349
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100350 if (!win8_or_later)
351 {
352 if (nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200353 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
354 return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents);
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100355 }
356
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100357 if (s_dwMax == 0)
358 {
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200359 if (!USE_WT && nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200360 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200361 GetNumberOfConsoleInputEvents(hInput, &dwEvents);
362 if (dwEvents == 0 && nLength == -1)
363 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
364 ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents);
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100365 s_dwIndex = 0;
366 s_dwMax = dwEvents;
367 if (dwEvents == 0)
368 {
369 *lpEvents = 0;
370 return TRUE;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100371 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100372
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200373 for (i = s_dwIndex; i < (int)s_dwMax - 1; ++i)
374 if (is_ambiwidth_event(&s_irCache[i]))
375 make_ambiwidth_event(&s_irCache[i], &s_irCache[i + 1]);
376
Bram Moolenaardd415a62014-02-05 14:02:27 +0100377 if (s_dwMax > 1)
378 {
379 head = 0;
380 tail = s_dwMax - 1;
381 while (head != tail)
382 {
383 if (s_irCache[head].EventType == WINDOW_BUFFER_SIZE_EVENT
384 && s_irCache[head + 1].EventType
385 == WINDOW_BUFFER_SIZE_EVENT)
386 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100387 // Remove duplicate event to avoid flicker.
Bram Moolenaardd415a62014-02-05 14:02:27 +0100388 for (i = head; i < tail; ++i)
389 s_irCache[i] = s_irCache[i + 1];
390 --tail;
391 continue;
392 }
393 head++;
394 }
395 s_dwMax = tail + 1;
396 }
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100397 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100398
Bram Moolenaarbc970da2020-04-26 19:00:07 +0200399 if (s_irCache[s_dwIndex].EventType == KEY_EVENT)
400 {
401 if (s_irCache[s_dwIndex].Event.KeyEvent.wRepeatCount > 1)
402 {
403 s_irPseudo = s_irCache[s_dwIndex];
404 s_irPseudo.Event.KeyEvent.wRepeatCount = 1;
405 s_irCache[s_dwIndex].Event.KeyEvent.wRepeatCount--;
406 *lpBuffer = s_irPseudo;
407 *lpEvents = 1;
408 return TRUE;
409 }
410 }
411
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100412 *lpBuffer = s_irCache[s_dwIndex];
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200413 if (!(nLength == -1 || nLength == -2) && ++s_dwIndex >= s_dwMax)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100414 s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100415 *lpEvents = 1;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100416 return TRUE;
417}
418
419/*
420 * Version of PeekConsoleInput() that works with IME.
421 */
422 static BOOL
423peek_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100424 HANDLE hInput,
425 INPUT_RECORD *lpBuffer,
Bram Moolenaarbd67aac2019-09-21 23:09:04 +0200426 DWORD nLength UNUSED,
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100427 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100428{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100429 return read_console_input(hInput, lpBuffer, -1, lpEvents);
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100430}
431
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100432# ifdef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200433 static DWORD
434msg_wait_for_multiple_objects(
435 DWORD nCount,
436 LPHANDLE pHandles,
437 BOOL fWaitAll,
438 DWORD dwMilliseconds,
439 DWORD dwWakeMask)
440{
441 if (read_console_input(NULL, NULL, -2, NULL))
442 return WAIT_OBJECT_0;
443 return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll,
444 dwMilliseconds, dwWakeMask);
445}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100446# endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200447
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100448# ifndef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200449 static DWORD
450wait_for_single_object(
451 HANDLE hHandle,
452 DWORD dwMilliseconds)
453{
454 if (read_console_input(NULL, NULL, -2, NULL))
455 return WAIT_OBJECT_0;
456 return WaitForSingleObject(hHandle, dwMilliseconds);
457}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100458# endif
459#endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200460
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 static void
462get_exe_name(void)
463{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100464 // Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned
465 // as the maximum length that works (plus a NUL byte).
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100466#define MAX_ENV_PATH_LEN 8192
467 char temp[MAX_ENV_PATH_LEN];
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200468 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469
470 if (exe_name == NULL)
471 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100472 // store the name of the executable, may be used for $VIM
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100473 GetModuleFileName(NULL, temp, MAX_ENV_PATH_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 if (*temp != NUL)
475 exe_name = FullName_save((char_u *)temp, FALSE);
476 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000477
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200478 if (exe_path == NULL && exe_name != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000479 {
Bram Moolenaar71ccd032020-06-12 22:59:11 +0200480 exe_path = vim_strnsave(exe_name, gettail_sep(exe_name) - exe_name);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200481 if (exe_path != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000482 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100483 // Append our starting directory to $PATH, so that when doing
484 // "!xxd" it's found in our starting directory. Needed because
485 // SearchPath() also looks there.
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200486 p = mch_getenv("PATH");
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100487 if (p == NULL
488 || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200489 {
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100490 if (p == NULL || *p == NUL)
491 temp[0] = NUL;
492 else
493 {
494 STRCPY(temp, p);
495 STRCAT(temp, ";");
496 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200497 STRCAT(temp, exe_path);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100498 vim_setenv((char_u *)"PATH", (char_u *)temp);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200499 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000500 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000501 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502}
503
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200504/*
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100505 * Unescape characters in "p" that appear in "escaped".
506 */
507 static void
508unescape_shellxquote(char_u *p, char_u *escaped)
509{
Bram Moolenaar4336cdf2012-02-29 13:58:47 +0100510 int l = (int)STRLEN(p);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100511 int n;
512
513 while (*p != NUL)
514 {
515 if (*p == '^' && vim_strchr(escaped, p[1]) != NULL)
516 mch_memmove(p, p + 1, l--);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100517 n = (*mb_ptr2len)(p);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100518 p += n;
519 l -= n;
520 }
521}
522
523/*
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200524 * Load library "name".
525 */
526 HINSTANCE
527vimLoadLib(char *name)
528{
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200529 HINSTANCE dll = NULL;
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200530
Bram Moolenaar0f873732019-12-05 20:28:46 +0100531 // NOTE: Do not use mch_dirname() and mch_chdir() here, they may call
532 // vimLoadLib() recursively, which causes a stack overflow.
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200533 if (exe_path == NULL)
534 get_exe_name();
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200535 if (exe_path != NULL)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200536 {
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200537 WCHAR old_dirw[MAXPATHL];
538
539 if (GetCurrentDirectoryW(MAXPATHL, old_dirw) != 0)
540 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100541 // Change directory to where the executable is, both to make
542 // sure we find a .dll there and to avoid looking for a .dll
543 // in the current directory.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100544 SetCurrentDirectory((LPCSTR)exe_path);
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200545 dll = LoadLibrary(name);
546 SetCurrentDirectoryW(old_dirw);
547 return dll;
548 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200549 }
550 return dll;
551}
552
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200553#if defined(VIMDLL) || defined(PROTO)
554/*
555 * Check if the current executable file is for the GUI subsystem.
556 */
557 int
558mch_is_gui_executable(void)
559{
560 PBYTE pImage = (PBYTE)GetModuleHandle(NULL);
561 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)pImage;
562 PIMAGE_NT_HEADERS pPE;
563
564 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
565 return FALSE;
566 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
567 if (pPE->Signature != IMAGE_NT_SIGNATURE)
568 return FALSE;
569 if (pPE->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI)
570 return TRUE;
571 return FALSE;
572}
573#endif
574
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100575#if defined(DYNAMIC_ICONV) || defined(DYNAMIC_GETTEXT) || defined(PROTO)
576/*
577 * Get related information about 'funcname' which is imported by 'hInst'.
578 * If 'info' is 0, return the function address.
579 * If 'info' is 1, return the module name which the function is imported from.
580 */
581 static void *
582get_imported_func_info(HINSTANCE hInst, const char *funcname, int info)
583{
584 PBYTE pImage = (PBYTE)hInst;
585 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)hInst;
586 PIMAGE_NT_HEADERS pPE;
587 PIMAGE_IMPORT_DESCRIPTOR pImpDesc;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100588 PIMAGE_THUNK_DATA pIAT; // Import Address Table
589 PIMAGE_THUNK_DATA pINT; // Import Name Table
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100590 PIMAGE_IMPORT_BY_NAME pImpName;
591
592 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
593 return NULL;
594 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
595 if (pPE->Signature != IMAGE_NT_SIGNATURE)
596 return NULL;
597 pImpDesc = (PIMAGE_IMPORT_DESCRIPTOR)(pImage
598 + pPE->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT]
599 .VirtualAddress);
600 for (; pImpDesc->FirstThunk; ++pImpDesc)
601 {
602 if (!pImpDesc->OriginalFirstThunk)
603 continue;
604 pIAT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->FirstThunk);
605 pINT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->OriginalFirstThunk);
606 for (; pIAT->u1.Function; ++pIAT, ++pINT)
607 {
608 if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
609 continue;
610 pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage
611 + (UINT_PTR)(pINT->u1.AddressOfData));
612 if (strcmp((char *)pImpName->Name, funcname) == 0)
613 {
614 switch (info)
615 {
616 case 0:
617 return (void *)pIAT->u1.Function;
618 case 1:
619 return (void *)(pImage + pImpDesc->Name);
620 default:
621 return NULL;
622 }
623 }
624 }
625 }
626 return NULL;
627}
628
629/*
630 * Get the module handle which 'funcname' in 'hInst' is imported from.
631 */
632 HINSTANCE
633find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname)
634{
635 char *modulename;
636
637 modulename = (char *)get_imported_func_info(hInst, funcname, 1);
638 if (modulename != NULL)
639 return GetModuleHandleA(modulename);
640 return NULL;
641}
642
643/*
644 * Get the address of 'funcname' which is imported by 'hInst' DLL.
645 */
646 void *
647get_dll_import_func(HINSTANCE hInst, const char *funcname)
648{
649 return get_imported_func_info(hInst, funcname, 0);
650}
651#endif
652
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653#if defined(DYNAMIC_GETTEXT) || defined(PROTO)
654# ifndef GETTEXT_DLL
655# define GETTEXT_DLL "libintl.dll"
Bram Moolenaar7554c542018-10-06 15:03:15 +0200656# define GETTEXT_DLL_ALT1 "libintl-8.dll"
657# define GETTEXT_DLL_ALT2 "intl.dll"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +0100659// Dummy functions
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000660static char *null_libintl_gettext(const char *);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200661static char *null_libintl_ngettext(const char *, const char *, unsigned long n);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000662static char *null_libintl_textdomain(const char *);
663static char *null_libintl_bindtextdomain(const char *, const char *);
664static char *null_libintl_bind_textdomain_codeset(const char *, const char *);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100665static int null_libintl_wputenv(const wchar_t *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200667static HINSTANCE hLibintlDLL = NULL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000668char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200669char *(*dyn_libintl_ngettext)(const char *, const char *, unsigned long n)
670 = null_libintl_ngettext;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000671char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
672char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000674char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *)
675 = null_libintl_bind_textdomain_codeset;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100676int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677
678 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100679dyn_libintl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680{
681 int i;
682 static struct
683 {
684 char *name;
685 FARPROC *ptr;
686 } libintl_entry[] =
687 {
688 {"gettext", (FARPROC*)&dyn_libintl_gettext},
Bram Moolenaaree695f72016-08-03 22:08:45 +0200689 {"ngettext", (FARPROC*)&dyn_libintl_ngettext},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 {"textdomain", (FARPROC*)&dyn_libintl_textdomain},
691 {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
692 {NULL, NULL}
693 };
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100694 HINSTANCE hmsvcrt;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695
Bram Moolenaar7554c542018-10-06 15:03:15 +0200696 // No need to initialize twice.
697 if (hLibintlDLL != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 return 1;
Bram Moolenaar7554c542018-10-06 15:03:15 +0200699 // Load gettext library (libintl.dll and other names).
Bram Moolenaar923e43b2016-01-28 15:07:38 +0100700 hLibintlDLL = vimLoadLib(GETTEXT_DLL);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100701# ifdef GETTEXT_DLL_ALT1
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100702 if (!hLibintlDLL)
Bram Moolenaar7554c542018-10-06 15:03:15 +0200703 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100704# endif
705# ifdef GETTEXT_DLL_ALT2
Bram Moolenaar7554c542018-10-06 15:03:15 +0200706 if (!hLibintlDLL)
707 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT2);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100708# endif
Bram Moolenaar938ee832016-01-24 15:36:03 +0100709 if (!hLibintlDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200711 if (p_verbose > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200713 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100714 semsg(_(e_loadlib), GETTEXT_DLL);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200715 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200717 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 }
719 for (i = 0; libintl_entry[i].name != NULL
720 && libintl_entry[i].ptr != NULL; ++i)
721 {
722 if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL,
723 libintl_entry[i].name)) == NULL)
724 {
725 dyn_libintl_end();
726 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000727 {
728 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100729 semsg(_(e_loadfunc), libintl_entry[i].name);
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000730 verbose_leave();
731 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 return 0;
733 }
734 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000735
Bram Moolenaar0f873732019-12-05 20:28:46 +0100736 // The bind_textdomain_codeset() function is optional.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000737 dyn_libintl_bind_textdomain_codeset = (void *)GetProcAddress(hLibintlDLL,
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000738 "bind_textdomain_codeset");
739 if (dyn_libintl_bind_textdomain_codeset == NULL)
740 dyn_libintl_bind_textdomain_codeset =
741 null_libintl_bind_textdomain_codeset;
742
Bram Moolenaar0f873732019-12-05 20:28:46 +0100743 // _wputenv() function for the libintl.dll is optional.
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100744 hmsvcrt = find_imported_module_by_funcname(hLibintlDLL, "getenv");
745 if (hmsvcrt != NULL)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100746 dyn_libintl_wputenv = (void *)GetProcAddress(hmsvcrt, "_wputenv");
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100747 if (dyn_libintl_wputenv == NULL || dyn_libintl_wputenv == _wputenv)
748 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100749
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 return 1;
751}
752
753 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100754dyn_libintl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755{
756 if (hLibintlDLL)
757 FreeLibrary(hLibintlDLL);
758 hLibintlDLL = NULL;
759 dyn_libintl_gettext = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200760 dyn_libintl_ngettext = null_libintl_ngettext;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 dyn_libintl_textdomain = null_libintl_textdomain;
762 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000763 dyn_libintl_bind_textdomain_codeset = null_libintl_bind_textdomain_codeset;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100764 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765}
766
767 static char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000768null_libintl_gettext(const char *msgid)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769{
770 return (char*)msgid;
771}
772
773 static char *
Bram Moolenaaree695f72016-08-03 22:08:45 +0200774null_libintl_ngettext(
775 const char *msgid,
776 const char *msgid_plural,
777 unsigned long n)
778{
Bram Moolenaarc90f2ae2016-08-04 22:00:15 +0200779 return (char *)(n == 1 ? msgid : msgid_plural);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200780}
781
Bram Moolenaaree695f72016-08-03 22:08:45 +0200782 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100783null_libintl_bindtextdomain(
784 const char *domainname UNUSED,
785 const char *dirname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786{
787 return NULL;
788}
789
790 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100791null_libintl_bind_textdomain_codeset(
792 const char *domainname UNUSED,
793 const char *codeset UNUSED)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000794{
795 return NULL;
796}
797
798 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100799null_libintl_textdomain(const char *domainname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800{
801 return NULL;
802}
803
Bram Moolenaare0ab9792017-08-02 23:18:25 +0200804 static int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100805null_libintl_wputenv(const wchar_t *envstring UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100806{
807 return 0;
808}
809
Bram Moolenaar0f873732019-12-05 20:28:46 +0100810#endif // DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
Bram Moolenaar0f873732019-12-05 20:28:46 +0100812// This symbol is not defined in older versions of the SDK or Visual C++
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813
814#ifndef VER_PLATFORM_WIN32_WINDOWS
815# define VER_PLATFORM_WIN32_WINDOWS 1
816#endif
817
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818#ifdef HAVE_ACL
Bram Moolenaar82881492012-11-20 16:53:39 +0100819# ifndef PROTO
820# include <aclapi.h>
821# endif
Bram Moolenaar27515922013-06-29 15:36:26 +0200822# ifndef PROTECTED_DACL_SECURITY_INFORMATION
823# define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L
824# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825#endif
826
Bram Moolenaar27515922013-06-29 15:36:26 +0200827#ifdef HAVE_ACL
828/*
829 * Enables or disables the specified privilege.
830 */
831 static BOOL
832win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable)
833{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100834 BOOL bResult;
835 LUID luid;
836 HANDLE hToken;
837 TOKEN_PRIVILEGES tokenPrivileges;
Bram Moolenaar27515922013-06-29 15:36:26 +0200838
839 if (!OpenProcessToken(GetCurrentProcess(),
840 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
841 return FALSE;
842
843 if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid))
844 {
845 CloseHandle(hToken);
846 return FALSE;
847 }
848
Bram Moolenaar45500912014-07-09 20:51:07 +0200849 tokenPrivileges.PrivilegeCount = 1;
Bram Moolenaar27515922013-06-29 15:36:26 +0200850 tokenPrivileges.Privileges[0].Luid = luid;
851 tokenPrivileges.Privileges[0].Attributes = bEnable ?
852 SE_PRIVILEGE_ENABLED : 0;
853
854 bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges,
855 sizeof(TOKEN_PRIVILEGES), NULL, NULL);
856
857 CloseHandle(hToken);
858
859 return bResult && GetLastError() == ERROR_SUCCESS;
860}
861#endif
862
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863/*
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200864 * Set "win8_or_later" and fill in "windowsVersion" if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 */
866 void
867PlatformId(void)
868{
869 static int done = FALSE;
870
871 if (!done)
872 {
873 OSVERSIONINFO ovi;
874
875 ovi.dwOSVersionInfoSize = sizeof(ovi);
876 GetVersionEx(&ovi);
877
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200878#ifdef FEAT_EVAL
Bram Moolenaar0c1e3742019-12-27 13:49:24 +0100879 vim_snprintf(windowsVersion, sizeof(windowsVersion), "%d.%d",
880 (int)ovi.dwMajorVersion, (int)ovi.dwMinorVersion);
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200881#endif
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100882 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2)
883 || ovi.dwMajorVersion > 6)
884 win8_or_later = TRUE;
885
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886#ifdef HAVE_ACL
Bram Moolenaar0f873732019-12-05 20:28:46 +0100887 // Enable privilege for getting or setting SACLs.
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200888 win32_enable_privilege(SE_SECURITY_NAME, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889#endif
890 done = TRUE;
891 }
892}
893
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200894#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100896# define SHIFT (SHIFT_PRESSED)
897# define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)
898# define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)
899# define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
901
Bram Moolenaar0f873732019-12-05 20:28:46 +0100902// When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode.
903// We map function keys to their ANSI terminal equivalents, as produced
904// by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any
905// ANSI key with a value >= '\300' is nonstandard, but provided anyway
906// so that the user can have access to all SHIFT-, CTRL-, and ALT-
907// combinations of function/arrow/etc keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908
Bram Moolenaard6f676d2005-06-01 21:51:55 +0000909static const struct
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910{
911 WORD wVirtKey;
912 BOOL fAnsiKey;
913 int chAlone;
914 int chShift;
915 int chCtrl;
916 int chAlt;
917} VirtKeyMap[] =
918{
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200919// Key ANSI alone shift ctrl alt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, },
921
922 { VK_F1, TRUE, ';', 'T', '^', 'h', },
923 { VK_F2, TRUE, '<', 'U', '_', 'i', },
924 { VK_F3, TRUE, '=', 'V', '`', 'j', },
925 { VK_F4, TRUE, '>', 'W', 'a', 'k', },
926 { VK_F5, TRUE, '?', 'X', 'b', 'l', },
927 { VK_F6, TRUE, '@', 'Y', 'c', 'm', },
928 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', },
929 { VK_F8, TRUE, 'B', '[', 'e', 'o', },
930 { VK_F9, TRUE, 'C', '\\', 'f', 'p', },
931 { VK_F10, TRUE, 'D', ']', 'g', 'q', },
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200932 { VK_F11, TRUE, '\205', '\207', '\211', '\213', },
933 { VK_F12, TRUE, '\206', '\210', '\212', '\214', },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200935 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', },
936 { VK_UP, TRUE, 'H', '\304', '\305', '\306', },
937 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, // PgUp
938 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', },
939 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', },
940 { VK_END, TRUE, 'O', '\315', 'u', '\316', },
941 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', },
942 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, // PgDn
943 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', },
944 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', },
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100945 { VK_BACK, TRUE, 'x', 'y', 'z', '{', }, // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200947 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, // PrtScrn
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100949# if 0
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200950 // Most people don't have F13-F20, but what the hell...
951 { VK_F13, TRUE, '\332', '\333', '\334', '\335', },
952 { VK_F14, TRUE, '\336', '\337', '\340', '\341', },
953 { VK_F15, TRUE, '\342', '\343', '\344', '\345', },
954 { VK_F16, TRUE, '\346', '\347', '\350', '\351', },
955 { VK_F17, TRUE, '\352', '\353', '\354', '\355', },
956 { VK_F18, TRUE, '\356', '\357', '\360', '\361', },
957 { VK_F19, TRUE, '\362', '\363', '\364', '\365', },
958 { VK_F20, TRUE, '\366', '\367', '\370', '\371', },
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100959# endif
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200960 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, // keyp '+'
961 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, // keyp '-'
962 // { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, // keyp '/'
963 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, // keyp '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200965 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', },
966 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', },
967 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', },
968 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', },
969 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', },
970 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', },
971 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', },
972 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', },
973 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', },
974 // Sorry, out of number space! <negri>
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100975 { VK_NUMPAD9,TRUE, '\376', '\377', '|', '}', },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976};
977
978
Bram Moolenaar0f873732019-12-05 20:28:46 +0100979/*
980 * The return code indicates key code size.
981 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983win32_kbd_patch_key(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000984 KEY_EVENT_RECORD *pker)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985{
986 UINT uMods = pker->dwControlKeyState;
987 static int s_iIsDead = 0;
988 static WORD awAnsiCode[2];
989 static BYTE abKeystate[256];
990
991
992 if (s_iIsDead == 2)
993 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200994 pker->UChar = (WCHAR) awAnsiCode[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 s_iIsDead = 0;
996 return 1;
997 }
998
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200999 if (pker->UChar != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 return 1;
1001
Bram Moolenaara80faa82020-04-12 19:37:17 +02001002 CLEAR_FIELD(abKeystate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003
Bram Moolenaar0f873732019-12-05 20:28:46 +01001004 // Clear any pending dead keys
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001005 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006
1007 if (uMods & SHIFT_PRESSED)
1008 abKeystate[VK_SHIFT] = 0x80;
1009 if (uMods & CAPSLOCK_ON)
1010 abKeystate[VK_CAPITAL] = 1;
1011
1012 if ((uMods & ALT_GR) == ALT_GR)
1013 {
1014 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] =
1015 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80;
1016 }
1017
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001018 s_iIsDead = ToUnicode(pker->wVirtualKeyCode, pker->wVirtualScanCode,
1019 abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020
1021 if (s_iIsDead > 0)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001022 pker->UChar = (WCHAR) awAnsiCode[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023
1024 return s_iIsDead;
1025}
1026
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027static BOOL g_fJustGotFocus = FALSE;
1028
1029/*
1030 * Decode a KEY_EVENT into one or two keystrokes
1031 */
1032 static BOOL
1033decode_key_event(
1034 KEY_EVENT_RECORD *pker,
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001035 WCHAR *pch,
1036 WCHAR *pch2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 int *pmodifiers,
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02001038 BOOL fDoPost UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039{
1040 int i;
1041 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL);
1042
1043 *pch = *pch2 = NUL;
1044 g_fJustGotFocus = FALSE;
1045
Bram Moolenaar0f873732019-12-05 20:28:46 +01001046 // ignore key up events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 if (!pker->bKeyDown)
1048 return FALSE;
1049
Bram Moolenaar0f873732019-12-05 20:28:46 +01001050 // ignore some keystrokes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 switch (pker->wVirtualKeyCode)
1052 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001053 // modifiers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 case VK_SHIFT:
1055 case VK_CONTROL:
Bram Moolenaar0f873732019-12-05 20:28:46 +01001056 case VK_MENU: // Alt key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 return FALSE;
1058
1059 default:
1060 break;
1061 }
1062
Bram Moolenaar0f873732019-12-05 20:28:46 +01001063 // special cases
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001064 if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001066 // Ctrl-6 is Ctrl-^
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 if (pker->wVirtualKeyCode == '6')
1068 {
1069 *pch = Ctrl_HAT;
1070 return TRUE;
1071 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001072 // Ctrl-2 is Ctrl-@
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 else if (pker->wVirtualKeyCode == '2')
1074 {
1075 *pch = NUL;
1076 return TRUE;
1077 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001078 // Ctrl-- is Ctrl-_
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 else if (pker->wVirtualKeyCode == 0xBD)
1080 {
1081 *pch = Ctrl__;
1082 return TRUE;
1083 }
1084 }
1085
Bram Moolenaar0f873732019-12-05 20:28:46 +01001086 // Shift-TAB
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED))
1088 {
1089 *pch = K_NUL;
1090 *pch2 = '\017';
1091 return TRUE;
1092 }
1093
1094 for (i = sizeof(VirtKeyMap) / sizeof(VirtKeyMap[0]); --i >= 0; )
1095 {
1096 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode)
1097 {
1098 if (nModifs == 0)
1099 *pch = VirtKeyMap[i].chAlone;
1100 else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0)
1101 *pch = VirtKeyMap[i].chShift;
1102 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0)
1103 *pch = VirtKeyMap[i].chCtrl;
1104 else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0)
1105 *pch = VirtKeyMap[i].chAlt;
1106
1107 if (*pch != 0)
1108 {
1109 if (VirtKeyMap[i].fAnsiKey)
1110 {
1111 *pch2 = *pch;
1112 *pch = K_NUL;
1113 }
1114
1115 return TRUE;
1116 }
1117 }
1118 }
1119
1120 i = win32_kbd_patch_key(pker);
1121
1122 if (i < 0)
1123 *pch = NUL;
1124 else
1125 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001126 *pch = (i > 0) ? pker->UChar : NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127
1128 if (pmodifiers != NULL)
1129 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001130 // Pass on the ALT key as a modifier, but only when not combined
1131 // with CTRL (which is ALTGR).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0)
1133 *pmodifiers |= MOD_MASK_ALT;
1134
Bram Moolenaar0f873732019-12-05 20:28:46 +01001135 // Pass on SHIFT only for special keys, because we don't know when
1136 // it's already included with the character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 if ((nModifs & SHIFT) != 0 && *pch <= 0x20)
1138 *pmodifiers |= MOD_MASK_SHIFT;
1139
Bram Moolenaar0f873732019-12-05 20:28:46 +01001140 // Pass on CTRL only for non-special keys, because we don't know
1141 // when it's already included with the character. And not when
1142 // combined with ALT (which is ALTGR).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0
1144 && *pch >= 0x20 && *pch < 0x80)
1145 *pmodifiers |= MOD_MASK_CTRL;
1146 }
1147 }
1148
1149 return (*pch != NUL);
1150}
1151
Bram Moolenaar0f873732019-12-05 20:28:46 +01001152#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153
1154
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155/*
1156 * For the GUI the mouse handling is in gui_w32.c.
1157 */
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001158#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001160mch_setmouse(int on UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161{
1162}
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001163#else
Bram Moolenaar0f873732019-12-05 20:28:46 +01001164static int g_fMouseAvail = FALSE; // mouse present
1165static int g_fMouseActive = FALSE; // mouse enabled
1166static int g_nMouseClick = -1; // mouse status
1167static int g_xMouse; // mouse x coordinate
1168static int g_yMouse; // mouse y coordinate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169
1170/*
1171 * Enable or disable mouse input
1172 */
1173 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001174mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175{
1176 DWORD cmodein;
1177
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001178# ifdef VIMDLL
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001179 if (gui.in_use)
1180 return;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001181# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 if (!g_fMouseAvail)
1183 return;
1184
1185 g_fMouseActive = on;
1186 GetConsoleMode(g_hConIn, &cmodein);
1187
1188 if (g_fMouseActive)
1189 cmodein |= ENABLE_MOUSE_INPUT;
1190 else
1191 cmodein &= ~ENABLE_MOUSE_INPUT;
1192
1193 SetConsoleMode(g_hConIn, cmodein);
1194}
1195
Bram Moolenaar157d8132018-03-06 17:09:20 +01001196
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001197# if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar157d8132018-03-06 17:09:20 +01001198/*
1199 * Called when 'balloonevalterm' changed.
1200 */
1201 void
1202mch_bevalterm_changed(void)
1203{
1204 mch_setmouse(g_fMouseActive);
1205}
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001206# endif
Bram Moolenaar157d8132018-03-06 17:09:20 +01001207
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208/*
1209 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT,
1210 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse
1211 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG
1212 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type,
1213 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick,
1214 * and we return the mouse position in g_xMouse and g_yMouse.
1215 *
1216 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more
1217 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only
1218 * by MOUSE_LEFT, _MIDDLE, or _RIGHT.
1219 *
1220 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE,
1221 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, ....
1222 *
1223 * Windows will send us MOUSE_MOVED notifications whenever the mouse
1224 * moves, even if it stays within the same character cell. We ignore
1225 * all MOUSE_MOVED messages if the position hasn't really changed, and
1226 * we ignore all MOUSE_MOVED messages where no button is held down (i.e.,
1227 * we're only interested in MOUSE_DRAG).
1228 *
1229 * All of this is complicated by the code that fakes MOUSE_MIDDLE on
1230 * 2-button mouses by pressing the left & right buttons simultaneously.
1231 * In practice, it's almost impossible to click both at the same time,
1232 * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE
1233 * in such cases, if the user is clicking quickly.
1234 */
1235 static BOOL
1236decode_mouse_event(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001237 MOUSE_EVENT_RECORD *pmer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238{
1239 static int s_nOldButton = -1;
1240 static int s_nOldMouseClick = -1;
1241 static int s_xOldMouse = -1;
1242 static int s_yOldMouse = -1;
1243 static linenr_T s_old_topline = 0;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001244# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 static int s_old_topfill = 0;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001246# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 static int s_cClicks = 1;
1248 static BOOL s_fReleased = TRUE;
1249 static DWORD s_dwLastClickTime = 0;
1250 static BOOL s_fNextIsMiddle = FALSE;
1251
Bram Moolenaar0f873732019-12-05 20:28:46 +01001252 static DWORD cButtons = 0; // number of buttons supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253
1254 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED;
1255 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED;
1256 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED;
1257 const DWORD LEFT_RIGHT = LEFT | RIGHT;
1258
1259 int nButton;
1260
1261 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons))
1262 cButtons = 2;
1263
1264 if (!g_fMouseAvail || !g_fMouseActive)
1265 {
1266 g_nMouseClick = -1;
1267 return FALSE;
1268 }
1269
Bram Moolenaar0f873732019-12-05 20:28:46 +01001270 // get a spurious MOUSE_EVENT immediately after receiving focus; ignore
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 if (g_fJustGotFocus)
1272 {
1273 g_fJustGotFocus = FALSE;
1274 return FALSE;
1275 }
1276
Bram Moolenaar0f873732019-12-05 20:28:46 +01001277 // unprocessed mouse click?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 if (g_nMouseClick != -1)
1279 return TRUE;
1280
1281 nButton = -1;
1282 g_xMouse = pmer->dwMousePosition.X;
1283 g_yMouse = pmer->dwMousePosition.Y;
1284
1285 if (pmer->dwEventFlags == MOUSE_MOVED)
1286 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001287 // Ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these
1288 // events even when the mouse moves only within a char cell.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse)
1290 return FALSE;
1291 }
1292
Bram Moolenaar0f873732019-12-05 20:28:46 +01001293 // If no buttons are pressed...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0)
1295 {
Bram Moolenaar157d8132018-03-06 17:09:20 +01001296 nButton = MOUSE_RELEASE;
1297
Bram Moolenaar0f873732019-12-05 20:28:46 +01001298 // If the last thing returned was MOUSE_RELEASE, ignore this
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 if (s_fReleased)
Bram Moolenaar157d8132018-03-06 17:09:20 +01001300 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001301# ifdef FEAT_BEVAL_TERM
Bram Moolenaar0f873732019-12-05 20:28:46 +01001302 // do return mouse move events when we want them
Bram Moolenaar157d8132018-03-06 17:09:20 +01001303 if (p_bevalterm)
1304 nButton = MOUSE_DRAG;
1305 else
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001306# endif
Bram Moolenaar157d8132018-03-06 17:09:20 +01001307 return FALSE;
1308 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 s_fReleased = TRUE;
1311 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001312 else // one or more buttons pressed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001314 // on a 2-button mouse, hold down left and right buttons
1315 // simultaneously to get MIDDLE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316
1317 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG)
1318 {
1319 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT);
1320
Bram Moolenaar0f873732019-12-05 20:28:46 +01001321 // if either left or right button only is pressed, see if the
1322 // next mouse event has both of them pressed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 if (dwLR == LEFT || dwLR == RIGHT)
1324 {
1325 for (;;)
1326 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001327 // wait a short time for next input event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 if (WaitForSingleObject(g_hConIn, p_mouset / 3)
1329 != WAIT_OBJECT_0)
1330 break;
1331 else
1332 {
1333 DWORD cRecords = 0;
1334 INPUT_RECORD ir;
1335 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent;
1336
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001337 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
1339 if (cRecords == 0 || ir.EventType != MOUSE_EVENT
1340 || !(pmer2->dwButtonState & LEFT_RIGHT))
1341 break;
1342 else
1343 {
1344 if (pmer2->dwEventFlags != MOUSE_MOVED)
1345 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001346 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347
1348 return decode_mouse_event(pmer2);
1349 }
1350 else if (s_xOldMouse == pmer2->dwMousePosition.X &&
1351 s_yOldMouse == pmer2->dwMousePosition.Y)
1352 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001353 // throw away spurious mouse move
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001354 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355
Bram Moolenaar0f873732019-12-05 20:28:46 +01001356 // are there any more mouse events in queue?
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001357 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358
1359 if (cRecords==0 || ir.EventType != MOUSE_EVENT)
1360 break;
1361 }
1362 else
1363 break;
1364 }
1365 }
1366 }
1367 }
1368 }
1369
1370 if (s_fNextIsMiddle)
1371 {
1372 nButton = (pmer->dwEventFlags == MOUSE_MOVED)
1373 ? MOUSE_DRAG : MOUSE_MIDDLE;
1374 s_fNextIsMiddle = FALSE;
1375 }
1376 else if (cButtons == 2 &&
1377 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT))
1378 {
1379 nButton = MOUSE_MIDDLE;
1380
1381 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED)
1382 {
1383 s_fNextIsMiddle = TRUE;
1384 nButton = MOUSE_RELEASE;
1385 }
1386 }
1387 else if ((pmer->dwButtonState & LEFT) == LEFT)
1388 nButton = MOUSE_LEFT;
1389 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE)
1390 nButton = MOUSE_MIDDLE;
1391 else if ((pmer->dwButtonState & RIGHT) == RIGHT)
1392 nButton = MOUSE_RIGHT;
1393
1394 if (! s_fReleased && ! s_fNextIsMiddle
1395 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG)
1396 return FALSE;
1397
1398 s_fReleased = s_fNextIsMiddle;
1399 }
1400
1401 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK)
1402 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001403 // button pressed or released, without mouse moving
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 if (nButton != -1 && nButton != MOUSE_RELEASE)
1405 {
1406 DWORD dwCurrentTime = GetTickCount();
1407
1408 if (s_xOldMouse != g_xMouse
1409 || s_yOldMouse != g_yMouse
1410 || s_nOldButton != nButton
1411 || s_old_topline != curwin->w_topline
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001412# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 || s_old_topfill != curwin->w_topfill
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001414# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset)
1416 {
1417 s_cClicks = 1;
1418 }
1419 else if (++s_cClicks > 4)
1420 {
1421 s_cClicks = 1;
1422 }
1423
1424 s_dwLastClickTime = dwCurrentTime;
1425 }
1426 }
1427 else if (pmer->dwEventFlags == MOUSE_MOVED)
1428 {
1429 if (nButton != -1 && nButton != MOUSE_RELEASE)
1430 nButton = MOUSE_DRAG;
1431
1432 s_cClicks = 1;
1433 }
1434
1435 if (nButton == -1)
1436 return FALSE;
1437
1438 if (nButton != MOUSE_RELEASE)
1439 s_nOldButton = nButton;
1440
1441 g_nMouseClick = nButton;
1442
1443 if (pmer->dwControlKeyState & SHIFT_PRESSED)
1444 g_nMouseClick |= MOUSE_SHIFT;
1445 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
1446 g_nMouseClick |= MOUSE_CTRL;
1447 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
1448 g_nMouseClick |= MOUSE_ALT;
1449
1450 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE)
1451 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks);
1452
Bram Moolenaar0f873732019-12-05 20:28:46 +01001453 // only pass on interesting (i.e., different) mouse events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 if (s_xOldMouse == g_xMouse
1455 && s_yOldMouse == g_yMouse
1456 && s_nOldMouseClick == g_nMouseClick)
1457 {
1458 g_nMouseClick = -1;
1459 return FALSE;
1460 }
1461
1462 s_xOldMouse = g_xMouse;
1463 s_yOldMouse = g_yMouse;
1464 s_old_topline = curwin->w_topline;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001465# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 s_old_topfill = curwin->w_topfill;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001467# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 s_nOldMouseClick = g_nMouseClick;
1469
1470 return TRUE;
1471}
1472
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001473#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474
1475
1476#ifdef MCH_CURSOR_SHAPE
1477/*
1478 * Set the shape of the cursor.
1479 * 'thickness' can be from 1 (thin) to 99 (block)
1480 */
1481 static void
1482mch_set_cursor_shape(int thickness)
1483{
1484 CONSOLE_CURSOR_INFO ConsoleCursorInfo;
1485 ConsoleCursorInfo.dwSize = thickness;
1486 ConsoleCursorInfo.bVisible = s_cursor_visible;
1487
1488 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
1489 if (s_cursor_visible)
1490 SetConsoleCursorPosition(g_hConOut, g_coord);
1491}
1492
1493 void
1494mch_update_cursor(void)
1495{
1496 int idx;
1497 int thickness;
1498
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001499# ifdef VIMDLL
1500 if (gui.in_use)
1501 return;
1502# endif
1503
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 /*
1505 * How the cursor is drawn depends on the current mode.
1506 */
1507 idx = get_shape_idx(FALSE);
1508
1509 if (shape_table[idx].shape == SHAPE_BLOCK)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001510 thickness = 99; // 100 doesn't work on W95
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 else
1512 thickness = shape_table[idx].percentage;
1513 mch_set_cursor_shape(thickness);
1514}
1515#endif
1516
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001517#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518/*
1519 * Handle FOCUS_EVENT.
1520 */
1521 static void
1522handle_focus_event(INPUT_RECORD ir)
1523{
1524 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus;
1525 ui_focus_change((int)g_fJustGotFocus);
1526}
1527
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001528static void ResizeConBuf(HANDLE hConsole, COORD coordScreen);
1529
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530/*
1531 * Wait until console input from keyboard or mouse is available,
1532 * or the time is up.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001533 * When "ignore_input" is TRUE even wait when input is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 * Return TRUE if something is available FALSE if not.
1535 */
1536 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001537WaitForChar(long msec, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538{
1539 DWORD dwNow = 0, dwEndTime = 0;
1540 INPUT_RECORD ir;
1541 DWORD cRecords;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001542 WCHAR ch, ch2;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001543# ifdef FEAT_TIMERS
Bram Moolenaar40b1b542016-04-20 20:18:23 +02001544 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001545# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546
1547 if (msec > 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001548 // Wait until the specified time has elapsed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 dwEndTime = GetTickCount() + msec;
1550 else if (msec < 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001551 // Wait forever.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 dwEndTime = INFINITE;
1553
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01001554 // We need to loop until the end of the time period, because
1555 // we might get multiple unusable mouse events in that time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 for (;;)
1557 {
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001558 // Only process messages when waiting.
1559 if (msec != 0)
1560 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001561# ifdef MESSAGE_QUEUE
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001562 parse_queued_messages();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001563# endif
1564# ifdef FEAT_MZSCHEME
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001565 mzvim_check_threads();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001566# endif
1567# ifdef FEAT_CLIENTSERVER
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001568 serverProcessPendingMessages();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001569# endif
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001570 }
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001571
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001572 if (g_nMouseClick != -1
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001573# ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001574 || (!ignore_input && input_available())
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001575# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 )
1577 return TRUE;
1578
1579 if (msec > 0)
1580 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001581 // If the specified wait time has passed, return. Beware that
1582 // GetTickCount() may wrap around (overflow).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 dwNow = GetTickCount();
Bram Moolenaarb7512b72013-08-10 12:45:09 +02001584 if ((int)(dwNow - dwEndTime) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 break;
1586 }
1587 if (msec != 0)
1588 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001589 DWORD dwWaitTime = dwEndTime - dwNow;
1590
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001591# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar0f873732019-12-05 20:28:46 +01001592 // Check channel while waiting for input.
Bram Moolenaar9186a272016-02-23 19:34:01 +01001593 if (dwWaitTime > 100)
Bram Moolenaar8a8199e2016-11-26 15:13:33 +01001594 {
Bram Moolenaar9186a272016-02-23 19:34:01 +01001595 dwWaitTime = 100;
Bram Moolenaar0f873732019-12-05 20:28:46 +01001596 // If there is readahead then parse_queued_messages() timed out
1597 // and we should call it again soon.
Bram Moolenaar8a8199e2016-11-26 15:13:33 +01001598 if (channel_any_readahead())
1599 dwWaitTime = 10;
1600 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001601# endif
1602# ifdef FEAT_BEVAL_GUI
Bram Moolenaar59716a22017-03-01 20:32:44 +01001603 if (p_beval && dwWaitTime > 100)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001604 // The 'balloonexpr' may indirectly invoke a callback while
1605 // waiting for a character, need to check often.
Bram Moolenaar59716a22017-03-01 20:32:44 +01001606 dwWaitTime = 100;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001607# endif
1608# ifdef FEAT_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001609 if (mzthreads_allowed() && p_mzq > 0
1610 && (msec < 0 || (long)dwWaitTime > p_mzq))
Bram Moolenaar0f873732019-12-05 20:28:46 +01001611 dwWaitTime = p_mzq; // don't wait longer than 'mzquantum'
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001612# endif
1613# ifdef FEAT_TIMERS
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001614 // When waiting very briefly don't trigger timers.
1615 if (dwWaitTime > 10)
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001616 {
1617 long due_time;
1618
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001619 // Trigger timers and then get the time in msec until the next
1620 // one is due. Wait up to that time.
1621 due_time = check_due_timer();
1622 if (typebuf.tb_change_cnt != tb_change_cnt)
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001623 {
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001624 // timer may have used feedkeys().
1625 return FALSE;
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001626 }
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001627 if (due_time > 0 && dwWaitTime > (DWORD)due_time)
1628 dwWaitTime = due_time;
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001629 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001630# endif
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001631 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001632# ifdef FEAT_CLIENTSERVER
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001633 // Wait for either an event on the console input or a
1634 // message in the client-server window.
1635 msg_wait_for_multiple_objects(1, &g_hConIn, FALSE,
1636 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001637# else
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001638 wait_for_single_object(g_hConIn, dwWaitTime)
1639 != WAIT_OBJECT_0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001640# endif
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001641 )
1642 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 }
1644
1645 cRecords = 0;
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001646 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001648# ifdef FEAT_MBYTE_IME
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 if (State & CMDLINE && msg_row == Rows - 1)
1650 {
1651 CONSOLE_SCREEN_BUFFER_INFO csbi;
1652
1653 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
1654 {
1655 if (csbi.dwCursorPosition.Y != msg_row)
1656 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001657 // The screen is now messed up, must redraw the
1658 // command line and later all the windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 redraw_all_later(CLEAR);
1660 cmdline_row -= (msg_row - csbi.dwCursorPosition.Y);
1661 redrawcmd();
1662 }
1663 }
1664 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001665# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666
1667 if (cRecords > 0)
1668 {
1669 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown)
1670 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001671# ifdef FEAT_MBYTE_IME
Bram Moolenaar0f873732019-12-05 20:28:46 +01001672 // Windows IME sends two '\n's with only one 'ENTER'. First:
1673 // wVirtualKeyCode == 13. second: wVirtualKeyCode == 0
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001674 if (ir.Event.KeyEvent.UChar == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 && ir.Event.KeyEvent.wVirtualKeyCode == 13)
1676 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001677 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 continue;
1679 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001680# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2,
1682 NULL, FALSE))
1683 return TRUE;
1684 }
1685
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001686 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687
1688 if (ir.EventType == FOCUS_EVENT)
1689 handle_focus_event(ir);
1690 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
Bram Moolenaarc33ecb22018-02-11 16:40:45 +01001691 {
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001692 COORD dwSize = ir.Event.WindowBufferSizeEvent.dwSize;
1693
Bram Moolenaar36698e32019-12-11 22:57:40 +01001694 // Only call shell_resized() when the size actually changed to
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001695 // avoid the screen is cleared.
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001696 if (dwSize.X != Columns || dwSize.Y != Rows)
1697 {
1698 CONSOLE_SCREEN_BUFFER_INFO csbi;
1699 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
Bram Moolenaar36698e32019-12-11 22:57:40 +01001700 dwSize.X = csbi.srWindow.Right - csbi.srWindow.Left + 1;
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001701 dwSize.Y = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
Bram Moolenaar36698e32019-12-11 22:57:40 +01001702 if (dwSize.X != Columns || dwSize.Y != Rows)
1703 {
1704 ResizeConBuf(g_hConOut, dwSize);
1705 shell_resized();
1706 }
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001707 }
Bram Moolenaarc33ecb22018-02-11 16:40:45 +01001708 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 else if (ir.EventType == MOUSE_EVENT
1710 && decode_mouse_event(&ir.Event.MouseEvent))
1711 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 }
1713 else if (msec == 0)
1714 break;
1715 }
1716
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001717# ifdef FEAT_CLIENTSERVER
Bram Moolenaar0f873732019-12-05 20:28:46 +01001718 // Something might have been received while we were waiting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 if (input_available())
1720 return TRUE;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001721# endif
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001722
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 return FALSE;
1724}
1725
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726/*
1727 * return non-zero if a character is available
1728 */
1729 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001730mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001732# ifdef VIMDLL
1733 if (gui.in_use)
1734 return TRUE;
1735# endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001736 return WaitForChar(0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001738
1739# if defined(FEAT_TERMINAL) || defined(PROTO)
1740/*
1741 * Check for any pending input or messages.
1742 */
1743 int
1744mch_check_messages(void)
1745{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001746# ifdef VIMDLL
1747 if (gui.in_use)
1748 return TRUE;
1749# endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001750 return WaitForChar(0L, TRUE);
1751}
1752# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753
1754/*
1755 * Create the console input. Used when reading stdin doesn't work.
1756 */
1757 static void
1758create_conin(void)
1759{
1760 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE,
1761 FILE_SHARE_READ|FILE_SHARE_WRITE,
1762 (LPSECURITY_ATTRIBUTES) NULL,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001763 OPEN_EXISTING, 0, (HANDLE)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 did_create_conin = TRUE;
1765}
1766
1767/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001768 * Get a keystroke or a mouse event, use a blocking wait.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001770 static WCHAR
1771tgetch(int *pmodifiers, WCHAR *pch2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772{
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001773 WCHAR ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774
1775 for (;;)
1776 {
1777 INPUT_RECORD ir;
1778 DWORD cRecords = 0;
1779
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001780# ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001781 (void)WaitForChar(-1L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 if (input_available())
1783 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 if (g_nMouseClick != -1)
1785 return 0;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001786# endif
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001787 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 {
1789 if (did_create_conin)
1790 read_error_exit();
1791 create_conin();
1792 continue;
1793 }
1794
1795 if (ir.EventType == KEY_EVENT)
1796 {
1797 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2,
1798 pmodifiers, TRUE))
1799 return ch;
1800 }
1801 else if (ir.EventType == FOCUS_EVENT)
1802 handle_focus_event(ir);
1803 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
1804 shell_resized();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 else if (ir.EventType == MOUSE_EVENT)
1806 {
1807 if (decode_mouse_event(&ir.Event.MouseEvent))
1808 return 0;
1809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 }
1811}
Bram Moolenaar0f873732019-12-05 20:28:46 +01001812#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813
1814
1815/*
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02001816 * mch_inchar(): low-level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 * Get one or more characters from the keyboard or the mouse.
1818 * If time == 0, do not wait for characters.
1819 * If time == n, wait a short time for characters.
1820 * If time == -1, wait forever for characters.
1821 * Returns the number of characters read into buf.
1822 */
1823 int
1824mch_inchar(
Bram Moolenaar1266d672017-02-01 13:43:36 +01001825 char_u *buf UNUSED,
1826 int maxlen UNUSED,
1827 long time UNUSED,
1828 int tb_change_cnt UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001830#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831
1832 int len;
1833 int c;
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001834# ifdef VIMDLL
1835// Extra space for maximum three CSIs. E.g. U+1B6DB -> 0xF0 0x9B 0x9B 0x9B.
1836# define TYPEAHEADSPACE 6
1837# else
1838# define TYPEAHEADSPACE 0
1839# endif
1840# define TYPEAHEADLEN (20 + TYPEAHEADSPACE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001841 static char_u typeahead[TYPEAHEADLEN]; // previously typed bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 static int typeaheadlen = 0;
1843
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001844# ifdef VIMDLL
1845 if (gui.in_use)
1846 return 0;
1847# endif
1848
Bram Moolenaar0f873732019-12-05 20:28:46 +01001849 // First use any typeahead that was kept because "buf" was too small.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 if (typeaheadlen > 0)
1851 goto theend;
1852
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 if (time >= 0)
1854 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001855 if (!WaitForChar(time, FALSE)) // no character available
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001858 else // time == -1, wait forever
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001860 mch_set_winsize_now(); // Allow winsize changes from now on
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861
Bram Moolenaar3918c952005-03-15 22:34:55 +00001862 /*
1863 * If there is no character available within 2 seconds (default)
1864 * write the autoscript file to disk. Or cause the CursorHold event
1865 * to be triggered.
1866 */
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001867 if (!WaitForChar(p_ut, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 {
Bram Moolenaard35f9712005-12-18 22:02:33 +00001869 if (trigger_cursorhold() && maxlen >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 {
Bram Moolenaar3918c952005-03-15 22:34:55 +00001871 buf[0] = K_SPECIAL;
1872 buf[1] = KS_EXTRA;
1873 buf[2] = (int)KE_CURSORHOLD;
1874 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 }
Bram Moolenaar702517d2005-06-27 22:34:07 +00001876 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 }
1878 }
1879
1880 /*
1881 * Try to read as many characters as there are, until the buffer is full.
1882 */
1883
Bram Moolenaar0f873732019-12-05 20:28:46 +01001884 // we will get at least one key. Get more if they are available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 g_fCBrkPressed = FALSE;
1886
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001887# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 if (fdDump)
1889 fputc('[', fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001890# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891
Bram Moolenaar0f873732019-12-05 20:28:46 +01001892 // Keep looping until there is something in the typeahead buffer and more
1893 // to get and still room in the buffer (up to two bytes for a char and
1894 // three bytes for a modifier).
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001895 while ((typeaheadlen == 0 || WaitForChar(0L, FALSE))
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001896 && typeaheadlen + 5 + TYPEAHEADSPACE <= TYPEAHEADLEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 {
1898 if (typebuf_changed(tb_change_cnt))
1899 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001900 // "buf" may be invalid now if a client put something in the
1901 // typeahead buffer and "buf" is in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 typeaheadlen = 0;
1903 break;
1904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 if (g_nMouseClick != -1)
1906 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001907# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 if (fdDump)
1909 fprintf(fdDump, "{%02x @ %d, %d}",
1910 g_nMouseClick, g_xMouse, g_yMouse);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001911# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 typeahead[typeaheadlen++] = ESC + 128;
1913 typeahead[typeaheadlen++] = 'M';
1914 typeahead[typeaheadlen++] = g_nMouseClick;
1915 typeahead[typeaheadlen++] = g_xMouse + '!';
1916 typeahead[typeaheadlen++] = g_yMouse + '!';
1917 g_nMouseClick = -1;
1918 }
1919 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001921 WCHAR ch2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 int modifiers = 0;
1923
1924 c = tgetch(&modifiers, &ch2);
1925
1926 if (typebuf_changed(tb_change_cnt))
1927 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001928 // "buf" may be invalid now if a client put something in the
1929 // typeahead buffer and "buf" is in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 typeaheadlen = 0;
1931 break;
1932 }
1933
1934 if (c == Ctrl_C && ctrl_c_interrupts)
1935 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001936# if defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 trash_input_buf();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001938# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 got_int = TRUE;
1940 }
1941
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 if (g_nMouseClick == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 {
1944 int n = 1;
1945
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001946 if (ch2 == NUL)
1947 {
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001948 int i, j;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001949 char_u *p;
1950 WCHAR ch[2];
1951
1952 ch[0] = c;
Bram Moolenaar0f873732019-12-05 20:28:46 +01001953 if (c >= 0xD800 && c <= 0xDBFF) // High surrogate
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001954 {
1955 ch[1] = tgetch(&modifiers, &ch2);
1956 n++;
1957 }
1958 p = utf16_to_enc(ch, &n);
1959 if (p != NULL)
1960 {
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001961 for (i = 0, j = 0; i < n; i++)
1962 {
1963 typeahead[typeaheadlen + j++] = p[i];
1964# ifdef VIMDLL
1965 if (p[i] == CSI)
1966 {
1967 typeahead[typeaheadlen + j++] = KS_EXTRA;
1968 typeahead[typeaheadlen + j++] = KE_CSI;
1969 }
1970# endif
1971 }
1972 n = j;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001973 vim_free(p);
1974 }
1975 }
1976 else
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001977 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001978 typeahead[typeaheadlen] = c;
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001979# ifdef VIMDLL
1980 if (c == CSI)
1981 {
1982 typeahead[typeaheadlen + 1] = KS_EXTRA;
1983 typeahead[typeaheadlen + 2] = KE_CSI;
1984 n = 3;
1985 }
1986# endif
1987 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 if (ch2 != NUL)
1989 {
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +02001990 if (c == K_NUL)
Bram Moolenaarfeeb4d02017-12-05 15:14:46 +01001991 {
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +02001992 switch (ch2)
1993 {
1994 case (WCHAR)'\324': // SHIFT+Insert
1995 case (WCHAR)'\325': // CTRL+Insert
1996 case (WCHAR)'\327': // SHIFT+Delete
1997 case (WCHAR)'\330': // CTRL+Delete
1998 typeahead[typeaheadlen + n] = (char_u)ch2;
1999 n++;
2000 break;
2001
2002 default:
2003 typeahead[typeaheadlen + n] = 3;
2004 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
2005 n += 2;
2006 break;
2007 }
Bram Moolenaarfeeb4d02017-12-05 15:14:46 +01002008 }
2009 else
2010 {
2011 typeahead[typeaheadlen + n] = 3;
2012 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
2013 n += 2;
2014 }
Bram Moolenaar45500912014-07-09 20:51:07 +02002015 }
2016
Bram Moolenaar0f873732019-12-05 20:28:46 +01002017 // Use the ALT key to set the 8th bit of the character
2018 // when it's one byte, the 8th bit isn't set yet and not
2019 // using a double-byte encoding (would become a lead
2020 // byte).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 if ((modifiers & MOD_MASK_ALT)
2022 && n == 1
2023 && (typeahead[typeaheadlen] & 0x80) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 )
2026 {
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00002027 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
2028 typeahead + typeaheadlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029 modifiers &= ~MOD_MASK_ALT;
2030 }
2031
2032 if (modifiers != 0)
2033 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002034 // Prepend modifiers to the character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 mch_memmove(typeahead + typeaheadlen + 3,
2036 typeahead + typeaheadlen, n);
2037 typeahead[typeaheadlen++] = K_SPECIAL;
2038 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
2039 typeahead[typeaheadlen++] = modifiers;
2040 }
2041
2042 typeaheadlen += n;
2043
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002044# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 if (fdDump)
2046 fputc(c, fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002047# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 }
2049 }
2050 }
2051
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002052# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 if (fdDump)
2054 {
2055 fputs("]\n", fdDump);
2056 fflush(fdDump);
2057 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002058# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060theend:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002061 // Move typeahead to "buf", as much as fits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 len = 0;
2063 while (len < maxlen && typeaheadlen > 0)
2064 {
2065 buf[len++] = typeahead[0];
2066 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
2067 }
2068 return len;
2069
Bram Moolenaar0f873732019-12-05 20:28:46 +01002070#else // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 return 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002072#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073}
2074
Bram Moolenaar82881492012-11-20 16:53:39 +01002075#ifndef PROTO
2076# ifndef __MINGW32__
Bram Moolenaar0f873732019-12-05 20:28:46 +01002077# include <shellapi.h> // required for FindExecutable()
Bram Moolenaar82881492012-11-20 16:53:39 +01002078# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079#endif
2080
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002081/*
Bram Moolenaar95da1362020-05-30 18:37:55 +02002082 * Return TRUE if "name" is an executable file, FALSE if not or it doesn't exist.
Bram Moolenaar43663192017-03-05 14:29:12 +01002083 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2084 * the allocated memory.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002085 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002086 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 static int
Bram Moolenaar95da1362020-05-30 18:37:55 +02002088executable_file(char *name, char_u **path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089{
Bram Moolenaar95da1362020-05-30 18:37:55 +02002090 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name))
Bram Moolenaar43663192017-03-05 14:29:12 +01002091 {
Bram Moolenaar95da1362020-05-30 18:37:55 +02002092 if (path != NULL)
2093 *path = FullName_save((char_u *)name, FALSE);
2094 return TRUE;
2095 }
2096 return FALSE;
2097}
2098
2099/*
2100 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
2101 * If "use_path" is FALSE: Return TRUE if "name" exists.
2102 * If "use_pathext" is TRUE search "name" with extensions in $PATHEXT.
2103 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2104 * the allocated memory.
2105 */
2106 static int
2107executable_exists(char *name, char_u **path, int use_path, int use_pathext)
2108{
2109 // WinNT and later can use _MAX_PATH wide characters for a pathname, which
2110 // means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
2111 // UTF-8.
2112 char_u buf[_MAX_PATH * 3];
2113 size_t len = STRLEN(name);
2114 size_t tmplen;
2115 char_u *p, *e, *e2;
2116 char_u *pathbuf = NULL;
2117 char_u *pathext = NULL;
2118 char_u *pathextbuf = NULL;
2119 int noext = FALSE;
2120 int retval = FALSE;
2121
2122 if (len >= sizeof(buf)) // safety check
Bram Moolenaar43663192017-03-05 14:29:12 +01002123 return FALSE;
Bram Moolenaar95da1362020-05-30 18:37:55 +02002124
2125 // Using the name directly when a Unix-shell like 'shell'.
2126 if (strstr((char *)gettail(p_sh), "sh") != NULL)
2127 noext = TRUE;
2128
2129 if (use_pathext)
2130 {
2131 pathext = mch_getenv("PATHEXT");
2132 if (pathext == NULL)
2133 pathext = (char_u *)".com;.exe;.bat;.cmd";
2134
2135 if (noext == FALSE)
2136 {
2137 /*
2138 * Loop over all extensions in $PATHEXT.
2139 * Check "name" ends with extension.
2140 */
2141 p = pathext;
2142 while (*p)
2143 {
2144 if (p[0] == ';'
2145 || (p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2146 {
2147 // Skip empty or single ".".
2148 ++p;
2149 continue;
2150 }
2151 e = vim_strchr(p, ';');
2152 if (e == NULL)
2153 e = p + STRLEN(p);
2154 tmplen = e - p;
2155
2156 if (_strnicoll(name + len - tmplen, (char *)p, tmplen) == 0)
2157 {
2158 noext = TRUE;
2159 break;
2160 }
2161
2162 p = e;
2163 }
2164 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002165 }
2166
Bram Moolenaar95da1362020-05-30 18:37:55 +02002167 // Prepend single "." to pathext, it's means no extension added.
2168 if (pathext == NULL)
2169 pathext = (char_u *)".";
2170 else if (noext == TRUE)
2171 {
2172 if (pathextbuf == NULL)
2173 pathextbuf = alloc(STRLEN(pathext) + 3);
2174 if (pathextbuf == NULL)
2175 {
2176 retval = FALSE;
2177 goto theend;
2178 }
2179 STRCPY(pathextbuf, ".;");
2180 STRCAT(pathextbuf, pathext);
2181 pathext = pathextbuf;
2182 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02002183
Bram Moolenaar95da1362020-05-30 18:37:55 +02002184 // Use $PATH when "use_path" is TRUE and "name" is basename.
2185 if (use_path && gettail((char_u *)name) == (char_u *)name)
2186 {
2187 p = mch_getenv("PATH");
2188 if (p != NULL)
2189 {
2190 pathbuf = alloc(STRLEN(p) + 3);
2191 if (pathbuf == NULL)
2192 {
2193 retval = FALSE;
2194 goto theend;
2195 }
2196 STRCPY(pathbuf, ".;");
2197 STRCAT(pathbuf, p);
2198 }
2199 }
2200
2201 /*
2202 * Walk through all entries in $PATH to check if "name" exists there and
2203 * is an executable file.
2204 */
2205 p = (pathbuf != NULL) ? pathbuf : (char_u *)".";
2206 while (*p)
2207 {
2208 if (*p == ';') // Skip empty entry
2209 {
2210 ++p;
2211 continue;
2212 }
2213 e = vim_strchr(p, ';');
2214 if (e == NULL)
2215 e = p + STRLEN(p);
2216
2217 if (e - p + len + 2 > sizeof(buf))
2218 {
2219 retval = FALSE;
2220 goto theend;
2221 }
2222 // A single "." that means current dir.
2223 if (e - p == 1 && *p == '.')
2224 STRCPY(buf, name);
2225 else
2226 {
2227 vim_strncpy(buf, p, e - p);
2228 add_pathsep(buf);
2229 STRCAT(buf, name);
2230 }
2231 tmplen = STRLEN(buf);
2232
2233 /*
2234 * Loop over all extensions in $PATHEXT.
2235 * Check "name" with extension added.
2236 */
2237 p = pathext;
2238 while (*p)
2239 {
2240 if (*p == ';')
2241 {
2242 // Skip empty entry
2243 ++p;
2244 continue;
2245 }
2246 e2 = vim_strchr(p, (int)';');
2247 if (e2 == NULL)
2248 e2 = p + STRLEN(p);
2249
2250 if (!(p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2251 {
2252 // Not a single "." that means no extension is added.
2253 if (e2 - p + tmplen + 1 > sizeof(buf))
2254 {
2255 retval = FALSE;
2256 goto theend;
2257 }
2258 vim_strncpy(buf + tmplen, p, e2 - p);
2259 }
2260 if (executable_file((char *)buf, path))
2261 {
2262 retval = TRUE;
2263 goto theend;
2264 }
2265
2266 p = e2;
2267 }
2268
2269 p = e;
2270 }
2271
2272theend:
2273 free(pathextbuf);
2274 free(pathbuf);
2275 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276}
2277
Bram Moolenaar1eed5322019-02-26 17:03:54 +01002278#if (defined(__MINGW32__) && __MSVCRT_VERSION__ >= 0x800) || \
2279 (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002280/*
2281 * Bad parameter handler.
2282 *
2283 * Certain MS CRT functions will intentionally crash when passed invalid
2284 * parameters to highlight possible security holes. Setting this function as
2285 * the bad parameter handler will prevent the crash.
2286 *
2287 * In debug builds the parameters contain CRT information that might help track
2288 * down the source of a problem, but in non-debug builds the arguments are all
2289 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
2290 * worth allowing these to make debugging of issues easier.
2291 */
2292 static void
2293bad_param_handler(const wchar_t *expression,
2294 const wchar_t *function,
2295 const wchar_t *file,
2296 unsigned int line,
2297 uintptr_t pReserved)
2298{
2299}
2300
2301# define SET_INVALID_PARAM_HANDLER \
2302 ((void)_set_invalid_parameter_handler(bad_param_handler))
2303#else
2304# define SET_INVALID_PARAM_HANDLER
2305#endif
2306
Bram Moolenaar4f974752019-02-17 17:44:42 +01002307#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308
2309/*
2310 * GUI version of mch_init().
2311 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002312 static void
2313mch_init_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002315# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002317# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318
Bram Moolenaar0f873732019-12-05 20:28:46 +01002319 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002320 SET_INVALID_PARAM_HANDLER;
2321
Bram Moolenaar0f873732019-12-05 20:28:46 +01002322 // Let critical errors result in a failure, not in a dialog box. Required
2323 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 SetErrorMode(SEM_FAILCRITICALERRORS);
2325
Bram Moolenaar0f873732019-12-05 20:28:46 +01002326 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327
Bram Moolenaar0f873732019-12-05 20:28:46 +01002328 // Specify window size. Is there a place to get the default from?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 Rows = 25;
2330 Columns = 80;
2331
Bram Moolenaar0f873732019-12-05 20:28:46 +01002332 // Look for 'vimrun'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 {
2334 char_u vimrun_location[_MAX_PATH + 4];
2335
Bram Moolenaar0f873732019-12-05 20:28:46 +01002336 // First try in same directory as gvim.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 STRCPY(vimrun_location, exe_name);
2338 STRCPY(gettail(vimrun_location), "vimrun.exe");
2339 if (mch_getperm(vimrun_location) >= 0)
2340 {
2341 if (*skiptowhite(vimrun_location) != NUL)
2342 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002343 // Enclose path with white space in double quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 mch_memmove(vimrun_location + 1, vimrun_location,
2345 STRLEN(vimrun_location) + 1);
2346 *vimrun_location = '"';
2347 STRCPY(gettail(vimrun_location), "vimrun\" ");
2348 }
2349 else
2350 STRCPY(gettail(vimrun_location), "vimrun ");
2351
2352 vimrun_path = (char *)vim_strsave(vimrun_location);
2353 s_dont_use_vimrun = FALSE;
2354 }
Bram Moolenaar95da1362020-05-30 18:37:55 +02002355 else if (executable_exists("vimrun.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 s_dont_use_vimrun = FALSE;
2357
Bram Moolenaar0f873732019-12-05 20:28:46 +01002358 // Don't give the warning for a missing vimrun.exe right now, but only
2359 // when vimrun was supposed to be used. Don't bother people that do
2360 // not need vimrun.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 if (s_dont_use_vimrun)
2362 need_vimrun_warning = TRUE;
2363 }
2364
2365 /*
2366 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2367 * Otherwise the default "findstr /n" is used.
2368 */
Bram Moolenaar95da1362020-05-30 18:37:55 +02002369 if (!executable_exists("findstr.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2371
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002372# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002373 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002374# endif
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01002375
2376 vtp_flag_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377}
2378
2379
Bram Moolenaar0f873732019-12-05 20:28:46 +01002380#endif // FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002381
2382#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002384# define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2385# define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386
2387/*
2388 * ClearConsoleBuffer()
2389 * Description:
2390 * Clears the entire contents of the console screen buffer, using the
2391 * specified attribute.
2392 * Returns:
2393 * TRUE on success
2394 */
2395 static BOOL
2396ClearConsoleBuffer(WORD wAttribute)
2397{
2398 CONSOLE_SCREEN_BUFFER_INFO csbi;
2399 COORD coord;
2400 DWORD NumCells, dummy;
2401
2402 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2403 return FALSE;
2404
2405 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2406 coord.X = 0;
2407 coord.Y = 0;
2408 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2409 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2412 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414
2415 return TRUE;
2416}
2417
2418/*
2419 * FitConsoleWindow()
2420 * Description:
2421 * Checks if the console window will fit within given buffer dimensions.
2422 * Also, if requested, will shrink the window to fit.
2423 * Returns:
2424 * TRUE on success
2425 */
2426 static BOOL
2427FitConsoleWindow(
2428 COORD dwBufferSize,
2429 BOOL WantAdjust)
2430{
2431 CONSOLE_SCREEN_BUFFER_INFO csbi;
2432 COORD dwWindowSize;
2433 BOOL NeedAdjust = FALSE;
2434
2435 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2436 {
2437 /*
2438 * A buffer resize will fail if the current console window does
2439 * not lie completely within that buffer. To avoid this, we might
2440 * have to move and possibly shrink the window.
2441 */
2442 if (csbi.srWindow.Right >= dwBufferSize.X)
2443 {
2444 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2445 if (dwWindowSize.X > dwBufferSize.X)
2446 dwWindowSize.X = dwBufferSize.X;
2447 csbi.srWindow.Right = dwBufferSize.X - 1;
2448 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2449 NeedAdjust = TRUE;
2450 }
2451 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2452 {
2453 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2454 if (dwWindowSize.Y > dwBufferSize.Y)
2455 dwWindowSize.Y = dwBufferSize.Y;
2456 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2457 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2458 NeedAdjust = TRUE;
2459 }
2460 if (NeedAdjust && WantAdjust)
2461 {
2462 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2463 return FALSE;
2464 }
2465 return TRUE;
2466 }
2467
2468 return FALSE;
2469}
2470
2471typedef struct ConsoleBufferStruct
2472{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002473 BOOL IsValid;
2474 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002475 PCHAR_INFO Buffer;
2476 COORD BufferSize;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002477 PSMALL_RECT Regions;
2478 int NumRegions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479} ConsoleBuffer;
2480
2481/*
2482 * SaveConsoleBuffer()
2483 * Description:
2484 * Saves important information about the console buffer, including the
2485 * actual buffer contents. The saved information is suitable for later
2486 * restoration by RestoreConsoleBuffer().
2487 * Returns:
2488 * TRUE if all information was saved; FALSE otherwise
2489 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2490 */
2491 static BOOL
2492SaveConsoleBuffer(
2493 ConsoleBuffer *cb)
2494{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002495 DWORD NumCells;
2496 COORD BufferCoord;
2497 SMALL_RECT ReadRegion;
2498 WORD Y, Y_incr;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002499 int i, numregions;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002500
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 if (cb == NULL)
2502 return FALSE;
2503
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002504 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 {
2506 cb->IsValid = FALSE;
2507 return FALSE;
2508 }
2509 cb->IsValid = TRUE;
2510
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002511 /*
2512 * Allocate a buffer large enough to hold the entire console screen
2513 * buffer. If this ConsoleBuffer structure has already been initialized
2514 * with a buffer of the correct size, then just use that one.
2515 */
2516 if (!cb->IsValid || cb->Buffer == NULL ||
2517 cb->BufferSize.X != cb->Info.dwSize.X ||
2518 cb->BufferSize.Y != cb->Info.dwSize.Y)
2519 {
2520 cb->BufferSize.X = cb->Info.dwSize.X;
2521 cb->BufferSize.Y = cb->Info.dwSize.Y;
2522 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2523 vim_free(cb->Buffer);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002524 cb->Buffer = ALLOC_MULT(CHAR_INFO, NumCells);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002525 if (cb->Buffer == NULL)
2526 return FALSE;
2527 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528
2529 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002530 * We will now copy the console screen buffer into our buffer.
2531 * ReadConsoleOutput() seems to be limited as far as how much you
2532 * can read at a time. Empirically, this number seems to be about
2533 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2534 * in chunks until it is all copied. The chunks will all have the
2535 * same horizontal characteristics, so initialize them now. The
2536 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002538 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002539 ReadRegion.Left = 0;
2540 ReadRegion.Right = cb->Info.dwSize.X - 1;
2541 Y_incr = 12000 / cb->Info.dwSize.X;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002542
2543 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr;
2544 if (cb->Regions == NULL || numregions != cb->NumRegions)
2545 {
2546 cb->NumRegions = numregions;
2547 vim_free(cb->Regions);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002548 cb->Regions = ALLOC_MULT(SMALL_RECT, cb->NumRegions);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002549 if (cb->Regions == NULL)
2550 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002551 VIM_CLEAR(cb->Buffer);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002552 return FALSE;
2553 }
2554 }
2555
2556 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002558 /*
2559 * Read into position (0, Y) in our buffer.
2560 */
2561 BufferCoord.Y = Y;
2562 /*
2563 * Read the region whose top left corner is (0, Y) and whose bottom
2564 * right corner is (width - 1, Y + Y_incr - 1). This should define
2565 * a region of size width by Y_incr. Don't worry if this region is
2566 * too large for the remaining buffer; it will be cropped.
2567 */
2568 ReadRegion.Top = Y;
2569 ReadRegion.Bottom = Y + Y_incr - 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002570 if (!ReadConsoleOutputW(g_hConOut, // output handle
2571 cb->Buffer, // our buffer
2572 cb->BufferSize, // dimensions of our buffer
2573 BufferCoord, // offset in our buffer
2574 &ReadRegion)) // region to save
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002575 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002576 VIM_CLEAR(cb->Buffer);
2577 VIM_CLEAR(cb->Regions);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002578 return FALSE;
2579 }
Bram Moolenaar444fda22017-08-11 20:37:00 +02002580 cb->Regions[i] = ReadRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 }
2582
2583 return TRUE;
2584}
2585
2586/*
2587 * RestoreConsoleBuffer()
2588 * Description:
2589 * Restores important information about the console buffer, including the
2590 * actual buffer contents, if desired. The information to restore is in
2591 * the same format used by SaveConsoleBuffer().
2592 * Returns:
2593 * TRUE on success
2594 */
2595 static BOOL
2596RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002597 ConsoleBuffer *cb,
2598 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002600 COORD BufferCoord;
2601 SMALL_RECT WriteRegion;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002602 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603
2604 if (cb == NULL || !cb->IsValid)
2605 return FALSE;
2606
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002607 /*
2608 * Before restoring the buffer contents, clear the current buffer, and
2609 * restore the cursor position and window information. Doing this now
2610 * prevents old buffer contents from "flashing" onto the screen.
2611 */
2612 if (RestoreScreen)
2613 ClearConsoleBuffer(cb->Info.wAttributes);
2614
2615 FitConsoleWindow(cb->Info.dwSize, TRUE);
2616 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2617 return FALSE;
2618 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2619 return FALSE;
2620
2621 if (!RestoreScreen)
2622 {
2623 /*
2624 * No need to restore the screen buffer contents, so we're done.
2625 */
2626 return TRUE;
2627 }
2628
2629 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2630 return FALSE;
2631 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2632 return FALSE;
2633
2634 /*
2635 * Restore the screen buffer contents.
2636 */
2637 if (cb->Buffer != NULL)
2638 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002639 for (i = 0; i < cb->NumRegions; i++)
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002640 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002641 BufferCoord.X = cb->Regions[i].Left;
2642 BufferCoord.Y = cb->Regions[i].Top;
2643 WriteRegion = cb->Regions[i];
Bram Moolenaar0f873732019-12-05 20:28:46 +01002644 if (!WriteConsoleOutputW(g_hConOut, // output handle
2645 cb->Buffer, // our buffer
2646 cb->BufferSize, // dimensions of our buffer
2647 BufferCoord, // offset in our buffer
2648 &WriteRegion)) // region to restore
Bram Moolenaar444fda22017-08-11 20:37:00 +02002649 return FALSE;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002650 }
2651 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652
2653 return TRUE;
2654}
2655
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002656# define FEAT_RESTORE_ORIG_SCREEN
2657# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002658static ConsoleBuffer g_cbOrig = { 0 };
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002659# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660static ConsoleBuffer g_cbNonTermcap = { 0 };
2661static ConsoleBuffer g_cbTermcap = { 0 };
2662
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002663# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664char g_szOrigTitle[256] = { 0 };
Bram Moolenaar0f873732019-12-05 20:28:46 +01002665HWND g_hWnd = NULL; // also used in os_mswin.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666static HICON g_hOrigIconSmall = NULL;
2667static HICON g_hOrigIcon = NULL;
2668static HICON g_hVimIcon = NULL;
2669static BOOL g_fCanChangeIcon = FALSE;
2670
Bram Moolenaar0f873732019-12-05 20:28:46 +01002671// ICON* are not defined in VC++ 4.0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002672# ifndef ICON_SMALL
2673# define ICON_SMALL 0
2674# endif
2675# ifndef ICON_BIG
2676# define ICON_BIG 1
2677# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678/*
2679 * GetConsoleIcon()
2680 * Description:
2681 * Attempts to retrieve the small icon and/or the big icon currently in
2682 * use by a given window.
2683 * Returns:
2684 * TRUE on success
2685 */
2686 static BOOL
2687GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002688 HWND hWnd,
2689 HICON *phIconSmall,
2690 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002691{
2692 if (hWnd == NULL)
2693 return FALSE;
2694
2695 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002696 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2697 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002699 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2700 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 return TRUE;
2702}
2703
2704/*
2705 * SetConsoleIcon()
2706 * Description:
2707 * Attempts to change the small icon and/or the big icon currently in
2708 * use by a given window.
2709 * Returns:
2710 * TRUE on success
2711 */
2712 static BOOL
2713SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002714 HWND hWnd,
2715 HICON hIconSmall,
2716 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 if (hWnd == NULL)
2719 return FALSE;
2720
2721 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002722 SendMessage(hWnd, WM_SETICON,
2723 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002725 SendMessage(hWnd, WM_SETICON,
2726 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 return TRUE;
2728}
2729
2730/*
2731 * SaveConsoleTitleAndIcon()
2732 * Description:
2733 * Saves the current console window title in g_szOrigTitle, for later
2734 * restoration. Also, attempts to obtain a handle to the console window,
2735 * and use it to save the small and big icons currently in use by the
2736 * console window. This is not always possible on some versions of Windows;
2737 * nor is it possible when running Vim remotely using Telnet (since the
2738 * console window the user sees is owned by a remote process).
2739 */
2740 static void
2741SaveConsoleTitleAndIcon(void)
2742{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002743 // Save the original title.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2745 return;
2746
2747 /*
2748 * Obtain a handle to the console window using GetConsoleWindow() from
2749 * KERNEL32.DLL; we need to handle in order to change the window icon.
2750 * This function only exists on NT-based Windows, starting with Windows
2751 * 2000. On older operating systems, we can't change the window icon
2752 * anyway.
2753 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002754 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 if (g_hWnd == NULL)
2756 return;
2757
Bram Moolenaar0f873732019-12-05 20:28:46 +01002758 // Save the original console window icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2760 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2761 return;
2762
Bram Moolenaar0f873732019-12-05 20:28:46 +01002763 // Extract the first icon contained in the Vim executable.
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002764 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002765 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 if (g_hVimIcon != NULL)
2767 g_fCanChangeIcon = TRUE;
2768}
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002769# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770
2771static int g_fWindInitCalled = FALSE;
2772static int g_fTermcapMode = FALSE;
2773static CONSOLE_CURSOR_INFO g_cci;
2774static DWORD g_cmodein = 0;
2775static DWORD g_cmodeout = 0;
2776
2777/*
2778 * non-GUI version of mch_init().
2779 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002780 static void
2781mch_init_c(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002783# ifndef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002784 CONSOLE_SCREEN_BUFFER_INFO csbi;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002785# endif
2786# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002788# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789
Bram Moolenaar0f873732019-12-05 20:28:46 +01002790 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002791 SET_INVALID_PARAM_HANDLER;
2792
Bram Moolenaar0f873732019-12-05 20:28:46 +01002793 // Let critical errors result in a failure, not in a dialog box. Required
2794 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002795 SetErrorMode(SEM_FAILCRITICALERRORS);
2796
Bram Moolenaar0f873732019-12-05 20:28:46 +01002797 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 out_flush();
2799
Bram Moolenaar0f873732019-12-05 20:28:46 +01002800 // Obtain handles for the standard Console I/O devices
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 if (read_cmd_fd == 0)
2802 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2803 else
2804 create_conin();
2805 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2806
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002807# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar0f873732019-12-05 20:28:46 +01002808 // Save the initial console buffer for later restoration
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002809 SaveConsoleBuffer(&g_cbOrig);
2810 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002811# else
Bram Moolenaar0f873732019-12-05 20:28:46 +01002812 // Get current text attributes
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002813 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2814 g_attrCurrent = g_attrDefault = csbi.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002815# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 if (cterm_normal_fg_color == 0)
2817 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2818 if (cterm_normal_bg_color == 0)
2819 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2820
Bram Moolenaarbdace832019-03-02 10:13:42 +01002821 // Fg and Bg color index number at startup
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02002822 g_color_index_fg = g_attrDefault & 0xf;
2823 g_color_index_bg = (g_attrDefault >> 4) & 0xf;
2824
Bram Moolenaar0f873732019-12-05 20:28:46 +01002825 // set termcap codes to current text attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002826 update_tcap(g_attrCurrent);
2827
2828 GetConsoleCursorInfo(g_hConOut, &g_cci);
2829 GetConsoleMode(g_hConIn, &g_cmodein);
2830 GetConsoleMode(g_hConOut, &g_cmodeout);
2831
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002832# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 SaveConsoleTitleAndIcon();
2834 /*
2835 * Set both the small and big icons of the console window to Vim's icon.
2836 * Note that Vim presently only has one size of icon (32x32), but it
2837 * automatically gets scaled down to 16x16 when setting the small icon.
2838 */
2839 if (g_fCanChangeIcon)
2840 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002841# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842
2843 ui_get_shellsize();
2844
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002845# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846 fdDump = fopen("dump", "wt");
2847
2848 if (fdDump)
2849 {
2850 time_t t;
2851
2852 time(&t);
2853 fputs(ctime(&t), fdDump);
2854 fflush(fdDump);
2855 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002856# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857
2858 g_fWindInitCalled = TRUE;
2859
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002862# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002863 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002864# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002865
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02002866 vtp_flag_init();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002867 vtp_init();
Bram Moolenaar06b7b582020-05-30 17:49:25 +02002868 wt_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869}
2870
2871/*
2872 * non-GUI version of mch_exit().
2873 * Shut down and exit with status `r'
2874 * Careful: mch_exit() may be called before mch_init()!
2875 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002876 static void
2877mch_exit_c(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002879 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002881 vtp_exit();
2882
Bram Moolenaar955f1982017-02-05 15:10:51 +01002883 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 if (g_fWindInitCalled)
2885 settmode(TMODE_COOK);
2886
Bram Moolenaar0f873732019-12-05 20:28:46 +01002887 ml_close_all(TRUE); // remove all memfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888
2889 if (g_fWindInitCalled)
2890 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002891# ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02002892 mch_restore_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 /*
2894 * Restore both the small and big icons of the console window to
2895 * what they were at startup. Don't do this when the window is
2896 * closed, Vim would hang here.
2897 */
2898 if (g_fCanChangeIcon && !g_fForceExit)
2899 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002900# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002902# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 if (fdDump)
2904 {
2905 time_t t;
2906
2907 time(&t);
2908 fputs(ctime(&t), fdDump);
2909 fclose(fdDump);
2910 }
2911 fdDump = NULL;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002912# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 }
2914
2915 SetConsoleCursorInfo(g_hConOut, &g_cci);
2916 SetConsoleMode(g_hConIn, g_cmodein);
2917 SetConsoleMode(g_hConOut, g_cmodeout);
2918
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002919# ifdef DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 dyn_libintl_end();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002921# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922
2923 exit(r);
2924}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002925#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002927 void
2928mch_init(void)
2929{
2930#ifdef VIMDLL
2931 if (gui.starting)
2932 mch_init_g();
2933 else
2934 mch_init_c();
2935#elif defined(FEAT_GUI_MSWIN)
2936 mch_init_g();
2937#else
2938 mch_init_c();
2939#endif
2940}
2941
2942 void
2943mch_exit(int r)
2944{
Bram Moolenaar173d8412020-04-19 14:02:26 +02002945#ifdef FEAT_NETBEANS_INTG
2946 netbeans_send_disconnect();
2947#endif
2948
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002949#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02002950 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002951 mch_exit_g(r);
2952 else
2953 mch_exit_c(r);
2954#elif defined(FEAT_GUI_MSWIN)
2955 mch_exit_g(r);
2956#else
2957 mch_exit_c(r);
2958#endif
2959}
2960
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961/*
2962 * Do we have an interactive window?
2963 */
2964 int
2965mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002966 int argc UNUSED,
2967 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968{
2969 get_exe_name();
2970
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002971#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002972 return OK; // GUI always has a tty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973#else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002974# ifdef VIMDLL
2975 if (gui.in_use)
2976 return OK;
2977# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 if (isatty(1))
2979 return OK;
2980 return FAIL;
2981#endif
2982}
2983
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002984/*
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01002985 * Set the case of the file name, if it already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 * When "len" is > 0, also expand short to long filenames.
2987 */
2988 void
2989fname_case(
2990 char_u *name,
2991 int len)
2992{
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01002993 int flen;
2994 WCHAR *p;
2995 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00002997 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002998 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999 return;
3000
3001 slash_adjust(name);
3002
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003003 p = enc_to_utf16(name, NULL);
3004 if (p == NULL)
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003005 return;
3006
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003007 if (GetLongPathNameW(p, buf, _MAX_PATH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003009 char_u *q = utf16_to_enc(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003011 if (q != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003013 if (len > 0 || flen >= (int)STRLEN(q))
3014 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
3015 vim_free(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 }
3017 }
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003018 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019}
3020
3021
3022/*
3023 * Insert user name in s[len].
3024 */
3025 int
3026mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003027 char_u *s,
3028 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003030 WCHAR wszUserName[256 + 1]; // UNLEN is 256
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003031 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003033 if (GetUserNameW(wszUserName, &wcch))
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003034 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003035 char_u *p = utf16_to_enc(wszUserName, NULL);
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003036
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003037 if (p != NULL)
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003038 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003039 vim_strncpy(s, p, len - 1);
3040 vim_free(p);
3041 return OK;
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003042 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 s[0] = NUL;
3045 return FAIL;
3046}
3047
3048
3049/*
3050 * Insert host name in s[len].
3051 */
3052 void
3053mch_get_host_name(
3054 char_u *s,
3055 int len)
3056{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003057 WCHAR wszHostName[256 + 1];
3058 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003060 if (GetComputerNameW(wszHostName, &wcch))
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003061 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003062 char_u *p = utf16_to_enc(wszHostName, NULL);
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003063
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003064 if (p != NULL)
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003065 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003066 vim_strncpy(s, p, len - 1);
3067 vim_free(p);
3068 return;
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003069 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071}
3072
3073
3074/*
3075 * return process ID
3076 */
3077 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003078mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079{
3080 return (long)GetCurrentProcessId();
3081}
3082
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003083/*
3084 * return TRUE if process "pid" is still running
3085 */
3086 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02003087mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003088{
3089 HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, 0, (DWORD)pid);
3090 DWORD status = 0;
3091 int ret = FALSE;
3092
3093 if (hProcess == NULL)
3094 return FALSE; // might not have access
3095 if (GetExitCodeProcess(hProcess, &status) )
3096 ret = status == STILL_ACTIVE;
3097 CloseHandle(hProcess);
3098 return ret;
3099}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100
3101/*
3102 * Get name of current directory into buffer 'buf' of length 'len' bytes.
3103 * Return OK for success, FAIL for failure.
3104 */
3105 int
3106mch_dirname(
3107 char_u *buf,
3108 int len)
3109{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003110 WCHAR wbuf[_MAX_PATH + 1];
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003111
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 /*
3113 * Originally this was:
3114 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3115 * But the Win32s known bug list says that getcwd() doesn't work
3116 * so use the Win32 system call instead. <Negri>
3117 */
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003118 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003120 WCHAR wcbuf[_MAX_PATH + 1];
3121 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003123 if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003125 p = utf16_to_enc(wcbuf, NULL);
3126 if (STRLEN(p) >= (size_t)len)
Bram Moolenaarcea1f9e2018-08-19 14:38:42 +02003127 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003128 // long path name is too long, fall back to short one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003130 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 }
3132 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003133 if (p == NULL)
3134 p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003135
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003136 if (p != NULL)
3137 {
3138 vim_strncpy(buf, p, len - 1);
3139 vim_free(p);
3140 return OK;
3141 }
3142 }
3143 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144}
3145
3146/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003147 * Get file permissions for "name".
3148 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 */
3150 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003151mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003153 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003154 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003156 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003157 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158}
3159
3160
3161/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003162 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003163 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003164 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 */
3166 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003167mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003169 long n;
3170 WCHAR *p;
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003171
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003172 p = enc_to_utf16(name, NULL);
3173 if (p == NULL)
3174 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003176 n = _wchmod(p, perm);
3177 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003178 if (n == -1)
3179 return FAIL;
3180
3181 win32_set_archive(name);
3182
3183 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184}
3185
3186/*
3187 * Set hidden flag for "name".
3188 */
3189 void
3190mch_hide(char_u *name)
3191{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003192 int attrs = win32_getattrs(name);
3193 if (attrs == -1)
3194 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003196 attrs |= FILE_ATTRIBUTE_HIDDEN;
3197 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198}
3199
3200/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003201 * Return TRUE if file "name" exists and is hidden.
3202 */
3203 int
3204mch_ishidden(char_u *name)
3205{
3206 int f = win32_getattrs(name);
3207
3208 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003209 return FALSE; // file does not exist at all
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003210
3211 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3212}
3213
3214/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 * return TRUE if "name" is a directory
3216 * return FALSE if "name" is not a directory or upon error
3217 */
3218 int
3219mch_isdir(char_u *name)
3220{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003221 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222
3223 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003224 return FALSE; // file does not exist at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225
3226 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3227}
3228
3229/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003230 * return TRUE if "name" is a directory, NOT a symlink to a directory
3231 * return FALSE if "name" is not a directory
3232 * return FALSE for error
3233 */
3234 int
3235mch_isrealdir(char_u *name)
3236{
3237 return mch_isdir(name) && !mch_is_symbolic_link(name);
3238}
3239
3240/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003241 * Create directory "name".
3242 * Return 0 on success, -1 on error.
3243 */
3244 int
3245mch_mkdir(char_u *name)
3246{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003247 WCHAR *p;
3248 int retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003249
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003250 p = enc_to_utf16(name, NULL);
3251 if (p == NULL)
3252 return -1;
3253 retval = _wmkdir(p);
3254 vim_free(p);
3255 return retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003256}
3257
3258/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003259 * Delete directory "name".
3260 * Return 0 on success, -1 on error.
3261 */
3262 int
3263mch_rmdir(char_u *name)
3264{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003265 WCHAR *p;
3266 int retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003267
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003268 p = enc_to_utf16(name, NULL);
3269 if (p == NULL)
3270 return -1;
3271 retval = _wrmdir(p);
3272 vim_free(p);
3273 return retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003274}
3275
3276/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003277 * Return TRUE if file "fname" has more than one link.
3278 */
3279 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003280mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003281{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003282 BY_HANDLE_FILE_INFORMATION info;
3283
3284 return win32_fileinfo(fname, &info) == FILEINFO_OK
3285 && info.nNumberOfLinks > 1;
3286}
3287
3288/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003289 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003290 */
3291 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003292mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003293{
3294 HANDLE hFind;
3295 int res = FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003296 DWORD fileFlags = 0, reparseTag = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003297 WCHAR *wn;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003298 WIN32_FIND_DATAW findDataW;
3299
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003300 wn = enc_to_utf16(name, NULL);
3301 if (wn == NULL)
3302 return FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003303
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003304 hFind = FindFirstFileW(wn, &findDataW);
3305 vim_free(wn);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003306 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003307 {
3308 fileFlags = findDataW.dwFileAttributes;
3309 reparseTag = findDataW.dwReserved0;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003310 FindClose(hFind);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003311 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003312
3313 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003314 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3315 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003316 res = TRUE;
3317
3318 return res;
3319}
3320
3321/*
3322 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3323 * link.
3324 */
3325 int
3326mch_is_linked(char_u *fname)
3327{
3328 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3329 return TRUE;
3330 return FALSE;
3331}
3332
3333/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003334 * Get the by-handle-file-information for "fname".
3335 * Returns FILEINFO_OK when OK.
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003336 * Returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003337 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3338 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3339 */
3340 int
3341win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3342{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003343 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003344 int res = FILEINFO_READ_FAIL;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003345 WCHAR *wn;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003346
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003347 wn = enc_to_utf16(fname, NULL);
3348 if (wn == NULL)
3349 return FILEINFO_ENC_FAIL;
3350
3351 hFile = CreateFileW(wn, // file name
3352 GENERIC_READ, // access mode
3353 FILE_SHARE_READ | FILE_SHARE_WRITE, // share mode
3354 NULL, // security descriptor
3355 OPEN_EXISTING, // creation disposition
3356 FILE_FLAG_BACKUP_SEMANTICS, // file attributes
3357 NULL); // handle to template file
3358 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003359
3360 if (hFile != INVALID_HANDLE_VALUE)
3361 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003362 if (GetFileInformationByHandle(hFile, info) != 0)
3363 res = FILEINFO_OK;
3364 else
3365 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003366 CloseHandle(hFile);
3367 }
3368
Bram Moolenaar03f48552006-02-28 23:52:23 +00003369 return res;
3370}
3371
3372/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003373 * get file attributes for `name'
3374 * -1 : error
3375 * else FILE_ATTRIBUTE_* defined in winnt.h
3376 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003377 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003378win32_getattrs(char_u *name)
3379{
3380 int attr;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003381 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003382
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003383 p = enc_to_utf16(name, NULL);
3384 if (p == NULL)
3385 return INVALID_FILE_ATTRIBUTES;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003386
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003387 attr = GetFileAttributesW(p);
3388 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003389
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003390 return attr;
3391}
3392
3393/*
3394 * set file attributes for `name' to `attrs'
3395 *
3396 * return -1 for failure, 0 otherwise
3397 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003398 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003399win32_setattrs(char_u *name, int attrs)
3400{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003401 int res;
3402 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003403
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003404 p = enc_to_utf16(name, NULL);
3405 if (p == NULL)
3406 return -1;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003407
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003408 res = SetFileAttributesW(p, attrs);
3409 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003410
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003411 return res ? 0 : -1;
3412}
3413
3414/*
3415 * Set archive flag for "name".
3416 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003417 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003418win32_set_archive(char_u *name)
3419{
3420 int attrs = win32_getattrs(name);
3421 if (attrs == -1)
3422 return -1;
3423
3424 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3425 return win32_setattrs(name, attrs);
3426}
3427
3428/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 * Return TRUE if file or directory "name" is writable (not readonly).
3430 * Strange semantics of Win32: a readonly directory is writable, but you can't
3431 * delete a file. Let's say this means it is writable.
3432 */
3433 int
3434mch_writable(char_u *name)
3435{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003436 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003438 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3439 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440}
3441
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003443 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003444 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003445 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3446 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 */
3448 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003449mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450{
Bram Moolenaar95da1362020-05-30 18:37:55 +02003451 return executable_exists((char *)name, path, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453
3454/*
3455 * Check what "name" is:
3456 * NODE_NORMAL: file or directory (or doesn't exist)
3457 * NODE_WRITABLE: writable device, socket, fifo, etc.
3458 * NODE_OTHER: non-writable things
3459 */
3460 int
3461mch_nodetype(char_u *name)
3462{
3463 HANDLE hFile;
3464 int type;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003465 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466
Bram Moolenaar0f873732019-12-05 20:28:46 +01003467 // We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3468 // read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3469 // here.
Bram Moolenaar043545e2006-10-10 16:44:07 +00003470 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3471 return NODE_WRITABLE;
3472
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003473 wn = enc_to_utf16(name, NULL);
3474 if (wn == NULL)
3475 return NODE_NORMAL;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003476
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003477 hFile = CreateFileW(wn, // file name
3478 GENERIC_WRITE, // access mode
3479 0, // share mode
3480 NULL, // security descriptor
3481 OPEN_EXISTING, // creation disposition
3482 0, // file attributes
3483 NULL); // handle to template file
3484 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 if (hFile == INVALID_HANDLE_VALUE)
3486 return NODE_NORMAL;
3487
3488 type = GetFileType(hFile);
3489 CloseHandle(hFile);
3490 if (type == FILE_TYPE_CHAR)
3491 return NODE_WRITABLE;
3492 if (type == FILE_TYPE_DISK)
3493 return NODE_NORMAL;
3494 return NODE_OTHER;
3495}
3496
3497#ifdef HAVE_ACL
3498struct my_acl
3499{
3500 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3501 PSID pSidOwner;
3502 PSID pSidGroup;
3503 PACL pDacl;
3504 PACL pSacl;
3505};
3506#endif
3507
3508/*
3509 * Return a pointer to the ACL of file "fname" in allocated memory.
3510 * Return NULL if the ACL is not available for whatever reason.
3511 */
3512 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003513mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514{
3515#ifndef HAVE_ACL
3516 return (vim_acl_T)NULL;
3517#else
3518 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003519 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003521 p = ALLOC_CLEAR_ONE(struct my_acl);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003522 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003524 WCHAR *wn;
Bram Moolenaar27515922013-06-29 15:36:26 +02003525
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003526 wn = enc_to_utf16(fname, NULL);
3527 if (wn == NULL)
3528 return NULL;
3529
3530 // Try to retrieve the entire security descriptor.
3531 err = GetNamedSecurityInfoW(
3532 wn, // Abstract filename
3533 SE_FILE_OBJECT, // File Object
3534 OWNER_SECURITY_INFORMATION |
3535 GROUP_SECURITY_INFORMATION |
3536 DACL_SECURITY_INFORMATION |
3537 SACL_SECURITY_INFORMATION,
3538 &p->pSidOwner, // Ownership information.
3539 &p->pSidGroup, // Group membership.
3540 &p->pDacl, // Discretionary information.
3541 &p->pSacl, // For auditing purposes.
3542 &p->pSecurityDescriptor);
3543 if (err == ERROR_ACCESS_DENIED ||
3544 err == ERROR_PRIVILEGE_NOT_HELD)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003545 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003546 // Retrieve only DACL.
3547 (void)GetNamedSecurityInfoW(
3548 wn,
3549 SE_FILE_OBJECT,
3550 DACL_SECURITY_INFORMATION,
3551 NULL,
3552 NULL,
3553 &p->pDacl,
3554 NULL,
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003555 &p->pSecurityDescriptor);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003556 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003557 if (p->pSecurityDescriptor == NULL)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003558 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003559 mch_free_acl((vim_acl_T)p);
3560 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003562 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 }
3564
3565 return (vim_acl_T)p;
3566#endif
3567}
3568
Bram Moolenaar27515922013-06-29 15:36:26 +02003569#ifdef HAVE_ACL
3570/*
3571 * Check if "acl" contains inherited ACE.
3572 */
3573 static BOOL
3574is_acl_inherited(PACL acl)
3575{
3576 DWORD i;
3577 ACL_SIZE_INFORMATION acl_info;
3578 PACCESS_ALLOWED_ACE ace;
3579
3580 acl_info.AceCount = 0;
3581 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3582 for (i = 0; i < acl_info.AceCount; i++)
3583 {
3584 GetAce(acl, i, (LPVOID *)&ace);
3585 if (ace->Header.AceFlags & INHERITED_ACE)
3586 return TRUE;
3587 }
3588 return FALSE;
3589}
3590#endif
3591
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592/*
3593 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3594 * Errors are ignored.
3595 * This must only be called with "acl" equal to what mch_get_acl() returned.
3596 */
3597 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003598mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599{
3600#ifdef HAVE_ACL
3601 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003602 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003603 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003605 if (p == NULL)
3606 return;
3607
3608 wn = enc_to_utf16(fname, NULL);
3609 if (wn == NULL)
3610 return;
3611
3612 // Set security flags
3613 if (p->pSidOwner)
3614 sec_info |= OWNER_SECURITY_INFORMATION;
3615 if (p->pSidGroup)
3616 sec_info |= GROUP_SECURITY_INFORMATION;
3617 if (p->pDacl)
Bram Moolenaar27515922013-06-29 15:36:26 +02003618 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003619 sec_info |= DACL_SECURITY_INFORMATION;
3620 // Do not inherit its parent's DACL.
3621 // If the DACL is inherited, Cygwin permissions would be changed.
3622 if (!is_acl_inherited(p->pDacl))
3623 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
Bram Moolenaar27515922013-06-29 15:36:26 +02003624 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003625 if (p->pSacl)
3626 sec_info |= SACL_SECURITY_INFORMATION;
3627
3628 (void)SetNamedSecurityInfoW(
3629 wn, // Abstract filename
3630 SE_FILE_OBJECT, // File Object
3631 sec_info,
3632 p->pSidOwner, // Ownership information.
3633 p->pSidGroup, // Group membership.
3634 p->pDacl, // Discretionary information.
3635 p->pSacl // For auditing purposes.
3636 );
3637 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638#endif
3639}
3640
3641 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003642mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643{
3644#ifdef HAVE_ACL
3645 struct my_acl *p = (struct my_acl *)acl;
3646
3647 if (p != NULL)
3648 {
3649 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3650 vim_free(p);
3651 }
3652#endif
3653}
3654
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003655#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656
3657/*
3658 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3659 */
3660 static BOOL WINAPI
3661handler_routine(
3662 DWORD dwCtrlType)
3663{
Bram Moolenaar589b1102017-08-12 16:39:05 +02003664 INPUT_RECORD ir;
3665 DWORD out;
3666
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 switch (dwCtrlType)
3668 {
3669 case CTRL_C_EVENT:
3670 if (ctrl_c_interrupts)
3671 g_fCtrlCPressed = TRUE;
3672 return TRUE;
3673
3674 case CTRL_BREAK_EVENT:
3675 g_fCBrkPressed = TRUE;
Bram Moolenaar589b1102017-08-12 16:39:05 +02003676 ctrl_break_was_pressed = TRUE;
Bram Moolenaar0f873732019-12-05 20:28:46 +01003677 // ReadConsoleInput is blocking, send a key event to continue.
Bram Moolenaar589b1102017-08-12 16:39:05 +02003678 ir.EventType = KEY_EVENT;
3679 ir.Event.KeyEvent.bKeyDown = TRUE;
3680 ir.Event.KeyEvent.wRepeatCount = 1;
3681 ir.Event.KeyEvent.wVirtualKeyCode = VK_CANCEL;
3682 ir.Event.KeyEvent.wVirtualScanCode = 0;
3683 ir.Event.KeyEvent.dwControlKeyState = 0;
3684 ir.Event.KeyEvent.uChar.UnicodeChar = 0;
3685 WriteConsoleInput(g_hConIn, &ir, 1, &out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 return TRUE;
3687
Bram Moolenaar0f873732019-12-05 20:28:46 +01003688 // fatal events: shut down gracefully
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 case CTRL_CLOSE_EVENT:
3690 case CTRL_LOGOFF_EVENT:
3691 case CTRL_SHUTDOWN_EVENT:
3692 windgoto((int)Rows - 1, 0);
3693 g_fForceExit = TRUE;
3694
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003695 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 (dwCtrlType == CTRL_CLOSE_EVENT
3697 ? _("close")
3698 : dwCtrlType == CTRL_LOGOFF_EVENT
3699 ? _("logoff")
3700 : _("shutdown")));
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003701# ifdef DEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 OutputDebugString(IObuff);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003703# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704
Bram Moolenaar0f873732019-12-05 20:28:46 +01003705 preserve_exit(); // output IObuff, preserve files and exit
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706
Bram Moolenaar0f873732019-12-05 20:28:46 +01003707 return TRUE; // not reached
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708
3709 default:
3710 return FALSE;
3711 }
3712}
3713
3714
3715/*
3716 * set the tty in (raw) ? "raw" : "cooked" mode
3717 */
3718 void
Bram Moolenaar26e86442020-05-17 14:06:16 +02003719mch_settmode(tmode_T tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720{
3721 DWORD cmodein;
3722 DWORD cmodeout;
3723 BOOL bEnableHandler;
3724
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003725# ifdef VIMDLL
3726 if (gui.in_use)
3727 return;
3728# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 GetConsoleMode(g_hConIn, &cmodein);
3730 GetConsoleMode(g_hConOut, &cmodeout);
3731 if (tmode == TMODE_RAW)
3732 {
3733 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3734 ENABLE_ECHO_INPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 if (g_fMouseActive)
3736 cmodein |= ENABLE_MOUSE_INPUT;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003737 cmodeout &= ~(
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003738# ifdef FEAT_TERMGUICOLORS
Bram Moolenaar0f873732019-12-05 20:28:46 +01003739 // Do not turn off the ENABLE_PROCESSED_OUTPUT flag when using
3740 // VTP.
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003741 ((vtp_working) ? 0 : ENABLE_PROCESSED_OUTPUT) |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003742# else
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003743 ENABLE_PROCESSED_OUTPUT |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003744# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003745 ENABLE_WRAP_AT_EOL_OUTPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 bEnableHandler = TRUE;
3747 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01003748 else // cooked
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 {
3750 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3751 ENABLE_ECHO_INPUT);
3752 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3753 bEnableHandler = FALSE;
3754 }
3755 SetConsoleMode(g_hConIn, cmodein);
3756 SetConsoleMode(g_hConOut, cmodeout);
3757 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3758
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003759# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 if (fdDump)
3761 {
3762 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3763 tmode == TMODE_RAW ? "raw" :
3764 tmode == TMODE_COOK ? "cooked" : "normal",
3765 cmodein, cmodeout);
3766 fflush(fdDump);
3767 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003768# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769}
3770
3771
3772/*
3773 * Get the size of the current window in `Rows' and `Columns'
3774 * Return OK when size could be determined, FAIL otherwise.
3775 */
3776 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003777mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778{
3779 CONSOLE_SCREEN_BUFFER_INFO csbi;
3780
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003781# ifdef VIMDLL
3782 if (gui.in_use)
3783 return OK;
3784# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3786 {
3787 /*
3788 * For some reason, we are trying to get the screen dimensions
3789 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3790 * variables are really intended to mean the size of Vim screen
3791 * while in termcap mode.
3792 */
3793 Rows = g_cbTermcap.Info.dwSize.Y;
3794 Columns = g_cbTermcap.Info.dwSize.X;
3795 }
3796 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3797 {
3798 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3799 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3800 }
3801 else
3802 {
3803 Rows = 25;
3804 Columns = 80;
3805 }
3806 return OK;
3807}
3808
3809/*
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003810 * Resize console buffer to 'COORD'
3811 */
3812 static void
3813ResizeConBuf(
3814 HANDLE hConsole,
3815 COORD coordScreen)
3816{
3817 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3818 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003819# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003820 if (fdDump)
3821 {
3822 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3823 GetLastError());
3824 fflush(fdDump);
3825 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003826# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003827 }
3828}
3829
3830/*
3831 * Resize console window size to 'srWindowRect'
3832 */
3833 static void
3834ResizeWindow(
3835 HANDLE hConsole,
3836 SMALL_RECT srWindowRect)
3837{
3838 if (!SetConsoleWindowInfo(hConsole, TRUE, &srWindowRect))
3839 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003840# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003841 if (fdDump)
3842 {
3843 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3844 GetLastError());
3845 fflush(fdDump);
3846 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003847# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003848 }
3849}
3850
3851/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 * Set a console window to `xSize' * `ySize'
3853 */
3854 static void
3855ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003856 HANDLE hConsole,
3857 int xSize,
3858 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003860 CONSOLE_SCREEN_BUFFER_INFO csbi; // hold current console buffer info
3861 SMALL_RECT srWindowRect; // hold the new console size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 COORD coordScreen;
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003863 COORD cursor;
Bram Moolenaar2551c032018-08-23 22:38:31 +02003864 static int resized = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003866# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 if (fdDump)
3868 {
3869 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3870 fflush(fdDump);
3871 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003872# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873
Bram Moolenaar0f873732019-12-05 20:28:46 +01003874 // get the largest size we can size the console window to
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 coordScreen = GetLargestConsoleWindowSize(hConsole);
3876
Bram Moolenaar0f873732019-12-05 20:28:46 +01003877 // define the new console window size and scroll position
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3879 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3880 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3881
3882 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3883 {
3884 int sx, sy;
3885
3886 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3887 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3888 if (sy < ySize || sx < xSize)
3889 {
3890 /*
3891 * Increasing number of lines/columns, do buffer first.
3892 * Use the maximal size in x and y direction.
3893 */
3894 if (sy < ySize)
3895 coordScreen.Y = ySize;
3896 else
3897 coordScreen.Y = sy;
3898 if (sx < xSize)
3899 coordScreen.X = xSize;
3900 else
3901 coordScreen.X = sx;
3902 SetConsoleScreenBufferSize(hConsole, coordScreen);
3903 }
3904 }
3905
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003906 // define the new console buffer size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 coordScreen.X = xSize;
3908 coordScreen.Y = ySize;
3909
Bram Moolenaar2551c032018-08-23 22:38:31 +02003910 // In the new console call API, only the first time in reverse order
3911 if (!vtp_working || resized)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 {
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003913 ResizeWindow(hConsole, srWindowRect);
3914 ResizeConBuf(hConsole, coordScreen);
3915 }
3916 else
3917 {
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003918 // Workaround for a Windows 10 bug
3919 cursor.X = srWindowRect.Left;
3920 cursor.Y = srWindowRect.Top;
3921 SetConsoleCursorPosition(hConsole, cursor);
3922
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003923 ResizeConBuf(hConsole, coordScreen);
3924 ResizeWindow(hConsole, srWindowRect);
Bram Moolenaar2551c032018-08-23 22:38:31 +02003925 resized = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 }
3927}
3928
3929
3930/*
3931 * Set the console window to `Rows' * `Columns'
3932 */
3933 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003934mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935{
3936 COORD coordScreen;
3937
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003938# ifdef VIMDLL
3939 if (gui.in_use)
3940 return;
3941# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01003942 // Don't change window size while still starting up
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 if (suppress_winsize != 0)
3944 {
3945 suppress_winsize = 2;
3946 return;
3947 }
3948
3949 if (term_console)
3950 {
3951 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3952
Bram Moolenaar0f873732019-12-05 20:28:46 +01003953 // Clamp Rows and Columns to reasonable values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954 if (Rows > coordScreen.Y)
3955 Rows = coordScreen.Y;
3956 if (Columns > coordScreen.X)
3957 Columns = coordScreen.X;
3958
3959 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3960 }
3961}
3962
3963/*
3964 * Rows and/or Columns has changed.
3965 */
3966 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003967mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003969# ifdef VIMDLL
3970 if (gui.in_use)
3971 return;
3972# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3974}
3975
3976
3977/*
3978 * Called when started up, to set the winsize that was delayed.
3979 */
3980 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003981mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982{
3983 if (suppress_winsize == 2)
3984 {
3985 suppress_winsize = 0;
3986 mch_set_shellsize();
3987 shell_resized();
3988 }
3989 suppress_winsize = 0;
3990}
Bram Moolenaar0f873732019-12-05 20:28:46 +01003991#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003993 static BOOL
3994vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003995 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003996 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01003997 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003998 STARTUPINFO *si,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02003999 PROCESS_INFORMATION *pi,
4000 LPVOID *env,
4001 char *cwd)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004002{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004003 BOOL ret = FALSE;
4004 WCHAR *wcmd, *wcwd = NULL;
4005
4006 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4007 if (wcmd == NULL)
4008 return FALSE;
4009 if (cwd != NULL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004010 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004011 wcwd = enc_to_utf16((char_u *)cwd, NULL);
4012 if (wcwd == NULL)
4013 goto theend;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004014 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004015
4016 ret = CreateProcessW(
4017 NULL, // Executable name
4018 wcmd, // Command to execute
4019 NULL, // Process security attributes
4020 NULL, // Thread security attributes
4021 inherit_handles, // Inherit handles
4022 flags, // Creation flags
4023 env, // Environment
4024 wcwd, // Current directory
4025 (LPSTARTUPINFOW)si, // Startup information
4026 pi); // Process information
4027theend:
4028 vim_free(wcmd);
4029 vim_free(wcwd);
4030 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004031}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032
4033
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004034 static HINSTANCE
4035vim_shell_execute(
4036 char *cmd,
4037 INT n_show_cmd)
4038{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004039 HINSTANCE ret;
4040 WCHAR *wcmd;
4041
4042 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4043 if (wcmd == NULL)
4044 return (HINSTANCE) 0;
4045
4046 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd);
4047 vim_free(wcmd);
4048 return ret;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004049}
4050
4051
Bram Moolenaar4f974752019-02-17 17:44:42 +01004052#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053
4054/*
4055 * Specialised version of system() for Win32 GUI mode.
4056 * This version proceeds as follows:
4057 * 1. Create a console window for use by the subprocess
4058 * 2. Run the subprocess (it gets the allocated console by default)
4059 * 3. Wait for the subprocess to terminate and get its exit code
4060 * 4. Prompt the user to press a key to close the console window
4061 */
4062 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004063mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064{
4065 STARTUPINFO si;
4066 PROCESS_INFORMATION pi;
4067 DWORD ret = 0;
4068 HWND hwnd = GetFocus();
4069
4070 si.cb = sizeof(si);
4071 si.lpReserved = NULL;
4072 si.lpDesktop = NULL;
4073 si.lpTitle = NULL;
4074 si.dwFlags = STARTF_USESHOWWINDOW;
4075 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004076 * It's nicer to run a filter command in a minimized window.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004077 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004079 if (options & SHELL_DOOUT)
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004080 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004081 else
4082 si.wShowWindow = SW_SHOWNORMAL;
4083 si.cbReserved2 = 0;
4084 si.lpReserved2 = NULL;
4085
Bram Moolenaar0f873732019-12-05 20:28:46 +01004086 // Now, run the command
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004087 vim_create_process(cmd, FALSE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004088 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE,
4089 &si, &pi, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090
Bram Moolenaar0f873732019-12-05 20:28:46 +01004091 // Wait for the command to terminate before continuing
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004093# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 int delay = 1;
4095
Bram Moolenaar0f873732019-12-05 20:28:46 +01004096 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 for (;;)
4098 {
4099 MSG msg;
4100
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004101 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 {
4103 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004104 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004105 delay = 1;
4106 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 }
4108 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4109 break;
4110
Bram Moolenaar0f873732019-12-05 20:28:46 +01004111 // We start waiting for a very short time and then increase it, so
4112 // that we respond quickly when the process is quick, and don't
4113 // consume too much overhead when it's slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 if (delay < 50)
4115 delay += 10;
4116 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004117# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 WaitForSingleObject(pi.hProcess, INFINITE);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004119# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120
Bram Moolenaar0f873732019-12-05 20:28:46 +01004121 // Get the command exit code
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 GetExitCodeProcess(pi.hProcess, &ret);
4123 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124
Bram Moolenaar0f873732019-12-05 20:28:46 +01004125 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 CloseHandle(pi.hThread);
4127 CloseHandle(pi.hProcess);
4128
Bram Moolenaar0f873732019-12-05 20:28:46 +01004129 // Try to get input focus back. Doesn't always work though.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4131
4132 return ret;
4133}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004134
4135/*
4136 * Thread launched by the gui to send the current buffer data to the
4137 * process. This way avoid to hang up vim totally if the children
4138 * process take a long time to process the lines.
4139 */
Bram Moolenaar4c38d662016-08-03 20:54:57 +02004140 static unsigned int __stdcall
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004141sub_process_writer(LPVOID param)
4142{
4143 HANDLE g_hChildStd_IN_Wr = param;
4144 linenr_T lnum = curbuf->b_op_start.lnum;
4145 DWORD len = 0;
4146 DWORD l;
4147 char_u *lp = ml_get(lnum);
4148 char_u *s;
4149 int written = 0;
4150
4151 for (;;)
4152 {
4153 l = (DWORD)STRLEN(lp + written);
4154 if (l == 0)
4155 len = 0;
4156 else if (lp[written] == NL)
4157 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004158 // NL -> NUL translation
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004159 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4160 }
4161 else
4162 {
4163 s = vim_strchr(lp + written, NL);
4164 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4165 s == NULL ? l : (DWORD)(s - (lp + written)),
4166 &len, NULL);
4167 }
4168 if (len == (int)l)
4169 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004170 // Finished a line, add a NL, unless this line should not have
4171 // one.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004172 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004173 || (!curbuf->b_p_bin
4174 && curbuf->b_p_fixeol)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004175 || (lnum != curbuf->b_no_eol_lnum
4176 && (lnum != curbuf->b_ml.ml_line_count
4177 || curbuf->b_p_eol)))
4178 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02004179 WriteFile(g_hChildStd_IN_Wr, "\n", 1,
4180 (LPDWORD)&vim_ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004181 }
4182
4183 ++lnum;
4184 if (lnum > curbuf->b_op_end.lnum)
4185 break;
4186
4187 lp = ml_get(lnum);
4188 written = 0;
4189 }
4190 else if (len > 0)
4191 written += len;
4192 }
4193
Bram Moolenaar0f873732019-12-05 20:28:46 +01004194 // finished all the lines, close pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004195 CloseHandle(g_hChildStd_IN_Wr);
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004196 return 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004197}
4198
4199
Bram Moolenaar0f873732019-12-05 20:28:46 +01004200# define BUFLEN 100 // length for buffer, stolen from unix version
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004201
4202/*
4203 * This function read from the children's stdout and write the
4204 * data on screen or in the buffer accordingly.
4205 */
4206 static void
4207dump_pipe(int options,
4208 HANDLE g_hChildStd_OUT_Rd,
4209 garray_T *ga,
4210 char_u buffer[],
4211 DWORD *buffer_off)
4212{
4213 DWORD availableBytes = 0;
4214 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004215 int ret;
4216 DWORD len;
4217 DWORD toRead;
4218 int repeatCount;
4219
Bram Moolenaar0f873732019-12-05 20:28:46 +01004220 // we query the pipe to see if there is any data to read
4221 // to avoid to perform a blocking read
4222 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, // pipe to query
4223 NULL, // optional buffer
4224 0, // buffer size
4225 NULL, // number of read bytes
4226 &availableBytes, // available bytes total
4227 NULL); // byteLeft
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004228
4229 repeatCount = 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004230 // We got real data in the pipe, read it
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004231 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004232 {
4233 repeatCount++;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004234 toRead = (DWORD)(BUFLEN - *buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004235 toRead = availableBytes < toRead ? availableBytes : toRead;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004236 ReadFile(g_hChildStd_OUT_Rd, buffer + *buffer_off, toRead , &len, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004237
Bram Moolenaar0f873732019-12-05 20:28:46 +01004238 // If we haven't read anything, there is a problem
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004239 if (len == 0)
4240 break;
4241
4242 availableBytes -= len;
4243
4244 if (options & SHELL_READ)
4245 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004246 // Do NUL -> NL translation, append NL separated
4247 // lines to the current buffer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004248 for (i = 0; i < len; ++i)
4249 {
4250 if (buffer[i] == NL)
4251 append_ga_line(ga);
4252 else if (buffer[i] == NUL)
4253 ga_append(ga, NL);
4254 else
4255 ga_append(ga, buffer[i]);
4256 }
4257 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004258 else if (has_mbyte)
4259 {
4260 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004261 int c;
4262 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004263
4264 len += *buffer_off;
4265 buffer[len] = NUL;
4266
Bram Moolenaar0f873732019-12-05 20:28:46 +01004267 // Check if the last character in buffer[] is
4268 // incomplete, keep these bytes for the next
4269 // round.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004270 for (p = buffer; p < buffer + len; p += l)
4271 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004272 l = MB_CPTR2LEN(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004273 if (l == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004274 l = 1; // NUL byte?
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004275 else if (MB_BYTE2LEN(*p) != l)
4276 break;
4277 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004278 if (p == buffer) // no complete character
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004279 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004280 // avoid getting stuck at an illegal byte
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004281 if (len >= 12)
4282 ++p;
4283 else
4284 {
4285 *buffer_off = len;
4286 return;
4287 }
4288 }
4289 c = *p;
4290 *p = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004291 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004292 if (p < buffer + len)
4293 {
4294 *p = c;
4295 *buffer_off = (DWORD)((buffer + len) - p);
4296 mch_memmove(buffer, p, *buffer_off);
4297 return;
4298 }
4299 *buffer_off = 0;
4300 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004301 else
4302 {
4303 buffer[len] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004304 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004305 }
4306
4307 windgoto(msg_row, msg_col);
4308 cursor_on();
4309 out_flush();
4310 }
4311}
4312
4313/*
4314 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4315 * for communication and doesn't open any new window.
4316 */
4317 static int
4318mch_system_piped(char *cmd, int options)
4319{
4320 STARTUPINFO si;
4321 PROCESS_INFORMATION pi;
4322 DWORD ret = 0;
4323
4324 HANDLE g_hChildStd_IN_Rd = NULL;
4325 HANDLE g_hChildStd_IN_Wr = NULL;
4326 HANDLE g_hChildStd_OUT_Rd = NULL;
4327 HANDLE g_hChildStd_OUT_Wr = NULL;
4328
Bram Moolenaar0f873732019-12-05 20:28:46 +01004329 char_u buffer[BUFLEN + 1]; // reading buffer + size
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004330 DWORD len;
4331
Bram Moolenaar0f873732019-12-05 20:28:46 +01004332 // buffer used to receive keys
4333 char_u ta_buf[BUFLEN + 1]; // TypeAHead
4334 int ta_len = 0; // valid bytes in ta_buf[]
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004335
4336 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004337 int noread_cnt = 0;
4338 garray_T ga;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004339 int delay = 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004340 DWORD buffer_off = 0; // valid bytes in buffer[]
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004341 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004342
4343 SECURITY_ATTRIBUTES saAttr;
4344
Bram Moolenaar0f873732019-12-05 20:28:46 +01004345 // Set the bInheritHandle flag so pipe handles are inherited.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004346 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4347 saAttr.bInheritHandle = TRUE;
4348 saAttr.lpSecurityDescriptor = NULL;
4349
4350 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004351 // Ensure the read handle to the pipe for STDOUT is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004352 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004353 // Create a pipe for the child process's STDIN.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004354 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004355 // Ensure the write handle to the pipe for STDIN is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004356 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004357 {
4358 CloseHandle(g_hChildStd_IN_Rd);
4359 CloseHandle(g_hChildStd_IN_Wr);
4360 CloseHandle(g_hChildStd_OUT_Rd);
4361 CloseHandle(g_hChildStd_OUT_Wr);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004362 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004363 }
4364
4365 si.cb = sizeof(si);
4366 si.lpReserved = NULL;
4367 si.lpDesktop = NULL;
4368 si.lpTitle = NULL;
4369 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4370
Bram Moolenaar0f873732019-12-05 20:28:46 +01004371 // set-up our file redirection
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004372 si.hStdError = g_hChildStd_OUT_Wr;
4373 si.hStdOutput = g_hChildStd_OUT_Wr;
4374 si.hStdInput = g_hChildStd_IN_Rd;
4375 si.wShowWindow = SW_HIDE;
4376 si.cbReserved2 = 0;
4377 si.lpReserved2 = NULL;
4378
4379 if (options & SHELL_READ)
4380 ga_init2(&ga, 1, BUFLEN);
4381
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004382 if (cmd != NULL)
4383 {
4384 p = (char *)vim_strsave((char_u *)cmd);
4385 if (p != NULL)
4386 unescape_shellxquote((char_u *)p, p_sxe);
4387 else
4388 p = cmd;
4389 }
4390
Bram Moolenaar0f873732019-12-05 20:28:46 +01004391 // Now, run the command.
4392 // About "Inherit handles" being TRUE: this command can be litigious,
4393 // handle inheritance was deactivated for pending temp file, but, if we
4394 // deactivate it, the pipes don't work for some reason.
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004395 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE,
4396 &si, &pi, NULL, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004397
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004398 if (p != cmd)
4399 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004400
Bram Moolenaar0f873732019-12-05 20:28:46 +01004401 // Close our unused side of the pipes
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004402 CloseHandle(g_hChildStd_IN_Rd);
4403 CloseHandle(g_hChildStd_OUT_Wr);
4404
4405 if (options & SHELL_WRITE)
4406 {
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004407 HANDLE thread = (HANDLE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004408 _beginthreadex(NULL, // security attributes
4409 0, // default stack size
4410 sub_process_writer, // function to be executed
4411 g_hChildStd_IN_Wr, // parameter
4412 0, // creation flag, start immediately
4413 NULL); // we don't care about thread id
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004414 CloseHandle(thread);
4415 g_hChildStd_IN_Wr = NULL;
4416 }
4417
Bram Moolenaar0f873732019-12-05 20:28:46 +01004418 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004419 for (;;)
4420 {
4421 MSG msg;
4422
Bram Moolenaar175d0702013-12-11 18:36:33 +01004423 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004424 {
4425 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004426 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004427 }
4428
Bram Moolenaar0f873732019-12-05 20:28:46 +01004429 // write pipe information in the window
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004430 if ((options & (SHELL_READ|SHELL_WRITE))
4431# ifdef FEAT_GUI
4432 || gui.in_use
4433# endif
4434 )
4435 {
4436 len = 0;
4437 if (!(options & SHELL_EXPAND)
4438 && ((options &
4439 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4440 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4441# ifdef FEAT_GUI
4442 || gui.in_use
4443# endif
4444 )
4445 && (ta_len > 0 || noread_cnt > 4))
4446 {
4447 if (ta_len == 0)
4448 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004449 // Get extra characters when we don't have any. Reset the
4450 // counter and timer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004451 noread_cnt = 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004452 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4453 }
4454 if (ta_len > 0 || len > 0)
4455 {
4456 /*
4457 * For pipes: Check for CTRL-C: send interrupt signal to
4458 * child. Check for CTRL-D: EOF, close pipe to child.
4459 */
4460 if (len == 1 && cmd != NULL)
4461 {
4462 if (ta_buf[ta_len] == Ctrl_C)
4463 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004464 // Learn what exit code is expected, for
4465 // now put 9 as SIGKILL
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004466 TerminateProcess(pi.hProcess, 9);
4467 }
4468 if (ta_buf[ta_len] == Ctrl_D)
4469 {
4470 CloseHandle(g_hChildStd_IN_Wr);
4471 g_hChildStd_IN_Wr = NULL;
4472 }
4473 }
4474
Bram Moolenaarf4140482020-02-15 23:06:45 +01004475 term_replace_bs_del_keycode(ta_buf, ta_len, len);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004476
4477 /*
4478 * For pipes: echo the typed characters. For a pty this
4479 * does not seem to work.
4480 */
4481 for (i = ta_len; i < ta_len + len; ++i)
4482 {
4483 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4484 msg_putchar(ta_buf[i]);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004485 else if (has_mbyte)
4486 {
4487 int l = (*mb_ptr2len)(ta_buf + i);
4488
4489 msg_outtrans_len(ta_buf + i, l);
4490 i += l - 1;
4491 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004492 else
4493 msg_outtrans_len(ta_buf + i, 1);
4494 }
4495 windgoto(msg_row, msg_col);
4496 out_flush();
4497
4498 ta_len += len;
4499
4500 /*
4501 * Write the characters to the child, unless EOF has been
4502 * typed for pipes. Write one character at a time, to
4503 * avoid losing too much typeahead. When writing buffer
4504 * lines, drop the typed characters (only check for
4505 * CTRL-C).
4506 */
4507 if (options & SHELL_WRITE)
4508 ta_len = 0;
4509 else if (g_hChildStd_IN_Wr != NULL)
4510 {
4511 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4512 1, &len, NULL);
4513 // if we are typing in, we want to keep things reactive
4514 delay = 1;
4515 if (len > 0)
4516 {
4517 ta_len -= len;
4518 mch_memmove(ta_buf, ta_buf + len, ta_len);
4519 }
4520 }
4521 }
4522 }
4523 }
4524
4525 if (ta_len)
4526 ui_inchar_undo(ta_buf, ta_len);
4527
4528 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4529 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004530 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004531 break;
4532 }
4533
4534 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004535 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004536
Bram Moolenaar0f873732019-12-05 20:28:46 +01004537 // We start waiting for a very short time and then increase it, so
4538 // that we respond quickly when the process is quick, and don't
4539 // consume too much overhead when it's slow.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004540 if (delay < 50)
4541 delay += 10;
4542 }
4543
Bram Moolenaar0f873732019-12-05 20:28:46 +01004544 // Close the pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004545 CloseHandle(g_hChildStd_OUT_Rd);
4546 if (g_hChildStd_IN_Wr != NULL)
4547 CloseHandle(g_hChildStd_IN_Wr);
4548
4549 WaitForSingleObject(pi.hProcess, INFINITE);
4550
Bram Moolenaar0f873732019-12-05 20:28:46 +01004551 // Get the command exit code
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004552 GetExitCodeProcess(pi.hProcess, &ret);
4553
4554 if (options & SHELL_READ)
4555 {
4556 if (ga.ga_len > 0)
4557 {
4558 append_ga_line(&ga);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004559 // remember that the NL was missing
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004560 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4561 }
4562 else
4563 curbuf->b_no_eol_lnum = 0;
4564 ga_clear(&ga);
4565 }
4566
Bram Moolenaar0f873732019-12-05 20:28:46 +01004567 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004568 CloseHandle(pi.hThread);
4569 CloseHandle(pi.hProcess);
4570
4571 return ret;
4572}
4573
4574 static int
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004575mch_system_g(char *cmd, int options)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004576{
Bram Moolenaar0f873732019-12-05 20:28:46 +01004577 // if we can pipe and the shelltemp option is off
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004578 if (!p_stmp)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004579 return mch_system_piped(cmd, options);
4580 else
4581 return mch_system_classic(cmd, options);
4582}
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004585#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004586 static int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02004587mch_system_c(char *cmd, int options UNUSED)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004588{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004589 int ret;
4590 WCHAR *wcmd;
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004591 char_u *buf;
4592 size_t len;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004593
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004594 // If the command starts and ends with double quotes, enclose the command
4595 // in parentheses.
4596 len = STRLEN(cmd);
4597 if (len >= 2 && cmd[0] == '"' && cmd[len - 1] == '"')
4598 {
4599 len += 3;
4600 buf = alloc(len);
4601 if (buf == NULL)
4602 return -1;
4603 vim_snprintf((char *)buf, len, "(%s)", cmd);
4604 wcmd = enc_to_utf16(buf, NULL);
4605 free(buf);
4606 }
4607 else
4608 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4609
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004610 if (wcmd == NULL)
4611 return -1;
4612
4613 ret = _wsystem(wcmd);
4614 vim_free(wcmd);
4615 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004616}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617
4618#endif
4619
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004620 static int
4621mch_system(char *cmd, int options)
4622{
4623#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004624 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004625 return mch_system_g(cmd, options);
4626 else
4627 return mch_system_c(cmd, options);
4628#elif defined(FEAT_GUI_MSWIN)
4629 return mch_system_g(cmd, options);
4630#else
4631 return mch_system_c(cmd, options);
4632#endif
4633}
4634
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004635#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4636/*
4637 * Use a terminal window to run a shell command in.
4638 */
4639 static int
4640mch_call_shell_terminal(
4641 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004642 int options UNUSED) // SHELL_*, see vim.h
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004643{
4644 jobopt_T opt;
4645 char_u *newcmd = NULL;
4646 typval_T argvar[2];
4647 long_u cmdlen;
4648 int retval = -1;
4649 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004650 job_T *job;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004651 aco_save_T aco;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004652 oparg_T oa; // operator arguments
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004653
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004654 if (cmd == NULL)
4655 cmdlen = STRLEN(p_sh) + 1;
4656 else
4657 cmdlen = STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004658 newcmd = alloc(cmdlen);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004659 if (newcmd == NULL)
4660 return 255;
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004661 if (cmd == NULL)
4662 {
4663 STRCPY(newcmd, p_sh);
4664 ch_log(NULL, "starting terminal to run a shell");
4665 }
4666 else
4667 {
4668 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", p_sh, p_shcf, cmd);
4669 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4670 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004671
4672 init_job_options(&opt);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004673
4674 argvar[0].v_type = VAR_STRING;
4675 argvar[0].vval.v_string = newcmd;
4676 argvar[1].v_type = VAR_UNKNOWN;
4677 buf = term_start(argvar, NULL, &opt, TERM_START_SYSTEM);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004678 if (buf == NULL)
Bram Moolenaar9029b912019-03-21 19:58:00 +01004679 {
4680 vim_free(newcmd);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004681 return 255;
Bram Moolenaar9029b912019-03-21 19:58:00 +01004682 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004683
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004684 job = term_getjob(buf->b_term);
4685 ++job->jv_refcount;
4686
Bram Moolenaar0f873732019-12-05 20:28:46 +01004687 // Find a window to make "buf" curbuf.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004688 aucmd_prepbuf(&aco, buf);
4689
4690 clear_oparg(&oa);
4691 while (term_use_loop())
4692 {
4693 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4694 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004695 // If terminal_loop() returns OK we got a key that is handled
4696 // in Normal model. We don't do redrawing anyway.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004697 if (terminal_loop(TRUE) == OK)
4698 normal_cmd(&oa, TRUE);
4699 }
4700 else
4701 normal_cmd(&oa, TRUE);
4702 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004703 retval = job->jv_exitval;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004704 ch_log(NULL, "system command finished");
4705
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004706 job_unref(job);
4707
Bram Moolenaar0f873732019-12-05 20:28:46 +01004708 // restore curwin/curbuf and a few other things
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004709 aucmd_restbuf(&aco);
4710
4711 wait_return(TRUE);
4712 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4713
4714 vim_free(newcmd);
4715 return retval;
4716}
4717#endif
4718
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719/*
4720 * Either execute a command by calling the shell or start a new shell
4721 */
4722 int
4723mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004724 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004725 int options) // SHELL_*, see vim.h
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726{
4727 int x = 0;
4728 int tmode = cur_tmode;
4729#ifdef FEAT_TITLE
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004730 WCHAR szShellTitle[512];
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004731
Bram Moolenaar0f873732019-12-05 20:28:46 +01004732 // Change the title to reflect that we are in a subshell.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004733 if (GetConsoleTitleW(szShellTitle,
4734 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0)
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004735 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004736 if (cmd == NULL)
4737 wcscat(szShellTitle, L" :sh");
4738 else
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004739 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004740 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004741
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004742 if (wn != NULL)
4743 {
4744 wcscat(szShellTitle, L" - !");
4745 if ((wcslen(szShellTitle) + wcslen(wn) <
4746 sizeof(szShellTitle)/sizeof(WCHAR)))
4747 wcscat(szShellTitle, wn);
4748 SetConsoleTitleW(szShellTitle);
4749 vim_free(wn);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004750 }
4751 }
4752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753#endif
4754
4755 out_flush();
4756
4757#ifdef MCH_WRITE_DUMP
4758 if (fdDump)
4759 {
4760 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4761 fflush(fdDump);
4762 }
4763#endif
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004764#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004765 // TODO: make the terminal window work with input or output redirected.
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004766 if (
4767# ifdef VIMDLL
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004768 gui.in_use &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004769# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004770 vim_strchr(p_go, GO_TERMINAL) != NULL
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004771 && (options & (SHELL_FILTER|SHELL_DOOUT|SHELL_WRITE|SHELL_READ)) == 0)
4772 {
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004773 char_u *cmdbase = cmd;
4774
Bram Moolenaar4d5c1262019-09-20 17:20:02 +02004775 if (cmdbase != NULL)
4776 // Skip a leading quote and (.
4777 while (*cmdbase == '"' || *cmdbase == '(')
4778 ++cmdbase;
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004779
4780 // Check the command does not begin with "start "
Bram Moolenaar36e7a822019-11-13 21:49:24 +01004781 if (cmdbase == NULL || STRNICMP(cmdbase, "start", 5) != 0
4782 || !VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004783 {
4784 // Use a terminal window to run the command in.
4785 x = mch_call_shell_terminal(cmd, options);
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004786# ifdef FEAT_TITLE
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004787 resettitle();
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004788# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004789 return x;
4790 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004791 }
4792#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793
4794 /*
4795 * Catch all deadly signals while running the external command, because a
4796 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4797 */
4798 signal(SIGINT, SIG_IGN);
4799#if defined(__GNUC__) && !defined(__MINGW32__)
4800 signal(SIGKILL, SIG_IGN);
4801#else
4802 signal(SIGBREAK, SIG_IGN);
4803#endif
4804 signal(SIGILL, SIG_IGN);
4805 signal(SIGFPE, SIG_IGN);
4806 signal(SIGSEGV, SIG_IGN);
4807 signal(SIGTERM, SIG_IGN);
4808 signal(SIGABRT, SIG_IGN);
4809
4810 if (options & SHELL_COOKED)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004811 settmode(TMODE_COOK); // set to normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812
4813 if (cmd == NULL)
4814 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004815 x = mch_system((char *)p_sh, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 }
4817 else
4818 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004819 // we use "command" or "cmd" to start the shell; slow but easy
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004820 char_u *newcmd = NULL;
4821 char_u *cmdbase = cmd;
4822 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004823
Bram Moolenaar0f873732019-12-05 20:28:46 +01004824 // Skip a leading ", ( and "(.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004825 if (*cmdbase == '"' )
4826 ++cmdbase;
4827 if (*cmdbase == '(')
4828 ++cmdbase;
4829
Bram Moolenaar1c465442017-03-12 20:10:05 +01004830 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004831 {
4832 STARTUPINFO si;
4833 PROCESS_INFORMATION pi;
4834 DWORD flags = CREATE_NEW_CONSOLE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004835 INT n_show_cmd = SW_SHOWNORMAL;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004836 char_u *p;
4837
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004838 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004839 si.cb = sizeof(si);
4840 si.lpReserved = NULL;
4841 si.lpDesktop = NULL;
4842 si.lpTitle = NULL;
4843 si.dwFlags = 0;
4844 si.cbReserved2 = 0;
4845 si.lpReserved2 = NULL;
4846
4847 cmdbase = skipwhite(cmdbase + 5);
4848 if ((STRNICMP(cmdbase, "/min", 4) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004849 && VIM_ISWHITE(cmdbase[4]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004850 {
4851 cmdbase = skipwhite(cmdbase + 4);
4852 si.dwFlags = STARTF_USESHOWWINDOW;
4853 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004854 n_show_cmd = SW_SHOWMINNOACTIVE;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004855 }
4856 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004857 && VIM_ISWHITE(cmdbase[2]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004858 {
4859 cmdbase = skipwhite(cmdbase + 2);
4860 flags = CREATE_NO_WINDOW;
4861 si.dwFlags = STARTF_USESTDHANDLES;
4862 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004863 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004864 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004865 NULL, // Security att.
4866 OPEN_EXISTING, // Open flags
4867 FILE_ATTRIBUTE_NORMAL, // File att.
4868 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004869 si.hStdOutput = si.hStdInput;
4870 si.hStdError = si.hStdInput;
4871 }
4872
Bram Moolenaar0f873732019-12-05 20:28:46 +01004873 // Remove a trailing ", ) and )" if they have a match
4874 // at the start of the command.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004875 if (cmdbase > cmd)
4876 {
4877 p = cmdbase + STRLEN(cmdbase);
4878 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4879 *--p = NUL;
4880 if (p > cmdbase && p[-1] == ')'
4881 && (*cmd =='(' || cmd[1] == '('))
4882 *--p = NUL;
4883 }
4884
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004885 newcmd = cmdbase;
4886 unescape_shellxquote(cmdbase, p_sxe);
4887
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004888 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004889 * If creating new console, arguments are passed to the
4890 * 'cmd.exe' as-is. If it's not, arguments are not treated
4891 * correctly for current 'cmd.exe'. So unescape characters in
4892 * shellxescape except '|' for avoiding to be treated as
4893 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004894 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004895 if (flags != CREATE_NEW_CONSOLE)
4896 {
4897 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004898 char_u *cmd_shell = mch_getenv("COMSPEC");
4899
4900 if (cmd_shell == NULL || *cmd_shell == NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004901 cmd_shell = (char_u *)default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004902
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004903 subcmd = vim_strsave_escaped_ext(cmdbase,
4904 (char_u *)"|", '^', FALSE);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004905 if (subcmd != NULL)
4906 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004907 // make "cmd.exe /c arguments"
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004908 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004909 newcmd = alloc(cmdlen);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004910 if (newcmd != NULL)
4911 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004912 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004913 else
4914 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004915 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004916 }
4917 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004918
4919 /*
4920 * Now, start the command as a process, so that it doesn't
4921 * inherit our handles which causes unpleasant dangling swap
4922 * files if we exit before the spawned process
4923 */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004924 if (vim_create_process((char *)newcmd, FALSE, flags,
4925 &si, &pi, NULL, NULL))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004926 x = 0;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004927 else if (vim_shell_execute((char *)newcmd, n_show_cmd)
4928 > (HINSTANCE)32)
4929 x = 0;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004930 else
4931 {
4932 x = -1;
Bram Moolenaar4f974752019-02-17 17:44:42 +01004933#ifdef FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004934# ifdef VIMDLL
4935 if (gui.in_use)
4936# endif
4937 emsg(_("E371: Command not found"));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004938#endif
4939 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004940
4941 if (newcmd != cmdbase)
4942 vim_free(newcmd);
4943
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004944 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004945 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004946 // Close the handle to \\.\NUL created above.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004947 CloseHandle(si.hStdInput);
4948 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004949 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004950 CloseHandle(pi.hThread);
4951 CloseHandle(pi.hProcess);
4952 }
4953 else
4954 {
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004955 cmdlen =
Bram Moolenaar4f974752019-02-17 17:44:42 +01004956#ifdef FEAT_GUI_MSWIN
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004957 ((gui.in_use || gui.starting) ?
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004958 (!s_dont_use_vimrun && p_stmp ?
4959 STRLEN(vimrun_path) : STRLEN(p_sh) + STRLEN(p_shcf))
4960 : 0) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961#endif
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004962 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004963
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004964 newcmd = alloc(cmdlen);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004965 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01004967#if defined(FEAT_GUI_MSWIN)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004968 if (
4969# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004970 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004971# endif
4972 need_vimrun_warning)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 {
Bram Moolenaar63e43442016-11-19 17:28:44 +01004974 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
4975 "External commands will not pause after completion.\n"
4976 "See :help win32-vimrun for more information.");
4977 char *title = _("Vim Warning");
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004978 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
4979 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
Bram Moolenaar63e43442016-11-19 17:28:44 +01004980
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004981 if (wmsg != NULL && wtitle != NULL)
4982 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
4983 vim_free(wmsg);
4984 vim_free(wtitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 need_vimrun_warning = FALSE;
4986 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004987 if (
4988# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004989 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004990# endif
4991 !s_dont_use_vimrun && p_stmp)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02004992 // Use vimrun to execute the command. It opens a console
4993 // window, which can be closed without killing Vim.
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004994 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 vimrun_path,
4996 (msg_silent != 0 || (options & SHELL_DOOUT))
4997 ? "-s " : "",
4998 p_sh, p_shcf, cmd);
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02004999 else if (
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005000# ifdef VIMDLL
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005001 (gui.in_use || gui.starting) &&
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005002# endif
Bram Moolenaar0e6bfb92019-07-31 20:53:56 +02005003 s_dont_use_vimrun && STRCMP(p_shcf, "/c") == 0)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005004 // workaround for the case that "vimrun" does not exist
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005005 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s %s %s",
5006 p_sh, p_shcf, p_sh, p_shcf, cmd);
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005007 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005009 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00005010 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01005012 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 }
5015 }
5016
5017 if (tmode == TMODE_RAW)
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005018 {
5019 // The shell may have messed with the mode, always set it.
5020 cur_tmode = TMODE_UNKNOWN;
Bram Moolenaar0f873732019-12-05 20:28:46 +01005021 settmode(TMODE_RAW); // set to raw mode
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005022 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023
Bram Moolenaar0f873732019-12-05 20:28:46 +01005024 // Print the return value, unless "vimrun" was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
Bram Moolenaar4f974752019-02-17 17:44:42 +01005026#if defined(FEAT_GUI_MSWIN)
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02005027 && ((gui.in_use || gui.starting) ?
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005028 ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp) : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029#endif
5030 )
5031 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005032 smsg(_("shell returned %d"), x);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 msg_putchar('\n');
5034 }
5035#ifdef FEAT_TITLE
5036 resettitle();
5037#endif
5038
5039 signal(SIGINT, SIG_DFL);
5040#if defined(__GNUC__) && !defined(__MINGW32__)
5041 signal(SIGKILL, SIG_DFL);
5042#else
5043 signal(SIGBREAK, SIG_DFL);
5044#endif
5045 signal(SIGILL, SIG_DFL);
5046 signal(SIGFPE, SIG_DFL);
5047 signal(SIGSEGV, SIG_DFL);
5048 signal(SIGTERM, SIG_DFL);
5049 signal(SIGABRT, SIG_DFL);
5050
5051 return x;
5052}
5053
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005054#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005055 static HANDLE
5056job_io_file_open(
Bram Moolenaar972c3b82017-01-12 21:44:49 +01005057 char_u *fname,
5058 DWORD dwDesiredAccess,
5059 DWORD dwShareMode,
5060 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
5061 DWORD dwCreationDisposition,
5062 DWORD dwFlagsAndAttributes)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005063{
5064 HANDLE h;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005065 WCHAR *wn;
Bram Moolenaara12a1612019-01-24 16:39:02 +01005066
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005067 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005068 if (wn == NULL)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005069 return INVALID_HANDLE_VALUE;
5070
5071 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
5072 lpSecurityAttributes, dwCreationDisposition,
5073 dwFlagsAndAttributes, NULL);
5074 vim_free(wn);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005075 return h;
5076}
5077
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005078/*
5079 * Turn the dictionary "env" into a NUL separated list that can be used as the
5080 * environment argument of vim_create_process().
5081 */
Bram Moolenaarba6febd2017-10-30 21:56:23 +01005082 void
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005083win32_build_env(dict_T *env, garray_T *gap, int is_terminal)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005084{
5085 hashitem_T *hi;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005086 long_u todo = env != NULL ? env->dv_hashtab.ht_used : 0;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005087 LPVOID base = GetEnvironmentStringsW();
5088
Bram Moolenaar0f873732019-12-05 20:28:46 +01005089 // for last \0
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005090 if (ga_grow(gap, 1) == FAIL)
5091 return;
5092
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005093 if (env != NULL)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005094 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005095 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005096 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005097 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005098 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005099 typval_T *item = &dict_lookup(hi)->di_tv;
5100 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01005101 WCHAR *wval = enc_to_utf16(tv_get_string(item), NULL);
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005102 --todo;
5103 if (wkey != NULL && wval != NULL)
5104 {
5105 size_t n;
5106 size_t lkey = wcslen(wkey);
5107 size_t lval = wcslen(wval);
Bram Moolenaar60104f12017-08-14 23:25:04 +02005108
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005109 if (ga_grow(gap, (int)(lkey + lval + 2)) != OK)
5110 continue;
5111 for (n = 0; n < lkey; n++)
5112 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n];
5113 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'=';
5114 for (n = 0; n < lval; n++)
5115 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n];
5116 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5117 }
Bram Moolenaarbdace832019-03-02 10:13:42 +01005118 vim_free(wkey);
5119 vim_free(wval);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005120 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005121 }
5122 }
5123
Bram Moolenaar355757a2020-02-10 22:06:32 +01005124 if (base)
5125 {
5126 WCHAR *p = (WCHAR*) base;
5127
5128 // for last \0
5129 if (ga_grow(gap, 1) == FAIL)
5130 return;
5131
5132 while (*p != 0 || *(p + 1) != 0)
5133 {
5134 if (ga_grow(gap, 1) == OK)
5135 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
5136 p++;
5137 }
5138 FreeEnvironmentStrings(base);
5139 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5140 }
5141
Bram Moolenaar493359e2018-06-12 20:25:52 +02005142# if defined(FEAT_CLIENTSERVER) || defined(FEAT_TERMINAL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005143 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005144# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005145 char_u *servername = get_vim_var_str(VV_SEND_SERVER);
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005146 size_t servername_len = STRLEN(servername);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005147# endif
5148# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005149 char_u *version = get_vim_var_str(VV_VERSION);
5150 size_t version_len = STRLEN(version);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005151# endif
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005152 // size of "VIM_SERVERNAME=" and value,
5153 // plus "VIM_TERMINAL=" and value,
5154 // plus two terminating NULs
5155 size_t n = 0
Bram Moolenaar493359e2018-06-12 20:25:52 +02005156# ifdef FEAT_CLIENTSERVER
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005157 + 15 + servername_len
Bram Moolenaar493359e2018-06-12 20:25:52 +02005158# endif
5159# ifdef FEAT_TERMINAL
5160 + 13 + version_len + 2
5161# endif
5162 ;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005163
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005164 if (ga_grow(gap, (int)n) == OK)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005165 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005166# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005167 for (n = 0; n < 15; n++)
5168 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5169 (WCHAR)"VIM_SERVERNAME="[n];
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005170 for (n = 0; n < servername_len; n++)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005171 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5172 (WCHAR)servername[n];
5173 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
Bram Moolenaar493359e2018-06-12 20:25:52 +02005174# endif
5175# ifdef FEAT_TERMINAL
5176 if (is_terminal)
5177 {
5178 for (n = 0; n < 13; n++)
5179 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5180 (WCHAR)"VIM_TERMINAL="[n];
5181 for (n = 0; n < version_len; n++)
5182 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5183 (WCHAR)version[n];
5184 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5185 }
5186# endif
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005187 }
5188 }
Bram Moolenaar79c6b512018-06-12 21:11:12 +02005189# endif
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005190}
5191
Bram Moolenaarb091f302019-01-19 14:37:00 +01005192/*
5193 * Create a pair of pipes.
5194 * Return TRUE for success, FALSE for failure.
5195 */
5196 static BOOL
5197create_pipe_pair(HANDLE handles[2])
5198{
5199 static LONG s;
5200 char name[64];
5201 SECURITY_ATTRIBUTES sa;
5202
5203 sprintf(name, "\\\\?\\pipe\\vim-%08lx-%08lx",
5204 GetCurrentProcessId(),
5205 InterlockedIncrement(&s));
5206
5207 // Create named pipe. Max size of named pipe is 65535.
5208 handles[1] = CreateNamedPipe(
5209 name,
5210 PIPE_ACCESS_OUTBOUND | FILE_FLAG_OVERLAPPED,
5211 PIPE_TYPE_BYTE | PIPE_NOWAIT,
Bram Moolenaar24058382019-01-24 23:11:49 +01005212 1, MAX_NAMED_PIPE_SIZE, 0, 0, NULL);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005213
5214 if (handles[1] == INVALID_HANDLE_VALUE)
5215 return FALSE;
5216
5217 sa.nLength = sizeof(sa);
5218 sa.bInheritHandle = TRUE;
5219 sa.lpSecurityDescriptor = NULL;
5220
5221 handles[0] = CreateFile(name,
5222 FILE_GENERIC_READ,
5223 FILE_SHARE_READ, &sa,
5224 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
5225
5226 if (handles[0] == INVALID_HANDLE_VALUE)
5227 {
Bram Moolenaar6982f422019-02-16 16:48:01 +01005228 CloseHandle(handles[1]);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005229 return FALSE;
5230 }
5231
5232 return TRUE;
5233}
5234
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005235 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005236mch_job_start(char *cmd, job_T *job, jobopt_T *options)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005237{
5238 STARTUPINFO si;
5239 PROCESS_INFORMATION pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005240 HANDLE jo;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005241 SECURITY_ATTRIBUTES saAttr;
5242 channel_T *channel = NULL;
Bram Moolenaard8070362016-02-15 21:56:54 +01005243 HANDLE ifd[2];
5244 HANDLE ofd[2];
5245 HANDLE efd[2];
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005246 garray_T ga;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005247
5248 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5249 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5250 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
5251 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
5252 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5253 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
5254 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
5255
5256 if (use_out_for_err && use_null_for_out)
5257 use_null_for_err = TRUE;
Bram Moolenaard8070362016-02-15 21:56:54 +01005258
5259 ifd[0] = INVALID_HANDLE_VALUE;
5260 ifd[1] = INVALID_HANDLE_VALUE;
5261 ofd[0] = INVALID_HANDLE_VALUE;
5262 ofd[1] = INVALID_HANDLE_VALUE;
5263 efd[0] = INVALID_HANDLE_VALUE;
5264 efd[1] = INVALID_HANDLE_VALUE;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005265 ga_init2(&ga, (int)sizeof(wchar_t), 500);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005266
Bram Moolenaar14207f42016-10-27 21:13:10 +02005267 jo = CreateJobObject(NULL, NULL);
5268 if (jo == NULL)
5269 {
5270 job->jv_status = JOB_FAILED;
5271 goto failed;
5272 }
5273
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005274 if (options->jo_env != NULL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005275 win32_build_env(options->jo_env, &ga, FALSE);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005276
Bram Moolenaar76467df2016-02-12 19:30:26 +01005277 ZeroMemory(&pi, sizeof(pi));
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005278 ZeroMemory(&si, sizeof(si));
5279 si.cb = sizeof(si);
Bram Moolenaard8070362016-02-15 21:56:54 +01005280 si.dwFlags |= STARTF_USESHOWWINDOW;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005281 si.wShowWindow = SW_HIDE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005282
Bram Moolenaard8070362016-02-15 21:56:54 +01005283 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5284 saAttr.bInheritHandle = TRUE;
5285 saAttr.lpSecurityDescriptor = NULL;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005286
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005287 if (use_file_for_in)
5288 {
5289 char_u *fname = options->jo_io_name[PART_IN];
5290
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005291 ifd[0] = job_io_file_open(fname, GENERIC_READ,
5292 FILE_SHARE_READ | FILE_SHARE_WRITE,
5293 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
5294 if (ifd[0] == INVALID_HANDLE_VALUE)
Bram Moolenaar94d01912016-03-08 13:48:51 +01005295 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005296 semsg(_(e_notopen), fname);
Bram Moolenaar94d01912016-03-08 13:48:51 +01005297 goto failed;
5298 }
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005299 }
Bram Moolenaarb091f302019-01-19 14:37:00 +01005300 else if (!use_null_for_in
5301 && (!create_pipe_pair(ifd)
5302 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005303 goto failed;
5304
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005305 if (use_file_for_out)
5306 {
5307 char_u *fname = options->jo_io_name[PART_OUT];
5308
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005309 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
5310 FILE_SHARE_READ | FILE_SHARE_WRITE,
5311 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5312 if (ofd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005313 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005314 semsg(_(e_notopen), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005315 goto failed;
5316 }
5317 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005318 else if (!use_null_for_out &&
5319 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005320 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005321 goto failed;
5322
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005323 if (use_file_for_err)
5324 {
5325 char_u *fname = options->jo_io_name[PART_ERR];
5326
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005327 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
5328 FILE_SHARE_READ | FILE_SHARE_WRITE,
5329 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5330 if (efd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005331 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005332 semsg(_(e_notopen), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005333 goto failed;
5334 }
5335 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005336 else if (!use_out_for_err && !use_null_for_err &&
5337 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005338 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaard8070362016-02-15 21:56:54 +01005339 goto failed;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005340
Bram Moolenaard8070362016-02-15 21:56:54 +01005341 si.dwFlags |= STARTF_USESTDHANDLES;
5342 si.hStdInput = ifd[0];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005343 si.hStdOutput = ofd[1];
5344 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
5345
5346 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5347 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005348 if (options->jo_set & JO_CHANNEL)
5349 {
5350 channel = options->jo_channel;
5351 if (channel != NULL)
5352 ++channel->ch_refcount;
5353 }
5354 else
5355 channel = add_channel();
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005356 if (channel == NULL)
5357 goto failed;
5358 }
Bram Moolenaard8070362016-02-15 21:56:54 +01005359
5360 if (!vim_create_process(cmd, TRUE,
Bram Moolenaar14207f42016-10-27 21:13:10 +02005361 CREATE_SUSPENDED |
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005362 CREATE_DEFAULT_ERROR_MODE |
5363 CREATE_NEW_PROCESS_GROUP |
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005364 CREATE_UNICODE_ENVIRONMENT |
Bram Moolenaar76467df2016-02-12 19:30:26 +01005365 CREATE_NEW_CONSOLE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005366 &si, &pi,
5367 ga.ga_data,
5368 (char *)options->jo_cwd))
Bram Moolenaar76467df2016-02-12 19:30:26 +01005369 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005370 CloseHandle(jo);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005371 job->jv_status = JOB_FAILED;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005372 goto failed;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005373 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005374
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005375 ga_clear(&ga);
5376
Bram Moolenaar14207f42016-10-27 21:13:10 +02005377 if (!AssignProcessToJobObject(jo, pi.hProcess))
5378 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005379 // if failing, switch the way to terminate
5380 // process with TerminateProcess.
Bram Moolenaar14207f42016-10-27 21:13:10 +02005381 CloseHandle(jo);
5382 jo = NULL;
5383 }
5384 ResumeThread(pi.hThread);
Bram Moolenaar75578a32016-03-10 16:33:31 +01005385 CloseHandle(pi.hThread);
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005386 job->jv_proc_info = pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005387 job->jv_job_object = jo;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005388 job->jv_status = JOB_STARTED;
5389
Bram Moolenaar641ad6c2016-09-01 18:32:11 +02005390 CloseHandle(ifd[0]);
5391 CloseHandle(ofd[1]);
5392 if (!use_out_for_err && !use_null_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005393 CloseHandle(efd[1]);
Bram Moolenaard8070362016-02-15 21:56:54 +01005394
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005395 job->jv_channel = channel;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005396 if (channel != NULL)
5397 {
5398 channel_set_pipes(channel,
5399 use_file_for_in || use_null_for_in
5400 ? INVALID_FD : (sock_T)ifd[1],
5401 use_file_for_out || use_null_for_out
5402 ? INVALID_FD : (sock_T)ofd[0],
5403 use_out_for_err || use_file_for_err || use_null_for_err
5404 ? INVALID_FD : (sock_T)efd[0]);
5405 channel_set_job(channel, job, options);
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005406 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005407 return;
5408
5409failed:
Bram Moolenaard8070362016-02-15 21:56:54 +01005410 CloseHandle(ifd[0]);
5411 CloseHandle(ofd[0]);
5412 CloseHandle(efd[0]);
5413 CloseHandle(ifd[1]);
5414 CloseHandle(ofd[1]);
5415 CloseHandle(efd[1]);
Bram Moolenaarde279892016-03-11 22:19:44 +01005416 channel_unref(channel);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005417 ga_clear(&ga);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005418}
5419
5420 char *
5421mch_job_status(job_T *job)
5422{
5423 DWORD dwExitCode = 0;
5424
Bram Moolenaar76467df2016-02-12 19:30:26 +01005425 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
5426 || dwExitCode != STILL_ACTIVE)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005427 {
Bram Moolenaareab089d2016-02-21 19:32:02 +01005428 job->jv_exitval = (int)dwExitCode;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005429 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005430 {
5431 ch_log(job->jv_channel, "Job ended");
5432 job->jv_status = JOB_ENDED;
5433 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005434 return "dead";
5435 }
5436 return "run";
5437}
5438
Bram Moolenaar97792de2016-10-15 18:36:49 +02005439 job_T *
5440mch_detect_ended_job(job_T *job_list)
5441{
5442 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
5443 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
5444 job_T *job = job_list;
5445
5446 while (job != NULL)
5447 {
5448 DWORD n;
5449 DWORD result;
5450
5451 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
5452 && job != NULL; job = job->jv_next)
5453 {
5454 if (job->jv_status == JOB_STARTED)
5455 {
5456 jobHandles[n] = job->jv_proc_info.hProcess;
5457 jobArray[n] = job;
5458 ++n;
5459 }
5460 }
5461 if (n == 0)
5462 continue;
5463 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
5464 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
5465 {
5466 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
5467
5468 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
5469 return wait_job;
5470 }
5471 }
5472 return NULL;
5473}
5474
Bram Moolenaarfb630902016-10-29 14:55:00 +02005475 static BOOL
5476terminate_all(HANDLE process, int code)
5477{
5478 PROCESSENTRY32 pe;
5479 HANDLE h = INVALID_HANDLE_VALUE;
5480 DWORD pid = GetProcessId(process);
5481
5482 if (pid != 0)
5483 {
5484 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5485 if (h != INVALID_HANDLE_VALUE)
5486 {
5487 pe.dwSize = sizeof(PROCESSENTRY32);
5488 if (!Process32First(h, &pe))
5489 goto theend;
5490
5491 do
5492 {
5493 if (pe.th32ParentProcessID == pid)
5494 {
5495 HANDLE ph = OpenProcess(
5496 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
5497 if (ph != NULL)
5498 {
5499 terminate_all(ph, code);
5500 CloseHandle(ph);
5501 }
5502 }
5503 } while (Process32Next(h, &pe));
5504
5505 CloseHandle(h);
5506 }
5507 }
5508
5509theend:
5510 return TerminateProcess(process, code);
5511}
5512
5513/*
5514 * Send a (deadly) signal to "job".
5515 * Return FAIL if it didn't work.
5516 */
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005517 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005518mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005519{
Bram Moolenaar923d9262016-02-25 20:56:01 +01005520 int ret;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005521
Bram Moolenaar923d9262016-02-25 20:56:01 +01005522 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
Bram Moolenaar76467df2016-02-12 19:30:26 +01005523 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005524 // deadly signal
Bram Moolenaar14207f42016-10-27 21:13:10 +02005525 if (job->jv_job_object != NULL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005526 {
5527 if (job->jv_channel != NULL && job->jv_channel->ch_anonymous_pipe)
5528 job->jv_channel->ch_killing = TRUE;
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005529 return TerminateJobObject(job->jv_job_object, -1) ? OK : FAIL;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005530 }
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005531 return terminate_all(job->jv_proc_info.hProcess, -1) ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005532 }
5533
5534 if (!AttachConsole(job->jv_proc_info.dwProcessId))
5535 return FAIL;
5536 ret = GenerateConsoleCtrlEvent(
Bram Moolenaar923d9262016-02-25 20:56:01 +01005537 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
5538 job->jv_proc_info.dwProcessId)
5539 ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005540 FreeConsole();
5541 return ret;
5542}
5543
5544/*
5545 * Clear the data related to "job".
5546 */
5547 void
5548mch_clear_job(job_T *job)
5549{
5550 if (job->jv_status != JOB_FAILED)
5551 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005552 if (job->jv_job_object != NULL)
5553 CloseHandle(job->jv_job_object);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005554 CloseHandle(job->jv_proc_info.hProcess);
5555 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005556}
5557#endif
5558
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005560#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561
5562/*
5563 * Start termcap mode
5564 */
5565 static void
5566termcap_mode_start(void)
5567{
5568 DWORD cmodein;
5569
5570 if (g_fTermcapMode)
5571 return;
5572
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005573 if (!p_rs && USE_VTP)
5574 vtp_printf("\033[?1049h");
5575
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 SaveConsoleBuffer(&g_cbNonTermcap);
5577
5578 if (g_cbTermcap.IsValid)
5579 {
5580 /*
5581 * We've been in termcap mode before. Restore certain screen
5582 * characteristics, including the buffer size and the window
5583 * size. Since we will be redrawing the screen, we don't need
5584 * to restore the actual contents of the buffer.
5585 */
5586 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005587 reset_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
5589 Rows = g_cbTermcap.Info.dwSize.Y;
5590 Columns = g_cbTermcap.Info.dwSize.X;
5591 }
5592 else
5593 {
5594 /*
5595 * This is our first time entering termcap mode. Clear the console
5596 * screen buffer, and resize the buffer to match the current window
5597 * size. We will use this as the size of our editing environment.
5598 */
5599 ClearConsoleBuffer(g_attrCurrent);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005600 set_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
5602 }
5603
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005604# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605 resettitle();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005606# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607
5608 GetConsoleMode(g_hConIn, &cmodein);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609 if (g_fMouseActive)
5610 cmodein |= ENABLE_MOUSE_INPUT;
5611 else
5612 cmodein &= ~ENABLE_MOUSE_INPUT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613 cmodein |= ENABLE_WINDOW_INPUT;
5614 SetConsoleMode(g_hConIn, cmodein);
5615
5616 redraw_later_clear();
5617 g_fTermcapMode = TRUE;
5618}
5619
5620
5621/*
5622 * End termcap mode
5623 */
5624 static void
5625termcap_mode_end(void)
5626{
5627 DWORD cmodein;
5628 ConsoleBuffer *cb;
5629 COORD coord;
5630 DWORD dwDummy;
5631
5632 if (!g_fTermcapMode)
5633 return;
5634
5635 SaveConsoleBuffer(&g_cbTermcap);
5636
5637 GetConsoleMode(g_hConIn, &cmodein);
5638 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
5639 SetConsoleMode(g_hConIn, cmodein);
5640
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005641# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005642 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005643# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644 cb = &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005645# endif
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005646 RestoreConsoleBuffer(cb, p_rs);
Bram Moolenaardf543822020-01-30 11:53:59 +01005647 restore_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648 SetConsoleCursorInfo(g_hConOut, &g_cci);
5649
5650 if (p_rs || exiting)
5651 {
5652 /*
5653 * Clear anything that happens to be on the current line.
5654 */
5655 coord.X = 0;
5656 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
5657 FillConsoleOutputCharacter(g_hConOut, ' ',
5658 cb->Info.dwSize.X, coord, &dwDummy);
5659 /*
5660 * The following is just for aesthetics. If we are exiting without
5661 * restoring the screen, then we want to have a prompt string
5662 * appear at the bottom line. However, the command interpreter
5663 * seems to always advance the cursor one line before displaying
5664 * the prompt string, which causes the screen to scroll. To
5665 * counter this, move the cursor up one line before exiting.
5666 */
5667 if (exiting && !p_rs)
5668 coord.Y--;
5669 /*
5670 * Position the cursor at the leftmost column of the desired row.
5671 */
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005672 SetConsoleCursorPosition(g_hConOut, coord);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673 }
5674
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005675 if (!p_rs && USE_VTP)
Bram Moolenaar0afdcf82020-04-01 18:29:10 +02005676 vtp_printf("\033[?1049l");
5677
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678 g_fTermcapMode = FALSE;
5679}
Bram Moolenaar0f873732019-12-05 20:28:46 +01005680#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681
5682
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005683#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684 void
5685mch_write(
Bram Moolenaar1266d672017-02-01 13:43:36 +01005686 char_u *s UNUSED,
5687 int len UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688{
Bram Moolenaar0f873732019-12-05 20:28:46 +01005689 // never used
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690}
5691
5692#else
5693
5694/*
5695 * clear `n' chars, starting from `coord'
5696 */
5697 static void
5698clear_chars(
5699 COORD coord,
5700 DWORD n)
5701{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005702 if (!USE_VTP)
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02005703 {
5704 DWORD dwDummy;
5705
5706 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5707 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord,
5708 &dwDummy);
5709 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005710 else
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02005711 {
5712 set_console_color_rgb();
5713 gotoxy(coord.X + 1, coord.Y + 1);
5714 vtp_printf("\033[%dX", n);
5715 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716}
5717
5718
5719/*
5720 * Clear the screen
5721 */
5722 static void
5723clear_screen(void)
5724{
5725 g_coord.X = g_coord.Y = 0;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005726
5727 if (!USE_VTP)
5728 clear_chars(g_coord, Rows * Columns);
5729 else
5730 {
5731 set_console_color_rgb();
5732 gotoxy(1, 1);
5733 vtp_printf("\033[2J");
5734 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735}
5736
5737
5738/*
5739 * Clear to end of display
5740 */
5741 static void
5742clear_to_end_of_display(void)
5743{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005744 COORD save = g_coord;
5745
5746 if (!USE_VTP)
5747 clear_chars(g_coord, (Rows - g_coord.Y - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 * Columns + (Columns - g_coord.X));
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005749 else
5750 {
5751 set_console_color_rgb();
5752 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5753 vtp_printf("\033[0J");
5754
5755 gotoxy(save.X + 1, save.Y + 1);
5756 g_coord = save;
5757 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758}
5759
5760
5761/*
5762 * Clear to end of line
5763 */
5764 static void
5765clear_to_end_of_line(void)
5766{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005767 COORD save = g_coord;
5768
5769 if (!USE_VTP)
5770 clear_chars(g_coord, Columns - g_coord.X);
5771 else
5772 {
5773 set_console_color_rgb();
5774 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5775 vtp_printf("\033[0K");
5776
5777 gotoxy(save.X + 1, save.Y + 1);
5778 g_coord = save;
5779 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780}
5781
5782
5783/*
5784 * Scroll the scroll region up by `cLines' lines
5785 */
5786 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005787scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788{
5789 COORD oldcoord = g_coord;
5790
5791 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5792 delete_lines(cLines);
5793
5794 g_coord = oldcoord;
5795}
5796
5797
5798/*
5799 * Set the scroll region
5800 */
5801 static void
5802set_scroll_region(
5803 unsigned left,
5804 unsigned top,
5805 unsigned right,
5806 unsigned bottom)
5807{
5808 if (left >= right
5809 || top >= bottom
5810 || right > (unsigned) Columns - 1
5811 || bottom > (unsigned) Rows - 1)
5812 return;
5813
5814 g_srScrollRegion.Left = left;
5815 g_srScrollRegion.Top = top;
5816 g_srScrollRegion.Right = right;
5817 g_srScrollRegion.Bottom = bottom;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005818}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005819
Bram Moolenaar6982f422019-02-16 16:48:01 +01005820 static void
5821set_scroll_region_tb(
5822 unsigned top,
5823 unsigned bottom)
5824{
5825 if (top >= bottom || bottom > (unsigned)Rows - 1)
5826 return;
5827
5828 g_srScrollRegion.Top = top;
5829 g_srScrollRegion.Bottom = bottom;
5830}
5831
5832 static void
5833set_scroll_region_lr(
5834 unsigned left,
5835 unsigned right)
5836{
5837 if (left >= right || right > (unsigned)Columns - 1)
5838 return;
5839
5840 g_srScrollRegion.Left = left;
5841 g_srScrollRegion.Right = right;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842}
5843
5844
5845/*
5846 * Insert `cLines' lines at the current cursor position
5847 */
5848 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005849insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005851 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852 COORD dest;
5853 CHAR_INFO fill;
5854
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005855 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5856
Bram Moolenaar6982f422019-02-16 16:48:01 +01005857 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858 dest.Y = g_coord.Y + cLines;
5859
Bram Moolenaar6982f422019-02-16 16:48:01 +01005860 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861 source.Top = g_coord.Y;
5862 source.Right = g_srScrollRegion.Right;
5863 source.Bottom = g_srScrollRegion.Bottom - cLines;
5864
Bram Moolenaar6982f422019-02-16 16:48:01 +01005865 clip.Left = g_srScrollRegion.Left;
5866 clip.Top = g_coord.Y;
5867 clip.Right = g_srScrollRegion.Right;
5868 clip.Bottom = g_srScrollRegion.Bottom;
5869
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005870 fill.Char.AsciiChar = ' ';
5871 if (!USE_VTP)
5872 fill.Attributes = g_attrCurrent;
5873 else
5874 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005876 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005877
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005878 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5879
Bram Moolenaar6982f422019-02-16 16:48:01 +01005880 // Here we have to deal with a win32 console flake: If the scroll
5881 // region looks like abc and we scroll c to a and fill with d we get
5882 // cbd... if we scroll block c one line at a time to a, we get cdd...
5883 // vim expects cdd consistently... So we have to deal with that
5884 // here... (this also occurs scrolling the same way in the other
5885 // direction).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886
5887 if (source.Bottom < dest.Y)
5888 {
5889 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005890 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891
Bram Moolenaar6982f422019-02-16 16:48:01 +01005892 coord.X = source.Left;
5893 for (i = clip.Top; i < dest.Y; ++i)
5894 {
5895 coord.Y = i;
5896 clear_chars(coord, source.Right - source.Left + 1);
5897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005899
5900 if (USE_WT)
5901 {
5902 COORD coord;
5903 int i;
5904
5905 coord.X = source.Left;
5906 for (i = source.Top; i < dest.Y; ++i)
5907 {
5908 coord.Y = i;
5909 clear_chars(coord, source.Right - source.Left + 1);
5910 }
5911 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912}
5913
5914
5915/*
5916 * Delete `cLines' lines at the current cursor position
5917 */
5918 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005919delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005921 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922 COORD dest;
5923 CHAR_INFO fill;
5924 int nb;
5925
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005926 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5927
Bram Moolenaar6982f422019-02-16 16:48:01 +01005928 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929 dest.Y = g_coord.Y;
5930
Bram Moolenaar6982f422019-02-16 16:48:01 +01005931 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932 source.Top = g_coord.Y + cLines;
5933 source.Right = g_srScrollRegion.Right;
5934 source.Bottom = g_srScrollRegion.Bottom;
5935
Bram Moolenaar6982f422019-02-16 16:48:01 +01005936 clip.Left = g_srScrollRegion.Left;
5937 clip.Top = g_coord.Y;
5938 clip.Right = g_srScrollRegion.Right;
5939 clip.Bottom = g_srScrollRegion.Bottom;
5940
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005941 fill.Char.AsciiChar = ' ';
5942 if (!USE_VTP)
5943 fill.Attributes = g_attrCurrent;
5944 else
5945 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005947 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005948
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005949 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5950
Bram Moolenaar6982f422019-02-16 16:48:01 +01005951 // Here we have to deal with a win32 console flake; See insert_lines()
5952 // above.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953
5954 nb = dest.Y + (source.Bottom - source.Top) + 1;
5955
5956 if (nb < source.Top)
5957 {
5958 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005959 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960
Bram Moolenaar6982f422019-02-16 16:48:01 +01005961 coord.X = source.Left;
5962 for (i = nb; i < clip.Bottom; ++i)
5963 {
5964 coord.Y = i;
5965 clear_chars(coord, source.Right - source.Left + 1);
5966 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005968
5969 if (USE_WT)
5970 {
5971 COORD coord;
5972 int i;
5973
5974 coord.X = source.Left;
5975 for (i = nb; i <= source.Bottom; ++i)
5976 {
5977 coord.Y = i;
5978 clear_chars(coord, source.Right - source.Left + 1);
5979 }
5980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981}
5982
5983
5984/*
Bram Moolenaar2313b612019-09-27 14:14:32 +02005985 * Set the cursor position to (x,y) (1-based).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 */
5987 static void
5988gotoxy(
5989 unsigned x,
5990 unsigned y)
5991{
5992 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
5993 return;
5994
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005995 if (!USE_VTP)
Bram Moolenaar2313b612019-09-27 14:14:32 +02005996 {
Bram Moolenaar82e743c2020-03-26 15:39:53 +01005997 // There are reports of double-width characters not displayed
5998 // correctly. This workaround should fix it, similar to how it's done
5999 // for VTP.
6000 g_coord.X = 0;
6001 SetConsoleCursorPosition(g_hConOut, g_coord);
6002
Bram Moolenaar2313b612019-09-27 14:14:32 +02006003 // external cursor coords are 1-based; internal are 0-based
6004 g_coord.X = x - 1;
6005 g_coord.Y = y - 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006006 SetConsoleCursorPosition(g_hConOut, g_coord);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006007 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006008 else
Bram Moolenaar2313b612019-09-27 14:14:32 +02006009 {
6010 // Move the cursor to the left edge of the screen to prevent screen
Bram Moolenaara1299742019-10-10 16:36:00 +02006011 // destruction. Insider build bug. Always enabled because it's cheap
6012 // and avoids mistakes with recognizing the build.
6013 vtp_printf("\033[%d;%dH", g_coord.Y + 1, 1);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006014
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006015 vtp_printf("\033[%d;%dH", y, x);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006016
6017 g_coord.X = x - 1;
6018 g_coord.Y = y - 1;
6019 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006020}
6021
6022
6023/*
6024 * Set the current text attribute = (foreground | background)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006025 * See ../runtime/doc/os_win32.txt for the numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026 */
6027 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006028textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006029{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006030 g_attrCurrent = wAttr & 0xff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031
6032 SetConsoleTextAttribute(g_hConOut, wAttr);
6033}
6034
6035
6036 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006037textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006039 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006040
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006041 if (!USE_VTP)
6042 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6043 else
6044 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045}
6046
6047
6048 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006049textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006051 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006053 if (!USE_VTP)
6054 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6055 else
6056 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057}
6058
6059
6060/*
6061 * restore the default text attribute (whatever we started with)
6062 */
6063 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006064normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006066 if (!USE_VTP)
6067 textattr(g_attrDefault);
6068 else
6069 vtp_sgr_bulk(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070}
6071
6072
6073static WORD g_attrPreStandout = 0;
6074
6075/*
6076 * Make the text standout, by brightening it
6077 */
6078 static void
6079standout(void)
6080{
6081 g_attrPreStandout = g_attrCurrent;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006082
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
6084}
6085
6086
6087/*
6088 * Turn off standout mode
6089 */
6090 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006091standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092{
6093 if (g_attrPreStandout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 textattr(g_attrPreStandout);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006095
6096 g_attrPreStandout = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006097}
6098
6099
6100/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00006101 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102 */
6103 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006104mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006105{
6106 char_u *p;
6107 int n;
6108
6109 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
6110 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006111 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006112# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006113 !p_tgc &&
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006114# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006115 T_ME[0] == ESC && T_ME[1] == '|')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 {
6117 p = T_ME + 2;
6118 n = getdigits(&p);
6119 if (*p == 'm' && n > 0)
6120 {
6121 cterm_normal_fg_color = (n & 0xf) + 1;
6122 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
6123 }
6124 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006125# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006126 cterm_normal_fg_gui_color = INVALCOLOR;
6127 cterm_normal_bg_gui_color = INVALCOLOR;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006128# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006129}
6130
6131
6132/*
6133 * visual bell: flash the screen
6134 */
6135 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006136visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137{
6138 COORD coordOrigin = {0, 0};
6139 WORD attrFlash = ~g_attrCurrent & 0xff;
6140
6141 DWORD dwDummy;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006142 LPWORD oldattrs = ALLOC_MULT(WORD, Rows * Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143
6144 if (oldattrs == NULL)
6145 return;
6146 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
6147 coordOrigin, &dwDummy);
6148 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
6149 coordOrigin, &dwDummy);
6150
Bram Moolenaar0f873732019-12-05 20:28:46 +01006151 Sleep(15); // wait for 15 msec
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006152 if (!USE_VTP)
6153 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154 coordOrigin, &dwDummy);
6155 vim_free(oldattrs);
6156}
6157
6158
6159/*
6160 * Make the cursor visible or invisible
6161 */
6162 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006163cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164{
6165 s_cursor_visible = fVisible;
Bram Moolenaar2695de62020-04-17 21:13:01 +02006166
6167 if (USE_VTP)
6168 vtp_printf("\033[?25%c", fVisible ? 'h' : 'l');
6169
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006170# ifdef MCH_CURSOR_SHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 mch_update_cursor();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006172# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173}
6174
6175
6176/*
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006177 * Write "cbToWrite" bytes in `pchBuf' to the screen.
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006178 * Returns the number of bytes actually written (at least one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006180 static DWORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006181write_chars(
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006182 char_u *pchBuf,
6183 DWORD cbToWrite)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006185 COORD coord = g_coord;
6186 DWORD written;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006187 DWORD n, cchwritten;
6188 static DWORD cells;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006189 static WCHAR *unicodebuf = NULL;
6190 static int unibuflen = 0;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006191 static int length;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006192 int cp = enc_utf8 ? CP_UTF8 : enc_codepage;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006193 static WCHAR *utf8spbuf = NULL;
6194 static int utf8splength;
6195 static DWORD utf8spcells;
6196 static WCHAR **utf8usingbuf = &unicodebuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006198 if (cbToWrite != 1 || *pchBuf != ' ' || !enc_utf8)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006199 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006200 utf8usingbuf = &unicodebuf;
6201 do
6202 {
6203 length = MultiByteToWideChar(cp, 0, (LPCSTR)pchBuf, cbToWrite,
6204 unicodebuf, unibuflen);
6205 if (length && length <= unibuflen)
6206 break;
6207 vim_free(unicodebuf);
6208 unicodebuf = length ? LALLOC_MULT(WCHAR, length) : NULL;
6209 unibuflen = unibuflen ? 0 : length;
6210 } while(1);
6211 cells = mb_string2cells(pchBuf, cbToWrite);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006212 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006213 else // cbToWrite == 1 && *pchBuf == ' ' && enc_utf8
6214 {
6215 if (utf8usingbuf != &utf8spbuf)
6216 {
6217 if (utf8spbuf == NULL)
6218 {
6219 cells = mb_string2cells((char_u *)" ", 1);
6220 length = MultiByteToWideChar(CP_UTF8, 0, " ", 1, NULL, 0);
6221 utf8spbuf = LALLOC_MULT(WCHAR, length);
6222 if (utf8spbuf != NULL)
6223 {
6224 MultiByteToWideChar(CP_UTF8, 0, " ", 1, utf8spbuf, length);
6225 utf8usingbuf = &utf8spbuf;
6226 utf8splength = length;
6227 utf8spcells = cells;
6228 }
6229 }
6230 else
6231 {
6232 utf8usingbuf = &utf8spbuf;
6233 length = utf8splength;
6234 cells = utf8spcells;
6235 }
6236 }
6237 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006238
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006239 if (!USE_VTP)
6240 {
6241 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
6242 coord, &written);
6243 // When writing fails or didn't write a single character, pretend one
6244 // character was written, otherwise we get stuck.
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006245 if (WriteConsoleOutputCharacterW(g_hConOut, *utf8usingbuf, length,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006246 coord, &cchwritten) == 0
6247 || cchwritten == 0 || cchwritten == (DWORD)-1)
6248 cchwritten = 1;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006249 }
6250 else
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006251 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006252 if (WriteConsoleW(g_hConOut, *utf8usingbuf, length, &cchwritten,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006253 NULL) == 0 || cchwritten == 0)
6254 cchwritten = 1;
6255 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006256
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006257 if (cchwritten == length)
6258 {
6259 written = cbToWrite;
6260 g_coord.X += (SHORT)cells;
6261 }
6262 else
6263 {
6264 char_u *p = pchBuf;
6265 for (n = 0; n < cchwritten; n++)
6266 MB_CPTR_ADV(p);
6267 written = p - pchBuf;
6268 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270
6271 while (g_coord.X > g_srScrollRegion.Right)
6272 {
6273 g_coord.X -= (SHORT) Columns;
6274 if (g_coord.Y < g_srScrollRegion.Bottom)
6275 g_coord.Y++;
6276 }
6277
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006278 // Cursor under VTP is always in the correct position, no need to reset.
6279 if (!USE_VTP)
6280 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281
6282 return written;
6283}
6284
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006285 static char_u *
6286get_seq(
6287 int *args,
6288 int *count,
6289 char_u *head)
6290{
6291 int argc;
6292 char_u *p;
6293
6294 if (head == NULL || *head != '\033')
6295 return NULL;
6296
6297 argc = 0;
6298 p = head;
6299 ++p;
6300 do
6301 {
6302 ++p;
6303 args[argc] = getdigits(&p);
6304 argc += (argc < 15) ? 1 : 0;
6305 } while (*p == ';');
6306 *count = argc;
6307
6308 return p;
6309}
6310
6311 static char_u *
6312get_sgr(
6313 int *args,
6314 int *count,
6315 char_u *head)
6316{
6317 char_u *p = get_seq(args, count, head);
6318
6319 return (p && *p == 'm') ? ++p : NULL;
6320}
6321
6322/*
6323 * Pointer to next if SGR (^[[n;2;*;*;*m), NULL otherwise.
6324 */
6325 static char_u *
6326sgrn2(
6327 char_u *head,
6328 int n)
6329{
6330 int argc;
6331 int args[16];
6332 char_u *p = get_sgr(args, &argc, head);
6333
6334 return p && argc == 5 && args[0] == n && args[1] == 2 ? p : NULL;
6335}
6336
6337/*
6338 * Pointer to next if SGR(^[[nm)<space>ESC, NULL otherwise.
6339 */
6340 static char_u *
6341sgrnc(
6342 char_u *head,
6343 int n)
6344{
6345 int argc;
6346 int args[16];
6347 char_u *p = get_sgr(args, &argc, head);
6348
6349 return p && argc == 1 && args[0] == n && (p = skipwhite(p)) && *p == '\033'
6350 ? p : NULL;
6351}
6352
6353 static char_u *
6354skipblank(char_u *q)
6355{
6356 char_u *p = q;
6357
6358 while (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r')
6359 ++p;
6360 return p;
6361}
6362
6363/*
6364 * Pointer to the next if any whitespace that may follow SGR is ESC, otherwise
6365 * NULL.
6366 */
6367 static char_u *
6368sgrn2c(
6369 char_u *head,
6370 int n)
6371{
6372 char_u *p = sgrn2(head, n);
6373
6374 return p && *p != NUL && (p = skipblank(p)) && *p == '\033' ? p : NULL;
6375}
6376
6377/*
6378 * If there is only a newline between the sequence immediately following it,
6379 * a pointer to the character following the newline is returned.
6380 * Otherwise NULL.
6381 */
6382 static char_u *
6383sgrn2cn(
6384 char_u *head,
6385 int n)
6386{
6387 char_u *p = sgrn2(head, n);
6388
6389 return p && p[0] == 0x0a && p[1] == '\033' ? ++p : NULL;
6390}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391
6392/*
6393 * mch_write(): write the output buffer to the screen, translating ESC
6394 * sequences into calls to console output routines.
6395 */
6396 void
6397mch_write(
6398 char_u *s,
6399 int len)
6400{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006401# ifdef VIMDLL
6402 if (gui.in_use)
6403 return;
6404# endif
6405
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 s[len] = NUL;
6407
6408 if (!term_console)
6409 {
6410 write(1, s, (unsigned)len);
6411 return;
6412 }
6413
Bram Moolenaar0f873732019-12-05 20:28:46 +01006414 // translate ESC | sequences into faked bios calls
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415 while (len--)
6416 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006417 int prefix = -1;
6418 char_u ch;
6419
6420 // While processing a sequence, on rare occasions it seems that another
6421 // sequence may be inserted asynchronously.
6422 if (len < 0)
6423 {
6424 redraw_all_later(CLEAR);
6425 return;
6426 }
6427
6428 while((ch = s[++prefix]))
6429 if (ch <= 0x1e && !(ch != '\n' && ch != '\r' && ch != '\b'
6430 && ch != '\a' && ch != '\033'))
6431 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432
6433 if (p_wd)
6434 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006435 WaitForChar(p_wd, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436 if (prefix != 0)
6437 prefix = 1;
6438 }
6439
6440 if (prefix != 0)
6441 {
6442 DWORD nWritten;
6443
6444 nWritten = write_chars(s, prefix);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006445# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006446 if (fdDump)
6447 {
6448 fputc('>', fdDump);
6449 fwrite(s, sizeof(char_u), nWritten, fdDump);
6450 fputs("<\n", fdDump);
6451 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006452# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 len -= (nWritten - 1);
6454 s += nWritten;
6455 }
6456 else if (s[0] == '\n')
6457 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006458 // \n, newline: go to the beginning of the next line or scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459 if (g_coord.Y == g_srScrollRegion.Bottom)
6460 {
6461 scroll(1);
6462 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
6463 }
6464 else
6465 {
6466 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
6467 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006468# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469 if (fdDump)
6470 fputs("\\n\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006471# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 s++;
6473 }
6474 else if (s[0] == '\r')
6475 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006476 // \r, carriage return: go to beginning of line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006478# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 if (fdDump)
6480 fputs("\\r\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006481# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482 s++;
6483 }
6484 else if (s[0] == '\b')
6485 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006486 // \b, backspace: move cursor one position left
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487 if (g_coord.X > g_srScrollRegion.Left)
6488 g_coord.X--;
6489 else if (g_coord.Y > g_srScrollRegion.Top)
6490 {
6491 g_coord.X = g_srScrollRegion.Right;
6492 g_coord.Y--;
6493 }
6494 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006495# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496 if (fdDump)
6497 fputs("\\b\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006498# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499 s++;
6500 }
6501 else if (s[0] == '\a')
6502 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006503 // \a, bell
Bram Moolenaar071d4272004-06-13 20:20:40 +00006504 MessageBeep(0xFFFFFFFF);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006505# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 if (fdDump)
6507 fputs("\\a\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006508# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509 s++;
6510 }
6511 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
6512 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006513# ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006514 char_u *old_s = s;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006515# endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006516 char_u *p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006517 int arg1 = 0, arg2 = 0, argc = 0, args[16];
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006518 char_u *sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519
6520 switch (s[2])
6521 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522 case '0': case '1': case '2': case '3': case '4':
6523 case '5': case '6': case '7': case '8': case '9':
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006524 if (*(p = get_seq(args, &argc, s)) != 'm')
6525 goto notsgr;
6526
6527 p = s;
6528
6529 // Handling frequent optional sequences. Output to the screen
6530 // takes too long, so do not output as much as possible.
6531
6532 // If resetFG,FG,BG,<cr>,BG,FG are connected, the preceding
6533 // resetFG,FG,BG are omitted.
6534 if (sgrn2(sgrn2(sgrn2cn(sgrn2(sgrnc(p, 39), 38), 48), 48), 38))
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006535 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006536 p = sgrn2(sgrn2(sgrnc(p, 39), 38), 48);
6537 len = len + 1 - (int)(p - s);
6538 s = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539 break;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006542 // If FG,BG,BG,FG of SGR are connected, the first FG can be
6543 // omitted.
6544 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 48), 38))
6545 p = sp;
6546
6547 // If FG,BG,FG,BG of SGR are connected, the first FG can be
6548 // omitted.
6549 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 38), 48))
6550 p = sp;
6551
6552 // If BG,BG of SGR are connected, the first BG can be omitted.
6553 if (sgrn2((sp = sgrn2(p, 48)), 48))
6554 p = sp;
6555
6556 // If restoreFG and FG are connected, the restoreFG can be
6557 // omitted.
6558 if (sgrn2((sp = sgrnc(p, 39)), 38))
6559 p = sp;
6560
6561 p = get_seq(args, &argc, p);
6562
6563notsgr:
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006564 arg1 = args[0];
6565 arg2 = args[1];
6566 if (*p == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006568 if (argc == 1 && args[0] == 0)
6569 normvideo();
6570 else if (argc == 1)
6571 {
6572 if (USE_VTP)
6573 textcolor((WORD) arg1);
6574 else
6575 textattr((WORD) arg1);
6576 }
6577 else if (USE_VTP)
6578 vtp_sgr_bulks(argc, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006580 else if (argc == 2 && *p == 'H')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006581 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006582 gotoxy(arg2, arg1);
6583 }
6584 else if (argc == 2 && *p == 'r')
6585 {
6586 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
6587 }
Bram Moolenaar6982f422019-02-16 16:48:01 +01006588 else if (argc == 2 && *p == 'R')
6589 {
6590 set_scroll_region_tb(arg1, arg2);
6591 }
6592 else if (argc == 2 && *p == 'V')
6593 {
6594 set_scroll_region_lr(arg1, arg2);
6595 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006596 else if (argc == 1 && *p == 'A')
6597 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598 gotoxy(g_coord.X + 1,
6599 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
6600 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006601 else if (argc == 1 && *p == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602 {
6603 textbackground((WORD) arg1);
6604 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006605 else if (argc == 1 && *p == 'C')
6606 {
6607 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
6608 g_coord.Y + 1);
6609 }
6610 else if (argc == 1 && *p == 'f')
6611 {
6612 textcolor((WORD) arg1);
6613 }
6614 else if (argc == 1 && *p == 'H')
6615 {
6616 gotoxy(1, arg1);
6617 }
6618 else if (argc == 1 && *p == 'L')
6619 {
6620 insert_lines(arg1);
6621 }
6622 else if (argc == 1 && *p == 'M')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006623 {
6624 delete_lines(arg1);
6625 }
6626
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006627 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006628 s = p + 1;
6629 break;
6630
Bram Moolenaar071d4272004-06-13 20:20:40 +00006631 case 'A':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632 gotoxy(g_coord.X + 1,
6633 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
6634 goto got3;
6635
6636 case 'B':
6637 visual_bell();
6638 goto got3;
6639
6640 case 'C':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
6642 g_coord.Y + 1);
6643 goto got3;
6644
6645 case 'E':
6646 termcap_mode_end();
6647 goto got3;
6648
6649 case 'F':
6650 standout();
6651 goto got3;
6652
6653 case 'f':
6654 standend();
6655 goto got3;
6656
6657 case 'H':
6658 gotoxy(1, 1);
6659 goto got3;
6660
6661 case 'j':
6662 clear_to_end_of_display();
6663 goto got3;
6664
6665 case 'J':
6666 clear_screen();
6667 goto got3;
6668
6669 case 'K':
6670 clear_to_end_of_line();
6671 goto got3;
6672
6673 case 'L':
6674 insert_lines(1);
6675 goto got3;
6676
6677 case 'M':
6678 delete_lines(1);
6679 goto got3;
6680
6681 case 'S':
6682 termcap_mode_start();
6683 goto got3;
6684
6685 case 'V':
6686 cursor_visible(TRUE);
6687 goto got3;
6688
6689 case 'v':
6690 cursor_visible(FALSE);
6691 goto got3;
6692
6693 got3:
6694 s += 3;
6695 len -= 2;
6696 }
6697
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006698# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 if (fdDump)
6700 {
6701 fputs("ESC | ", fdDump);
6702 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
6703 fputc('\n', fdDump);
6704 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006705# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706 }
6707 else
6708 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006709 // Write a single character
Bram Moolenaar071d4272004-06-13 20:20:40 +00006710 DWORD nWritten;
6711
6712 nWritten = write_chars(s, 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006713# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714 if (fdDump)
6715 {
6716 fputc('>', fdDump);
6717 fwrite(s, sizeof(char_u), nWritten, fdDump);
6718 fputs("<\n", fdDump);
6719 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006720# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006721
6722 len -= (nWritten - 1);
6723 s += nWritten;
6724 }
6725 }
6726
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006727# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728 if (fdDump)
6729 fflush(fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006730# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006731}
6732
Bram Moolenaar0f873732019-12-05 20:28:46 +01006733#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734
6735
6736/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01006737 * Delay for "msec" milliseconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738 */
6739 void
6740mch_delay(
6741 long msec,
Bram Moolenaar1266d672017-02-01 13:43:36 +01006742 int ignoreinput UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006743{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006744#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006745 Sleep((int)msec); // never wait for input
6746#else // Console
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006747# ifdef VIMDLL
6748 if (gui.in_use)
6749 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006750 Sleep((int)msec); // never wait for input
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006751 return;
6752 }
6753# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754 if (ignoreinput)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006755# ifdef FEAT_MZSCHEME
6756 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
6757 {
6758 int towait = p_mzq;
6759
Bram Moolenaar0f873732019-12-05 20:28:46 +01006760 // if msec is large enough, wait by portions in p_mzq
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006761 while (msec > 0)
6762 {
6763 mzvim_check_threads();
6764 if (msec < towait)
6765 towait = msec;
6766 Sleep(towait);
6767 msec -= towait;
6768 }
6769 }
6770 else
6771# endif
6772 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006773 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006774 WaitForChar(msec, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006775#endif
6776}
6777
6778
6779/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01006780 * This version of remove is not scared by a readonly (backup) file.
6781 * This can also remove a symbolic link like Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006782 * Return 0 for success, -1 for failure.
6783 */
6784 int
6785mch_remove(char_u *name)
6786{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006787 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788 int n;
6789
Bram Moolenaar203258c2016-01-17 22:15:16 +01006790 /*
6791 * On Windows, deleting a directory's symbolic link is done by
6792 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
6793 */
6794 if (mch_isdir(name) && mch_is_symbolic_link(name))
6795 return mch_rmdir(name);
6796
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006797 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
6798
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006799 wn = enc_to_utf16(name, NULL);
6800 if (wn == NULL)
6801 return -1;
6802
6803 n = DeleteFileW(wn) ? 0 : -1;
6804 vim_free(wn);
6805 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006806}
6807
6808
6809/*
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006810 * Check for an "interrupt signal": CTRL-break or CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006811 */
6812 void
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02006813mch_breakcheck(int force UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006814{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006815#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
6816# ifdef VIMDLL
6817 if (!gui.in_use)
6818# endif
6819 if (g_fCtrlCPressed || g_fCBrkPressed)
6820 {
6821 ctrl_break_was_pressed = g_fCBrkPressed;
6822 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6823 got_int = TRUE;
6824 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825#endif
6826}
6827
Bram Moolenaar0f873732019-12-05 20:28:46 +01006828// physical RAM to leave for the OS
Bram Moolenaaree273972016-01-02 21:11:51 +01006829#define WINNT_RESERVE_BYTES (256*1024*1024)
Bram Moolenaaree273972016-01-02 21:11:51 +01006830
6831/*
6832 * How much main memory in KiB that can be used by VIM.
6833 */
Bram Moolenaaree273972016-01-02 21:11:51 +01006834 long_u
Bram Moolenaar1266d672017-02-01 13:43:36 +01006835mch_total_mem(int special UNUSED)
Bram Moolenaaree273972016-01-02 21:11:51 +01006836{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006837 MEMORYSTATUSEX ms;
6838
Bram Moolenaar0f873732019-12-05 20:28:46 +01006839 // Need to use GlobalMemoryStatusEx() when there is more memory than
6840 // what fits in 32 bits.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006841 ms.dwLength = sizeof(MEMORYSTATUSEX);
6842 GlobalMemoryStatusEx(&ms);
6843 if (ms.ullAvailVirtual < ms.ullTotalPhys)
Bram Moolenaaree273972016-01-02 21:11:51 +01006844 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006845 // Process address space fits in physical RAM, use all of it.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006846 return (long_u)(ms.ullAvailVirtual / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006847 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006848 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
Bram Moolenaaree273972016-01-02 21:11:51 +01006849 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006850 // Catch old NT box or perverse hardware setup.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006851 return (long_u)((ms.ullTotalPhys / 2) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006852 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006853 // Use physical RAM less reserve for OS + data.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006854 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006855}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856
Bram Moolenaar071d4272004-06-13 20:20:40 +00006857/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006858 * mch_wrename() works around a bug in rename (aka MoveFile) in
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
6860 * file whose short file name is "FOO.BAR" (its long file name will
6861 * be correct: "foo.bar~"). Because a file can be accessed by
6862 * either its SFN or its LFN, "foo.bar" has effectively been
6863 * renamed to "foo.bar", which is not at all what was wanted. This
6864 * seems to happen only when renaming files with three-character
6865 * extensions by appending a suffix that does not include ".".
6866 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
6867 *
6868 * There is another problem, which isn't really a bug but isn't right either:
6869 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
6870 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
6871 * service pack 6. Doesn't seem to happen on Windows 98.
6872 *
6873 * Like rename(), returns 0 upon success, non-zero upon failure.
6874 * Should probably set errno appropriately when errors occur.
6875 */
6876 int
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006877mch_wrename(WCHAR *wold, WCHAR *wnew)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006879 WCHAR *p;
6880 int i;
6881 WCHAR szTempFile[_MAX_PATH + 1];
6882 WCHAR szNewPath[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883 HANDLE hf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006885 // No need to play tricks unless the file name contains a "~" as the
6886 // seventh character.
6887 p = wold;
6888 for (i = 0; wold[i] != NUL; ++i)
6889 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
6890 && wold[i + 1] != 0)
6891 p = wold + i + 1;
6892 if ((int)(wold + i - p) < 8 || p[6] != '~')
6893 return (MoveFileW(wold, wnew) == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006894
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006895 // Get base path of new file name. Undocumented feature: If pszNewFile is
6896 // a directory, no error is returned and pszFilePart will be NULL.
6897 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006898 return -1;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006899 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006901 // Get (and create) a unique temporary file name in directory of new file
6902 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903 return -2;
6904
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006905 // blow the temp file away
6906 if (!DeleteFileW(szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907 return -3;
6908
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006909 // rename old file to the temp file
6910 if (!MoveFileW(wold, szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006911 return -4;
6912
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006913 // now create an empty file called pszOldFile; this prevents the operating
6914 // system using pszOldFile as an alias (SFN) if we're renaming within the
6915 // same directory. For example, we're editing a file called
6916 // filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
6917 // to filena~1.txt~ (i.e., we're making a backup while writing it), the
6918 // SFN for filena~1.txt~ will be filena~1.txt, by default, which will
6919 // cause all sorts of problems later in buf_write(). So, we create an
6920 // empty file called filena~1.txt and the system will have to find some
6921 // other SFN for filena~1.txt~, such as filena~2.txt
6922 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006923 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6924 return -5;
6925 if (!CloseHandle(hf))
6926 return -6;
6927
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006928 // rename the temp file to the new file
6929 if (!MoveFileW(szTempFile, wnew))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006931 // Renaming failed. Rename the file back to its old name, so that it
6932 // looks like nothing happened.
6933 (void)MoveFileW(szTempFile, wold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934 return -7;
6935 }
6936
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006937 // Seems to be left around on Novell filesystems
6938 DeleteFileW(szTempFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006940 // finally, remove the empty old file
6941 if (!DeleteFileW(wold))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942 return -8;
6943
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006944 return 0;
6945}
6946
6947
6948/*
6949 * Converts the filenames to UTF-16, then call mch_wrename().
6950 * Like rename(), returns 0 upon success, non-zero upon failure.
6951 */
6952 int
6953mch_rename(
6954 const char *pszOldFile,
6955 const char *pszNewFile)
6956{
6957 WCHAR *wold = NULL;
6958 WCHAR *wnew = NULL;
6959 int retval = -1;
6960
6961 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
6962 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
6963 if (wold != NULL && wnew != NULL)
6964 retval = mch_wrename(wold, wnew);
6965 vim_free(wold);
6966 vim_free(wnew);
6967 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006968}
6969
6970/*
6971 * Get the default shell for the current hardware platform
6972 */
6973 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006974default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006976 return "cmd.exe";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006977}
6978
6979/*
6980 * mch_access() extends access() to do more detailed check on network drives.
6981 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
6982 */
6983 int
6984mch_access(char *n, int p)
6985{
6986 HANDLE hFile;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006987 int retval = -1; // default: fail
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006988 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006990 wn = enc_to_utf16((char_u *)n, NULL);
6991 if (wn == NULL)
6992 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006994 if (mch_isdir((char_u *)n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006995 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996 WCHAR TempNameW[_MAX_PATH + 16] = L"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006997
6998 if (p & R_OK)
6999 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007000 // Read check is performed by seeing if we can do a find file on
7001 // the directory for any file.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007002 int i;
7003 WIN32_FIND_DATAW d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007005 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
7006 TempNameW[i] = wn[i];
7007 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
7008 TempNameW[i++] = '\\';
7009 TempNameW[i++] = '*';
7010 TempNameW[i++] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007011
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007012 hFile = FindFirstFileW(TempNameW, &d);
7013 if (hFile == INVALID_HANDLE_VALUE)
7014 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007015 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016 (void)FindClose(hFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007017 }
7018
7019 if (p & W_OK)
7020 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007021 // Trying to create a temporary file in the directory should catch
7022 // directories on read-only network shares. However, in
7023 // directories whose ACL allows writes but denies deletes will end
7024 // up keeping the temporary file :-(.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007025 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
7026 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007027 else
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007028 DeleteFileW(TempNameW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 }
7030 }
7031 else
7032 {
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007033 // Don't consider a file read-only if another process has opened it.
7034 DWORD share_mode = FILE_SHARE_READ | FILE_SHARE_WRITE;
7035
Bram Moolenaar0f873732019-12-05 20:28:46 +01007036 // Trying to open the file for the required access does ACL, read-only
7037 // network share, and file attribute checks.
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007038 DWORD access_mode = ((p & W_OK) ? GENERIC_WRITE : 0)
7039 | ((p & R_OK) ? GENERIC_READ : 0);
7040
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007041 hFile = CreateFileW(wn, access_mode, share_mode,
7042 NULL, OPEN_EXISTING, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043 if (hFile == INVALID_HANDLE_VALUE)
7044 goto getout;
7045 CloseHandle(hFile);
7046 }
7047
Bram Moolenaar0f873732019-12-05 20:28:46 +01007048 retval = 0; // success
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049getout:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 return retval;
7052}
7053
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007055 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056 */
7057 int
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007058mch_open(const char *name, int flags, int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059{
7060 WCHAR *wn;
7061 int f;
7062
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007063 wn = enc_to_utf16((char_u *)name, NULL);
7064 if (wn == NULL)
7065 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007067 f = _wopen(wn, flags, mode);
7068 vim_free(wn);
7069 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070}
7071
7072/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007073 * Version of fopen() that uses UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074 */
7075 FILE *
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007076mch_fopen(const char *name, const char *mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077{
7078 WCHAR *wn, *wm;
7079 FILE *f = NULL;
7080
Bram Moolenaara12a1612019-01-24 16:39:02 +01007081#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0f873732019-12-05 20:28:46 +01007082 // Work around an annoying assertion in the Microsoft debug CRT
7083 // when mode's text/binary setting doesn't match _get_fmode().
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007084 char newMode = mode[strlen(mode) - 1];
7085 int oldMode = 0;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007086
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007087 _get_fmode(&oldMode);
7088 if (newMode == 't')
7089 _set_fmode(_O_TEXT);
7090 else if (newMode == 'b')
7091 _set_fmode(_O_BINARY);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007092#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007093 wn = enc_to_utf16((char_u *)name, NULL);
7094 wm = enc_to_utf16((char_u *)mode, NULL);
7095 if (wn != NULL && wm != NULL)
7096 f = _wfopen(wn, wm);
7097 vim_free(wn);
7098 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007099
Bram Moolenaara12a1612019-01-24 16:39:02 +01007100#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007101 _set_fmode(oldMode);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007102#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007103 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007105
Bram Moolenaar071d4272004-06-13 20:20:40 +00007106/*
7107 * SUB STREAM (aka info stream) handling:
7108 *
7109 * NTFS can have sub streams for each file. Normal contents of file is
7110 * stored in the main stream, and extra contents (author information and
7111 * title and so on) can be stored in sub stream. After Windows 2000, user
7112 * can access and store those informations in sub streams via explorer's
7113 * property menuitem in right click menu. Those informations in sub streams
7114 * were lost when copying only the main stream. So we have to copy sub
7115 * streams.
7116 *
7117 * Incomplete explanation:
7118 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
7119 * More useful info and an example:
7120 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
7121 */
7122
7123/*
7124 * Copy info stream data "substream". Read from the file with BackupRead(sh)
7125 * and write to stream "substream" of file "to".
7126 * Errors are ignored.
7127 */
7128 static void
7129copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
7130{
7131 HANDLE hTo;
7132 WCHAR *to_name;
7133
7134 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
7135 wcscpy(to_name, to);
7136 wcscat(to_name, substream);
7137
7138 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
7139 FILE_ATTRIBUTE_NORMAL, NULL);
7140 if (hTo != INVALID_HANDLE_VALUE)
7141 {
7142 long done;
7143 DWORD todo;
7144 DWORD readcnt, written;
7145 char buf[4096];
7146
Bram Moolenaar0f873732019-12-05 20:28:46 +01007147 // Copy block of bytes at a time. Abort when something goes wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148 for (done = 0; done < len; done += written)
7149 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007150 // (size_t) cast for Borland C 5.5
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007151 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
7152 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007153 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
7154 FALSE, FALSE, context)
7155 || readcnt != todo
7156 || !WriteFile(hTo, buf, todo, &written, NULL)
7157 || written != todo)
7158 break;
7159 }
7160 CloseHandle(hTo);
7161 }
7162
7163 free(to_name);
7164}
7165
7166/*
7167 * Copy info streams from file "from" to file "to".
7168 */
7169 static void
7170copy_infostreams(char_u *from, char_u *to)
7171{
7172 WCHAR *fromw;
7173 WCHAR *tow;
7174 HANDLE sh;
7175 WIN32_STREAM_ID sid;
7176 int headersize;
7177 WCHAR streamname[_MAX_PATH];
7178 DWORD readcount;
7179 void *context = NULL;
7180 DWORD lo, hi;
7181 int len;
7182
Bram Moolenaar0f873732019-12-05 20:28:46 +01007183 // Convert the file names to wide characters.
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007184 fromw = enc_to_utf16(from, NULL);
7185 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007186 if (fromw != NULL && tow != NULL)
7187 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007188 // Open the file for reading.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007189 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
7190 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
7191 if (sh != INVALID_HANDLE_VALUE)
7192 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007193 // Use BackupRead() to find the info streams. Repeat until we
7194 // have done them all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007195 for (;;)
7196 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007197 // Get the header to find the length of the stream name. If
7198 // the "readcount" is zero we have done all info streams.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007200 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
7202 &readcount, FALSE, FALSE, &context)
7203 || readcount == 0)
7204 break;
7205
Bram Moolenaar0f873732019-12-05 20:28:46 +01007206 // We only deal with streams that have a name. The normal
7207 // file data appears to be without a name, even though docs
7208 // suggest it is called "::$DATA".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209 if (sid.dwStreamNameSize > 0)
7210 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007211 // Read the stream name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007212 if (!BackupRead(sh, (LPBYTE)streamname,
7213 sid.dwStreamNameSize,
7214 &readcount, FALSE, FALSE, &context))
7215 break;
7216
Bram Moolenaar0f873732019-12-05 20:28:46 +01007217 // Copy an info stream with a name ":anything:$DATA".
7218 // Skip "::$DATA", it has no stream name (examples suggest
7219 // it might be used for the normal file contents).
7220 // Note that BackupRead() counts bytes, but the name is in
7221 // wide characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222 len = readcount / sizeof(WCHAR);
7223 streamname[len] = 0;
7224 if (len > 7 && wcsicmp(streamname + len - 6,
7225 L":$DATA") == 0)
7226 {
7227 streamname[len - 6] = 0;
7228 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007229 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 }
7231 }
7232
Bram Moolenaar0f873732019-12-05 20:28:46 +01007233 // Advance to the next stream. We might try seeking too far,
7234 // but BackupSeek() doesn't skip over stream borders, thus
7235 // that's OK.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007236 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007237 &lo, &hi, &context);
7238 }
7239
Bram Moolenaar0f873732019-12-05 20:28:46 +01007240 // Clear the context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007241 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
7242
7243 CloseHandle(sh);
7244 }
7245 }
7246 vim_free(fromw);
7247 vim_free(tow);
7248}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007249
7250/*
7251 * Copy file attributes from file "from" to file "to".
7252 * For Windows NT and later we copy info streams.
7253 * Always returns zero, errors are ignored.
7254 */
7255 int
7256mch_copy_file_attribute(char_u *from, char_u *to)
7257{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007258 // File streams only work on Windows NT and later.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007259 copy_infostreams(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260 return 0;
7261}
7262
7263#if defined(MYRESETSTKOFLW) || defined(PROTO)
7264/*
7265 * Recreate a destroyed stack guard page in win32.
7266 * Written by Benjamin Peterson.
7267 */
7268
Bram Moolenaar0f873732019-12-05 20:28:46 +01007269// These magic numbers are from the MS header files
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007270# define MIN_STACK_WINNT 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00007271
7272/*
7273 * This function does the same thing as _resetstkoflw(), which is only
7274 * available in DevStudio .net and later.
7275 * Returns 0 for failure, 1 for success.
7276 */
7277 int
7278myresetstkoflw(void)
7279{
7280 BYTE *pStackPtr;
7281 BYTE *pGuardPage;
7282 BYTE *pStackBase;
7283 BYTE *pLowestPossiblePage;
7284 MEMORY_BASIC_INFORMATION mbi;
7285 SYSTEM_INFO si;
7286 DWORD nPageSize;
7287 DWORD dummy;
7288
Bram Moolenaar0f873732019-12-05 20:28:46 +01007289 // We need to know the system page size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007290 GetSystemInfo(&si);
7291 nPageSize = si.dwPageSize;
7292
Bram Moolenaar0f873732019-12-05 20:28:46 +01007293 // ...and the current stack pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294 pStackPtr = (BYTE*)_alloca(1);
7295
Bram Moolenaar0f873732019-12-05 20:28:46 +01007296 // ...and the base of the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007297 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
7298 return 0;
7299 pStackBase = (BYTE*)mbi.AllocationBase;
7300
Bram Moolenaar4b96df52020-01-26 22:00:26 +01007301 // ...and the page that's min_stack_req pages away from stack base; this is
Bram Moolenaar0f873732019-12-05 20:28:46 +01007302 // the lowest page we could use.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007303 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304
Bram Moolenaar071d4272004-06-13 20:20:40 +00007305 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007306 // We want the first committed page in the stack Start at the stack
7307 // base and move forward through memory until we find a committed block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007308 BYTE *pBlock = pStackBase;
7309
Bram Moolenaara466c992005-07-09 21:03:22 +00007310 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311 {
7312 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
7313 return 0;
7314
7315 pBlock += mbi.RegionSize;
7316
7317 if (mbi.State & MEM_COMMIT)
7318 break;
7319 }
7320
Bram Moolenaar0f873732019-12-05 20:28:46 +01007321 // mbi now describes the first committed block in the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007322 if (mbi.Protect & PAGE_GUARD)
7323 return 1;
7324
Bram Moolenaar0f873732019-12-05 20:28:46 +01007325 // decide where the guard page should start
Bram Moolenaar071d4272004-06-13 20:20:40 +00007326 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
7327 pGuardPage = pLowestPossiblePage;
7328 else
7329 pGuardPage = (BYTE*)mbi.BaseAddress;
7330
Bram Moolenaar0f873732019-12-05 20:28:46 +01007331 // allocate the guard page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007332 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
7333 return 0;
7334
Bram Moolenaar0f873732019-12-05 20:28:46 +01007335 // apply the guard attribute to the page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
7337 &dummy))
7338 return 0;
7339 }
7340
7341 return 1;
7342}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007343#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007344
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007345
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007346/*
7347 * The command line arguments in UCS2
7348 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007349static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007350static LPWSTR *ArglistW = NULL;
7351static int global_argc = 0;
7352static char **global_argv;
7353
Bram Moolenaar0f873732019-12-05 20:28:46 +01007354static int used_file_argc = 0; // last argument in global_argv[] used
7355 // for the argument list.
7356static int *used_file_indexes = NULL; // indexes in global_argv[] for
7357 // command line arguments added to
7358 // the argument list
7359static int used_file_count = 0; // nr of entries in used_file_indexes
7360static int used_file_literal = FALSE; // take file names literally
7361static int used_file_full_path = FALSE; // file name was full path
7362static int used_file_diff_mode = FALSE; // file name was with diff mode
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007363static int used_alist_count = 0;
7364
7365
7366/*
7367 * Get the command line arguments. Unicode version.
7368 * Returns argc. Zero when something fails.
7369 */
7370 int
7371get_cmd_argsW(char ***argvp)
7372{
7373 char **argv = NULL;
7374 int argc = 0;
7375 int i;
7376
Bram Moolenaar14993322014-09-09 12:25:33 +02007377 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007378 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
7379 if (ArglistW != NULL)
7380 {
7381 argv = malloc((nArgsW + 1) * sizeof(char *));
7382 if (argv != NULL)
7383 {
7384 argc = nArgsW;
7385 argv[argc] = NULL;
7386 for (i = 0; i < argc; ++i)
7387 {
7388 int len;
7389
Bram Moolenaar0f873732019-12-05 20:28:46 +01007390 // Convert each Unicode argument to the current codepage.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007391 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007392 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007393 (LPSTR *)&argv[i], &len, 0, 0);
7394 if (argv[i] == NULL)
7395 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007396 // Out of memory, clear everything.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007397 while (i > 0)
7398 free(argv[--i]);
7399 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01007400 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007401 argc = 0;
7402 }
7403 }
7404 }
7405 }
7406
7407 global_argc = argc;
7408 global_argv = argv;
7409 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02007410 {
7411 if (used_file_indexes != NULL)
7412 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007413 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02007414 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007415
7416 if (argvp != NULL)
7417 *argvp = argv;
7418 return argc;
7419}
7420
7421 void
7422free_cmd_argsW(void)
7423{
7424 if (ArglistW != NULL)
7425 {
7426 GlobalFree(ArglistW);
7427 ArglistW = NULL;
7428 }
7429}
7430
7431/*
7432 * Remember "name" is an argument that was added to the argument list.
7433 * This avoids that we have to re-parse the argument list when fix_arg_enc()
7434 * is called.
7435 */
7436 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007437used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007438{
7439 int i;
7440
7441 if (used_file_indexes == NULL)
7442 return;
7443 for (i = used_file_argc + 1; i < global_argc; ++i)
7444 if (STRCMP(global_argv[i], name) == 0)
7445 {
7446 used_file_argc = i;
7447 used_file_indexes[used_file_count++] = i;
7448 break;
7449 }
7450 used_file_literal = literal;
7451 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007452 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007453}
7454
7455/*
7456 * Remember the length of the argument list as it was. If it changes then we
7457 * leave it alone when 'encoding' is set.
7458 */
7459 void
7460set_alist_count(void)
7461{
7462 used_alist_count = GARGCOUNT;
7463}
7464
7465/*
7466 * Fix the encoding of the command line arguments. Invoked when 'encoding'
7467 * has been changed while starting up. Use the UCS-2 command line arguments
7468 * and convert them to 'encoding'.
7469 */
7470 void
7471fix_arg_enc(void)
7472{
7473 int i;
7474 int idx;
7475 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007476 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007477
Bram Moolenaar0f873732019-12-05 20:28:46 +01007478 // Safety checks:
7479 // - if argument count differs between the wide and non-wide argument
7480 // list, something must be wrong.
7481 // - the file name arguments must have been located.
7482 // - the length of the argument list wasn't changed by the user.
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007483 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007484 || ArglistW == NULL
7485 || used_file_indexes == NULL
7486 || used_file_count == 0
7487 || used_alist_count != GARGCOUNT)
7488 return;
7489
Bram Moolenaar0f873732019-12-05 20:28:46 +01007490 // Remember the buffer numbers for the arguments.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02007491 fnum_list = ALLOC_MULT(int, GARGCOUNT);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007492 if (fnum_list == NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007493 return; // out of memory
Bram Moolenaar86b68352004-12-27 21:59:20 +00007494 for (i = 0; i < GARGCOUNT; ++i)
7495 fnum_list[i] = GARGLIST[i].ae_fnum;
7496
Bram Moolenaar0f873732019-12-05 20:28:46 +01007497 // Clear the argument list. Make room for the new arguments.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007498 alist_clear(&global_alist);
7499 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007500 return; // out of memory
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007501
7502 for (i = 0; i < used_file_count; ++i)
7503 {
7504 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007505 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007506 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007507 {
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007508 int literal = used_file_literal;
7509
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007510#ifdef FEAT_DIFF
Bram Moolenaar0f873732019-12-05 20:28:46 +01007511 // When using diff mode may need to concatenate file name to
7512 // directory name. Just like it's done in main().
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007513 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
7514 && !mch_isdir(alist_name(&GARGLIST[0])))
7515 {
7516 char_u *r;
7517
7518 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
7519 if (r != NULL)
7520 {
7521 vim_free(str);
7522 str = r;
7523 }
7524 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007525#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007526 // Re-use the old buffer by renaming it. When not using literal
7527 // names it's done by alist_expand() below.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007528 if (used_file_literal)
7529 buf_set_name(fnum_list[i], str);
7530
Bram Moolenaar0f873732019-12-05 20:28:46 +01007531 // Check backtick literal. backtick literal is already expanded in
7532 // main.c, so this part add str as literal.
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007533 if (literal == FALSE)
7534 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02007535 size_t len = STRLEN(str);
7536
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007537 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
7538 literal = TRUE;
7539 }
7540 alist_add(&global_alist, str, literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007541 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007542 }
7543
7544 if (!used_file_literal)
7545 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007546 // Now expand wildcards in the arguments.
7547 // Temporarily add '(' and ')' to 'isfname'. These are valid
7548 // filename characters but are excluded from 'isfname' to make
7549 // "gf" work on a file name in parenthesis (e.g.: see vim.h).
7550 // Also, unset wildignore to not be influenced by this option.
7551 // The arguments specified in command-line should be kept even if
7552 // encoding options were changed.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007553 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007554 do_cmdline_cmd((char_u *)":let SaVe_WIG = &wig|set wig=");
Bram Moolenaar86b68352004-12-27 21:59:20 +00007555 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007556 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007557 do_cmdline_cmd((char_u *)":let &wig = SaVe_WIG|unlet SaVe_WIG");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007558 }
7559
Bram Moolenaar0f873732019-12-05 20:28:46 +01007560 // If wildcard expansion failed, we are editing the first file of the
7561 // arglist and there is no file name: Edit the first argument now.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007562 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7563 {
7564 do_cmdline_cmd((char_u *)":rewind");
7565 if (GARGCOUNT == 1 && used_file_full_path)
Bram Moolenaarb7407d32018-02-03 17:36:27 +01007566 (void)vim_chdirfile(alist_name(&GARGLIST[0]), "drop");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007567 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007568
7569 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007570}
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007571
7572 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02007573mch_setenv(char *var, char *value, int x UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007574{
7575 char_u *envbuf;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007576 WCHAR *p;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007577
Bram Moolenaar964b3742019-05-24 18:54:09 +02007578 envbuf = alloc(STRLEN(var) + STRLEN(value) + 2);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007579 if (envbuf == NULL)
7580 return -1;
7581
7582 sprintf((char *)envbuf, "%s=%s", var, value);
7583
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007584 p = enc_to_utf16(envbuf, NULL);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007585
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007586 vim_free(envbuf);
7587 if (p == NULL)
7588 return -1;
7589 _wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007590#ifdef libintl_wputenv
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007591 libintl_wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007592#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007593 // Unlike Un*x systems, we can free the string for _wputenv().
7594 vim_free(p);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007595
7596 return 0;
7597}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007598
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007599/*
7600 * Support for 256 colors and 24-bit colors was added in Windows 10
7601 * version 1703 (Creators update).
7602 */
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007603#define VTP_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 15063)
7604
7605/*
7606 * Support for pseudo-console (ConPTY) was added in windows 10
Bram Moolenaar57da6982019-09-13 22:30:11 +02007607 * version 1809 (October 2018 update).
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007608 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007609#define CONPTY_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 17763)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007610
7611/*
7612 * ConPTY differences between versions, need different logic.
7613 * version 1903 (May 2019 update).
7614 */
7615#define CONPTY_1903_BUILD MAKE_VER(10, 0, 18362)
7616
7617/*
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007618 * version 1909 (November 2019 update).
7619 */
7620#define CONPTY_1909_BUILD MAKE_VER(10, 0, 18363)
7621
7622/*
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007623 * Stay ahead of the next update, and when it's done, fix this.
7624 * version ? (2020 update, temporarily use the build number of insider preview)
7625 */
7626#define CONPTY_NEXT_UPDATE_BUILD MAKE_VER(10, 0, 19587)
7627
7628/*
Bram Moolenaar57da6982019-09-13 22:30:11 +02007629 * Confirm until this version. Also the logic changes.
7630 * insider preview.
7631 */
Bram Moolenaar4c063dd2019-10-04 21:29:12 +02007632#define CONPTY_INSIDER_BUILD MAKE_VER(10, 0, 18995)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007633
7634/*
7635 * Not stable now.
7636 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007637#define CONPTY_STABLE_BUILD MAKE_VER(10, 0, 32767) // T.B.D.
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007638
7639 static void
7640vtp_flag_init(void)
7641{
7642 DWORD ver = get_build_number();
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007643#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007644 DWORD mode;
7645 HANDLE out;
7646
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007647# ifdef VIMDLL
7648 if (!gui.in_use)
7649# endif
7650 {
7651 out = GetStdHandle(STD_OUTPUT_HANDLE);
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007652
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007653 vtp_working = (ver >= VTP_FIRST_SUPPORT_BUILD) ? 1 : 0;
7654 GetConsoleMode(out, &mode);
7655 mode |= (ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
7656 if (SetConsoleMode(out, mode) == 0)
7657 vtp_working = 0;
7658 }
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007659#endif
7660
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007661 if (ver >= CONPTY_FIRST_SUPPORT_BUILD)
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007662 conpty_working = 1;
7663 if (ver >= CONPTY_STABLE_BUILD)
7664 conpty_stable = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007665
Bram Moolenaar57da6982019-09-13 22:30:11 +02007666 if (ver <= CONPTY_INSIDER_BUILD)
7667 conpty_type = 3;
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007668 if (ver <= CONPTY_1909_BUILD)
7669 conpty_type = 2;
Bram Moolenaar57da6982019-09-13 22:30:11 +02007670 if (ver <= CONPTY_1903_BUILD)
7671 conpty_type = 2;
7672 if (ver < CONPTY_FIRST_SUPPORT_BUILD)
7673 conpty_type = 1;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007674
7675 if (ver >= CONPTY_NEXT_UPDATE_BUILD)
7676 conpty_fix_type = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007677}
7678
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007679#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007680
7681 static void
7682vtp_init(void)
7683{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007684 HMODULE hKerneldll;
7685 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007686# ifdef FEAT_TERMGUICOLORS
7687 COLORREF fg, bg;
7688# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007689
Bram Moolenaar0f873732019-12-05 20:28:46 +01007690 // Use functions supported from Vista
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007691 hKerneldll = GetModuleHandle("kernel32.dll");
7692 if (hKerneldll != NULL)
7693 {
7694 pGetConsoleScreenBufferInfoEx =
7695 (PfnGetConsoleScreenBufferInfoEx)GetProcAddress(
7696 hKerneldll, "GetConsoleScreenBufferInfoEx");
7697 pSetConsoleScreenBufferInfoEx =
7698 (PfnSetConsoleScreenBufferInfoEx)GetProcAddress(
7699 hKerneldll, "SetConsoleScreenBufferInfoEx");
7700 if (pGetConsoleScreenBufferInfoEx != NULL
7701 && pSetConsoleScreenBufferInfoEx != NULL)
7702 has_csbiex = TRUE;
7703 }
7704
7705 csbi.cbSize = sizeof(csbi);
7706 if (has_csbiex)
7707 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007708 save_console_bg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_bg];
7709 save_console_fg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_fg];
Bram Moolenaardf543822020-01-30 11:53:59 +01007710 store_console_bg_rgb = save_console_bg_rgb;
7711 store_console_fg_rgb = save_console_fg_rgb;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007712
7713# ifdef FEAT_TERMGUICOLORS
7714 bg = (COLORREF)csbi.ColorTable[g_color_index_bg];
7715 fg = (COLORREF)csbi.ColorTable[g_color_index_fg];
7716 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7717 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7718 default_console_color_bg = bg;
7719 default_console_color_fg = fg;
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007720# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007721
7722 set_console_color_rgb();
7723}
7724
7725 static void
7726vtp_exit(void)
7727{
Bram Moolenaardf543822020-01-30 11:53:59 +01007728 restore_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007729}
7730
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007731 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007732vtp_printf(
7733 char *format,
7734 ...)
7735{
7736 char_u buf[100];
7737 va_list list;
7738 DWORD result;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007739 int len;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007740
7741 va_start(list, format);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007742 len = vim_vsnprintf((char *)buf, 100, (char *)format, list);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007743 va_end(list);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007744 WriteConsoleA(g_hConOut, buf, (DWORD)len, &result, NULL);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007745 return (int)result;
7746}
7747
7748 static void
7749vtp_sgr_bulk(
7750 int arg)
7751{
7752 int args[1];
7753
7754 args[0] = arg;
7755 vtp_sgr_bulks(1, args);
7756}
7757
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007758#define FAST256(x) \
7759 if ((*p-- = "0123456789"[(n = x % 10)]) \
7760 && x >= 10 && (*p-- = "0123456789"[((m = x % 100) - n) / 10]) \
7761 && x >= 100 && (*p-- = "012"[((x & 0xff) - m) / 100]));
7762
7763#define FAST256CASE(x) \
7764 case x: \
7765 FAST256(newargs[x - 1]);
7766
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007767 static void
7768vtp_sgr_bulks(
7769 int argc,
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007770 int *args)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007771{
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007772#define MAXSGR 16
7773#define SGRBUFSIZE 2 + 4 * MAXSGR + 1 // '\033[' + SGR + 'm'
7774 char_u buf[SGRBUFSIZE];
7775 char_u *p;
7776 int in, out;
7777 int newargs[16];
7778 static int sgrfgr = -1, sgrfgg, sgrfgb;
7779 static int sgrbgr = -1, sgrbgg, sgrbgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007780
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007781 if (argc == 0)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007782 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007783 sgrfgr = sgrbgr = -1;
7784 vtp_printf("033[m");
7785 return;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007786 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007787
7788 in = out = 0;
7789 while (in < argc)
7790 {
7791 int s = args[in];
7792 int copylen = 1;
7793
7794 if (s == 38)
7795 {
7796 if (argc - in >= 5 && args[in + 1] == 2)
7797 {
7798 if (sgrfgr == args[in + 2] && sgrfgg == args[in + 3]
7799 && sgrfgb == args[in + 4])
7800 {
7801 in += 5;
7802 copylen = 0;
7803 }
7804 else
7805 {
7806 sgrfgr = args[in + 2];
7807 sgrfgg = args[in + 3];
7808 sgrfgb = args[in + 4];
7809 copylen = 5;
7810 }
7811 }
7812 else if (argc - in >= 3 && args[in + 1] == 5)
7813 {
7814 sgrfgr = -1;
7815 copylen = 3;
7816 }
7817 }
7818 else if (s == 48)
7819 {
7820 if (argc - in >= 5 && args[in + 1] == 2)
7821 {
7822 if (sgrbgr == args[in + 2] && sgrbgg == args[in + 3]
7823 && sgrbgb == args[in + 4])
7824 {
7825 in += 5;
7826 copylen = 0;
7827 }
7828 else
7829 {
7830 sgrbgr = args[in + 2];
7831 sgrbgg = args[in + 3];
7832 sgrbgb = args[in + 4];
7833 copylen = 5;
7834 }
7835 }
7836 else if (argc - in >= 3 && args[in + 1] == 5)
7837 {
7838 sgrbgr = -1;
7839 copylen = 3;
7840 }
7841 }
7842 else if (30 <= s && s <= 39)
7843 sgrfgr = -1;
7844 else if (90 <= s && s <= 97)
7845 sgrfgr = -1;
7846 else if (40 <= s && s <= 49)
7847 sgrbgr = -1;
7848 else if (100 <= s && s <= 107)
7849 sgrbgr = -1;
7850 else if (s == 0)
7851 sgrfgr = sgrbgr = -1;
7852
7853 while (copylen--)
7854 newargs[out++] = args[in++];
7855 }
7856
7857 p = &buf[sizeof(buf) - 1];
7858 *p-- = 'm';
7859
7860 switch (out)
7861 {
7862 int n, m;
7863 DWORD r;
7864
7865 FAST256CASE(16);
7866 *p-- = ';';
7867 FAST256CASE(15);
7868 *p-- = ';';
7869 FAST256CASE(14);
7870 *p-- = ';';
7871 FAST256CASE(13);
7872 *p-- = ';';
7873 FAST256CASE(12);
7874 *p-- = ';';
7875 FAST256CASE(11);
7876 *p-- = ';';
7877 FAST256CASE(10);
7878 *p-- = ';';
7879 FAST256CASE(9);
7880 *p-- = ';';
7881 FAST256CASE(8);
7882 *p-- = ';';
7883 FAST256CASE(7);
7884 *p-- = ';';
7885 FAST256CASE(6);
7886 *p-- = ';';
7887 FAST256CASE(5);
7888 *p-- = ';';
7889 FAST256CASE(4);
7890 *p-- = ';';
7891 FAST256CASE(3);
7892 *p-- = ';';
7893 FAST256CASE(2);
7894 *p-- = ';';
7895 FAST256CASE(1);
7896 *p-- = '[';
7897 *p = '\033';
7898 WriteConsoleA(g_hConOut, p, (DWORD)(&buf[SGRBUFSIZE] - p), &r, NULL);
7899 default:
7900 break;
7901 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007902}
7903
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007904 static void
7905wt_init(void)
7906{
7907 wt_working = (mch_getenv("WT_SESSION") != NULL);
7908}
7909
7910 int
7911use_wt(void)
7912{
7913 return USE_WT;
7914}
7915
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007916# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007917 static int
7918ctermtoxterm(
7919 int cterm)
7920{
Bram Moolenaar9894e392018-05-05 14:29:06 +02007921 char_u r, g, b, idx;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007922
7923 cterm_color2rgb(cterm, &r, &g, &b, &idx);
7924 return (((int)r << 16) | ((int)g << 8) | (int)b);
7925}
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007926# endif
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007927
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007928 static void
7929set_console_color_rgb(void)
7930{
7931# ifdef FEAT_TERMGUICOLORS
7932 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaara050b942019-12-02 21:35:31 +01007933 guicolor_T fg, bg;
7934 int ctermfg, ctermbg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007935
7936 if (!USE_VTP)
7937 return;
7938
Bram Moolenaara050b942019-12-02 21:35:31 +01007939 get_default_console_color(&ctermfg, &ctermbg, &fg, &bg);
7940
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007941 if (USE_WT)
7942 {
7943 term_fg_rgb_color(fg);
7944 term_bg_rgb_color(bg);
7945 return;
7946 }
7947
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007948 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7949 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7950
7951 csbi.cbSize = sizeof(csbi);
7952 if (has_csbiex)
7953 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
7954
7955 csbi.cbSize = sizeof(csbi);
7956 csbi.srWindow.Right += 1;
7957 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01007958 store_console_bg_rgb = csbi.ColorTable[g_color_index_bg];
7959 store_console_fg_rgb = csbi.ColorTable[g_color_index_fg];
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007960 csbi.ColorTable[g_color_index_bg] = (COLORREF)bg;
7961 csbi.ColorTable[g_color_index_fg] = (COLORREF)fg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007962 if (has_csbiex)
7963 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
7964# endif
7965}
7966
Bram Moolenaara050b942019-12-02 21:35:31 +01007967# if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
7968 void
7969get_default_console_color(
7970 int *cterm_fg,
7971 int *cterm_bg,
7972 guicolor_T *gui_fg,
7973 guicolor_T *gui_bg)
7974{
7975 int id;
7976 guicolor_T guifg = INVALCOLOR;
7977 guicolor_T guibg = INVALCOLOR;
7978 int ctermfg = 0;
7979 int ctermbg = 0;
7980
7981 id = syn_name2id((char_u *)"Normal");
7982 if (id > 0 && p_tgc)
7983 syn_id2colors(id, &guifg, &guibg);
7984 if (guifg == INVALCOLOR)
7985 {
7986 ctermfg = -1;
7987 if (id > 0)
7988 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
7989 guifg = ctermfg != -1 ? ctermtoxterm(ctermfg)
7990 : default_console_color_fg;
7991 cterm_normal_fg_gui_color = guifg;
7992 ctermfg = ctermfg < 0 ? 0 : ctermfg;
7993 }
7994 if (guibg == INVALCOLOR)
7995 {
7996 ctermbg = -1;
7997 if (id > 0)
7998 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
7999 guibg = ctermbg != -1 ? ctermtoxterm(ctermbg)
8000 : default_console_color_bg;
8001 cterm_normal_bg_gui_color = guibg;
8002 ctermbg = ctermbg < 0 ? 0 : ctermbg;
8003 }
8004
8005 *cterm_fg = ctermfg;
8006 *cterm_bg = ctermbg;
8007 *gui_fg = guifg;
8008 *gui_bg = guibg;
8009}
8010# endif
8011
Bram Moolenaardf543822020-01-30 11:53:59 +01008012/*
8013 * Set the console colors to the original colors or the last set colors.
8014 */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008015 static void
8016reset_console_color_rgb(void)
8017{
8018# ifdef FEAT_TERMGUICOLORS
8019 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8020
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008021 if (USE_WT)
8022 return;
8023
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008024 csbi.cbSize = sizeof(csbi);
8025 if (has_csbiex)
8026 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8027
8028 csbi.cbSize = sizeof(csbi);
8029 csbi.srWindow.Right += 1;
8030 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01008031 csbi.ColorTable[g_color_index_bg] = (COLORREF)store_console_bg_rgb;
8032 csbi.ColorTable[g_color_index_fg] = (COLORREF)store_console_fg_rgb;
8033 if (has_csbiex)
8034 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8035# endif
8036}
8037
8038/*
8039 * Set the console colors to the original colors.
8040 */
8041 static void
8042restore_console_color_rgb(void)
8043{
8044# ifdef FEAT_TERMGUICOLORS
8045 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8046
8047 csbi.cbSize = sizeof(csbi);
8048 if (has_csbiex)
8049 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8050
8051 csbi.cbSize = sizeof(csbi);
8052 csbi.srWindow.Right += 1;
8053 csbi.srWindow.Bottom += 1;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02008054 csbi.ColorTable[g_color_index_bg] = (COLORREF)save_console_bg_rgb;
8055 csbi.ColorTable[g_color_index_fg] = (COLORREF)save_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008056 if (has_csbiex)
8057 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8058# endif
8059}
8060
8061 void
8062control_console_color_rgb(void)
8063{
8064 if (USE_VTP)
8065 set_console_color_rgb();
8066 else
8067 reset_console_color_rgb();
8068}
8069
8070 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008071use_vtp(void)
8072{
8073 return USE_VTP;
8074}
8075
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008076 int
8077is_term_win32(void)
8078{
8079 return T_NAME != NULL && STRCMP(T_NAME, "win32") == 0;
8080}
8081
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01008082 int
8083has_vtp_working(void)
8084{
8085 return vtp_working;
8086}
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008087
Bram Moolenaar6902c0e2019-02-16 14:07:37 +01008088#endif
8089
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008090 int
8091has_conpty_working(void)
8092{
8093 return conpty_working;
8094}
8095
8096 int
Bram Moolenaar57da6982019-09-13 22:30:11 +02008097get_conpty_type(void)
8098{
8099 return conpty_type;
8100}
8101
8102 int
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008103is_conpty_stable(void)
8104{
8105 return conpty_stable;
8106}
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008107
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02008108 int
8109get_conpty_fix_type(void)
8110{
8111 return conpty_fix_type;
8112}
8113
Bram Moolenaarafde13b2019-04-28 19:46:49 +02008114#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008115 void
8116resize_console_buf(void)
8117{
8118 CONSOLE_SCREEN_BUFFER_INFO csbi;
8119 COORD coord;
8120 SMALL_RECT newsize;
8121
8122 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
8123 {
8124 coord.X = SRWIDTH(csbi.srWindow);
8125 coord.Y = SRHEIGHT(csbi.srWindow);
8126 SetConsoleScreenBufferSize(g_hConOut, coord);
8127
8128 newsize.Left = 0;
8129 newsize.Top = 0;
8130 newsize.Right = coord.X - 1;
8131 newsize.Bottom = coord.Y - 1;
8132 SetConsoleWindowInfo(g_hConOut, TRUE, &newsize);
8133
8134 SetConsoleScreenBufferSize(g_hConOut, coord);
8135 }
8136}
8137#endif