blob: 60c04632cbbfaab335efbeb630f947b8967a93d5 [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 }
Bram Moolenaar7ca86fe2020-09-03 19:25:11 +02002068# ifdef FEAT_JOB_CHANNEL
2069 if (len > 0)
2070 {
2071 buf[len] = NUL;
2072 ch_log(NULL, "raw key input: \"%s\"", buf);
2073 }
2074# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 return len;
2076
Bram Moolenaar0f873732019-12-05 20:28:46 +01002077#else // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 return 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002079#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080}
2081
Bram Moolenaar82881492012-11-20 16:53:39 +01002082#ifndef PROTO
2083# ifndef __MINGW32__
Bram Moolenaar0f873732019-12-05 20:28:46 +01002084# include <shellapi.h> // required for FindExecutable()
Bram Moolenaar82881492012-11-20 16:53:39 +01002085# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086#endif
2087
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002088/*
Bram Moolenaar95da1362020-05-30 18:37:55 +02002089 * Return TRUE if "name" is an executable file, FALSE if not or it doesn't exist.
Bram Moolenaar43663192017-03-05 14:29:12 +01002090 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2091 * the allocated memory.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002092 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002093 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 static int
Bram Moolenaar95da1362020-05-30 18:37:55 +02002095executable_file(char *name, char_u **path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096{
Bram Moolenaar95da1362020-05-30 18:37:55 +02002097 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name))
Bram Moolenaar43663192017-03-05 14:29:12 +01002098 {
Bram Moolenaar95da1362020-05-30 18:37:55 +02002099 if (path != NULL)
2100 *path = FullName_save((char_u *)name, FALSE);
2101 return TRUE;
2102 }
2103 return FALSE;
2104}
2105
2106/*
2107 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
2108 * If "use_path" is FALSE: Return TRUE if "name" exists.
2109 * If "use_pathext" is TRUE search "name" with extensions in $PATHEXT.
2110 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2111 * the allocated memory.
2112 */
2113 static int
2114executable_exists(char *name, char_u **path, int use_path, int use_pathext)
2115{
2116 // WinNT and later can use _MAX_PATH wide characters for a pathname, which
2117 // means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
2118 // UTF-8.
2119 char_u buf[_MAX_PATH * 3];
2120 size_t len = STRLEN(name);
2121 size_t tmplen;
2122 char_u *p, *e, *e2;
2123 char_u *pathbuf = NULL;
2124 char_u *pathext = NULL;
2125 char_u *pathextbuf = NULL;
2126 int noext = FALSE;
2127 int retval = FALSE;
2128
2129 if (len >= sizeof(buf)) // safety check
Bram Moolenaar43663192017-03-05 14:29:12 +01002130 return FALSE;
Bram Moolenaar95da1362020-05-30 18:37:55 +02002131
2132 // Using the name directly when a Unix-shell like 'shell'.
2133 if (strstr((char *)gettail(p_sh), "sh") != NULL)
2134 noext = TRUE;
2135
2136 if (use_pathext)
2137 {
2138 pathext = mch_getenv("PATHEXT");
2139 if (pathext == NULL)
2140 pathext = (char_u *)".com;.exe;.bat;.cmd";
2141
2142 if (noext == FALSE)
2143 {
2144 /*
2145 * Loop over all extensions in $PATHEXT.
2146 * Check "name" ends with extension.
2147 */
2148 p = pathext;
2149 while (*p)
2150 {
2151 if (p[0] == ';'
2152 || (p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2153 {
2154 // Skip empty or single ".".
2155 ++p;
2156 continue;
2157 }
2158 e = vim_strchr(p, ';');
2159 if (e == NULL)
2160 e = p + STRLEN(p);
2161 tmplen = e - p;
2162
2163 if (_strnicoll(name + len - tmplen, (char *)p, tmplen) == 0)
2164 {
2165 noext = TRUE;
2166 break;
2167 }
2168
2169 p = e;
2170 }
2171 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002172 }
2173
Bram Moolenaar95da1362020-05-30 18:37:55 +02002174 // Prepend single "." to pathext, it's means no extension added.
2175 if (pathext == NULL)
2176 pathext = (char_u *)".";
2177 else if (noext == TRUE)
2178 {
2179 if (pathextbuf == NULL)
2180 pathextbuf = alloc(STRLEN(pathext) + 3);
2181 if (pathextbuf == NULL)
2182 {
2183 retval = FALSE;
2184 goto theend;
2185 }
2186 STRCPY(pathextbuf, ".;");
2187 STRCAT(pathextbuf, pathext);
2188 pathext = pathextbuf;
2189 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02002190
Bram Moolenaar95da1362020-05-30 18:37:55 +02002191 // Use $PATH when "use_path" is TRUE and "name" is basename.
2192 if (use_path && gettail((char_u *)name) == (char_u *)name)
2193 {
2194 p = mch_getenv("PATH");
2195 if (p != NULL)
2196 {
2197 pathbuf = alloc(STRLEN(p) + 3);
2198 if (pathbuf == NULL)
2199 {
2200 retval = FALSE;
2201 goto theend;
2202 }
2203 STRCPY(pathbuf, ".;");
2204 STRCAT(pathbuf, p);
2205 }
2206 }
2207
2208 /*
2209 * Walk through all entries in $PATH to check if "name" exists there and
2210 * is an executable file.
2211 */
2212 p = (pathbuf != NULL) ? pathbuf : (char_u *)".";
2213 while (*p)
2214 {
2215 if (*p == ';') // Skip empty entry
2216 {
2217 ++p;
2218 continue;
2219 }
2220 e = vim_strchr(p, ';');
2221 if (e == NULL)
2222 e = p + STRLEN(p);
2223
2224 if (e - p + len + 2 > sizeof(buf))
2225 {
2226 retval = FALSE;
2227 goto theend;
2228 }
2229 // A single "." that means current dir.
2230 if (e - p == 1 && *p == '.')
2231 STRCPY(buf, name);
2232 else
2233 {
2234 vim_strncpy(buf, p, e - p);
2235 add_pathsep(buf);
2236 STRCAT(buf, name);
2237 }
2238 tmplen = STRLEN(buf);
2239
2240 /*
2241 * Loop over all extensions in $PATHEXT.
2242 * Check "name" with extension added.
2243 */
2244 p = pathext;
2245 while (*p)
2246 {
2247 if (*p == ';')
2248 {
2249 // Skip empty entry
2250 ++p;
2251 continue;
2252 }
2253 e2 = vim_strchr(p, (int)';');
2254 if (e2 == NULL)
2255 e2 = p + STRLEN(p);
2256
2257 if (!(p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2258 {
2259 // Not a single "." that means no extension is added.
2260 if (e2 - p + tmplen + 1 > sizeof(buf))
2261 {
2262 retval = FALSE;
2263 goto theend;
2264 }
2265 vim_strncpy(buf + tmplen, p, e2 - p);
2266 }
2267 if (executable_file((char *)buf, path))
2268 {
2269 retval = TRUE;
2270 goto theend;
2271 }
2272
2273 p = e2;
2274 }
2275
2276 p = e;
2277 }
2278
2279theend:
2280 free(pathextbuf);
2281 free(pathbuf);
2282 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283}
2284
Bram Moolenaar1eed5322019-02-26 17:03:54 +01002285#if (defined(__MINGW32__) && __MSVCRT_VERSION__ >= 0x800) || \
2286 (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002287/*
2288 * Bad parameter handler.
2289 *
2290 * Certain MS CRT functions will intentionally crash when passed invalid
2291 * parameters to highlight possible security holes. Setting this function as
2292 * the bad parameter handler will prevent the crash.
2293 *
2294 * In debug builds the parameters contain CRT information that might help track
2295 * down the source of a problem, but in non-debug builds the arguments are all
2296 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
2297 * worth allowing these to make debugging of issues easier.
2298 */
2299 static void
2300bad_param_handler(const wchar_t *expression,
2301 const wchar_t *function,
2302 const wchar_t *file,
2303 unsigned int line,
2304 uintptr_t pReserved)
2305{
2306}
2307
2308# define SET_INVALID_PARAM_HANDLER \
2309 ((void)_set_invalid_parameter_handler(bad_param_handler))
2310#else
2311# define SET_INVALID_PARAM_HANDLER
2312#endif
2313
Bram Moolenaar4f974752019-02-17 17:44:42 +01002314#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315
2316/*
2317 * GUI version of mch_init().
2318 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002319 static void
2320mch_init_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002322# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002324# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325
Bram Moolenaar0f873732019-12-05 20:28:46 +01002326 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002327 SET_INVALID_PARAM_HANDLER;
2328
Bram Moolenaar0f873732019-12-05 20:28:46 +01002329 // Let critical errors result in a failure, not in a dialog box. Required
2330 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 SetErrorMode(SEM_FAILCRITICALERRORS);
2332
Bram Moolenaar0f873732019-12-05 20:28:46 +01002333 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334
Bram Moolenaar0f873732019-12-05 20:28:46 +01002335 // Specify window size. Is there a place to get the default from?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 Rows = 25;
2337 Columns = 80;
2338
Bram Moolenaar0f873732019-12-05 20:28:46 +01002339 // Look for 'vimrun'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 {
2341 char_u vimrun_location[_MAX_PATH + 4];
2342
Bram Moolenaar0f873732019-12-05 20:28:46 +01002343 // First try in same directory as gvim.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 STRCPY(vimrun_location, exe_name);
2345 STRCPY(gettail(vimrun_location), "vimrun.exe");
2346 if (mch_getperm(vimrun_location) >= 0)
2347 {
2348 if (*skiptowhite(vimrun_location) != NUL)
2349 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002350 // Enclose path with white space in double quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 mch_memmove(vimrun_location + 1, vimrun_location,
2352 STRLEN(vimrun_location) + 1);
2353 *vimrun_location = '"';
2354 STRCPY(gettail(vimrun_location), "vimrun\" ");
2355 }
2356 else
2357 STRCPY(gettail(vimrun_location), "vimrun ");
2358
2359 vimrun_path = (char *)vim_strsave(vimrun_location);
2360 s_dont_use_vimrun = FALSE;
2361 }
Bram Moolenaar95da1362020-05-30 18:37:55 +02002362 else if (executable_exists("vimrun.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 s_dont_use_vimrun = FALSE;
2364
Bram Moolenaar0f873732019-12-05 20:28:46 +01002365 // Don't give the warning for a missing vimrun.exe right now, but only
2366 // when vimrun was supposed to be used. Don't bother people that do
2367 // not need vimrun.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 if (s_dont_use_vimrun)
2369 need_vimrun_warning = TRUE;
2370 }
2371
2372 /*
2373 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2374 * Otherwise the default "findstr /n" is used.
2375 */
Bram Moolenaar95da1362020-05-30 18:37:55 +02002376 if (!executable_exists("findstr.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2378
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002379# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002380 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002381# endif
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01002382
2383 vtp_flag_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384}
2385
2386
Bram Moolenaar0f873732019-12-05 20:28:46 +01002387#endif // FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002388
2389#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002391# define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2392# define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393
2394/*
2395 * ClearConsoleBuffer()
2396 * Description:
2397 * Clears the entire contents of the console screen buffer, using the
2398 * specified attribute.
2399 * Returns:
2400 * TRUE on success
2401 */
2402 static BOOL
2403ClearConsoleBuffer(WORD wAttribute)
2404{
2405 CONSOLE_SCREEN_BUFFER_INFO csbi;
2406 COORD coord;
2407 DWORD NumCells, dummy;
2408
2409 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2410 return FALSE;
2411
2412 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2413 coord.X = 0;
2414 coord.Y = 0;
2415 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2416 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2419 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421
2422 return TRUE;
2423}
2424
2425/*
2426 * FitConsoleWindow()
2427 * Description:
2428 * Checks if the console window will fit within given buffer dimensions.
2429 * Also, if requested, will shrink the window to fit.
2430 * Returns:
2431 * TRUE on success
2432 */
2433 static BOOL
2434FitConsoleWindow(
2435 COORD dwBufferSize,
2436 BOOL WantAdjust)
2437{
2438 CONSOLE_SCREEN_BUFFER_INFO csbi;
2439 COORD dwWindowSize;
2440 BOOL NeedAdjust = FALSE;
2441
2442 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2443 {
2444 /*
2445 * A buffer resize will fail if the current console window does
2446 * not lie completely within that buffer. To avoid this, we might
2447 * have to move and possibly shrink the window.
2448 */
2449 if (csbi.srWindow.Right >= dwBufferSize.X)
2450 {
2451 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2452 if (dwWindowSize.X > dwBufferSize.X)
2453 dwWindowSize.X = dwBufferSize.X;
2454 csbi.srWindow.Right = dwBufferSize.X - 1;
2455 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2456 NeedAdjust = TRUE;
2457 }
2458 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2459 {
2460 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2461 if (dwWindowSize.Y > dwBufferSize.Y)
2462 dwWindowSize.Y = dwBufferSize.Y;
2463 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2464 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2465 NeedAdjust = TRUE;
2466 }
2467 if (NeedAdjust && WantAdjust)
2468 {
2469 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2470 return FALSE;
2471 }
2472 return TRUE;
2473 }
2474
2475 return FALSE;
2476}
2477
2478typedef struct ConsoleBufferStruct
2479{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002480 BOOL IsValid;
2481 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002482 PCHAR_INFO Buffer;
2483 COORD BufferSize;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002484 PSMALL_RECT Regions;
2485 int NumRegions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486} ConsoleBuffer;
2487
2488/*
2489 * SaveConsoleBuffer()
2490 * Description:
2491 * Saves important information about the console buffer, including the
2492 * actual buffer contents. The saved information is suitable for later
2493 * restoration by RestoreConsoleBuffer().
2494 * Returns:
2495 * TRUE if all information was saved; FALSE otherwise
2496 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2497 */
2498 static BOOL
2499SaveConsoleBuffer(
2500 ConsoleBuffer *cb)
2501{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002502 DWORD NumCells;
2503 COORD BufferCoord;
2504 SMALL_RECT ReadRegion;
2505 WORD Y, Y_incr;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002506 int i, numregions;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002507
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 if (cb == NULL)
2509 return FALSE;
2510
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002511 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 {
2513 cb->IsValid = FALSE;
2514 return FALSE;
2515 }
2516 cb->IsValid = TRUE;
2517
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002518 /*
2519 * Allocate a buffer large enough to hold the entire console screen
2520 * buffer. If this ConsoleBuffer structure has already been initialized
2521 * with a buffer of the correct size, then just use that one.
2522 */
2523 if (!cb->IsValid || cb->Buffer == NULL ||
2524 cb->BufferSize.X != cb->Info.dwSize.X ||
2525 cb->BufferSize.Y != cb->Info.dwSize.Y)
2526 {
2527 cb->BufferSize.X = cb->Info.dwSize.X;
2528 cb->BufferSize.Y = cb->Info.dwSize.Y;
2529 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2530 vim_free(cb->Buffer);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002531 cb->Buffer = ALLOC_MULT(CHAR_INFO, NumCells);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002532 if (cb->Buffer == NULL)
2533 return FALSE;
2534 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535
2536 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002537 * We will now copy the console screen buffer into our buffer.
2538 * ReadConsoleOutput() seems to be limited as far as how much you
2539 * can read at a time. Empirically, this number seems to be about
2540 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2541 * in chunks until it is all copied. The chunks will all have the
2542 * same horizontal characteristics, so initialize them now. The
2543 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002545 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002546 ReadRegion.Left = 0;
2547 ReadRegion.Right = cb->Info.dwSize.X - 1;
2548 Y_incr = 12000 / cb->Info.dwSize.X;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002549
2550 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr;
2551 if (cb->Regions == NULL || numregions != cb->NumRegions)
2552 {
2553 cb->NumRegions = numregions;
2554 vim_free(cb->Regions);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002555 cb->Regions = ALLOC_MULT(SMALL_RECT, cb->NumRegions);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002556 if (cb->Regions == NULL)
2557 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002558 VIM_CLEAR(cb->Buffer);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002559 return FALSE;
2560 }
2561 }
2562
2563 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002565 /*
2566 * Read into position (0, Y) in our buffer.
2567 */
2568 BufferCoord.Y = Y;
2569 /*
2570 * Read the region whose top left corner is (0, Y) and whose bottom
2571 * right corner is (width - 1, Y + Y_incr - 1). This should define
2572 * a region of size width by Y_incr. Don't worry if this region is
2573 * too large for the remaining buffer; it will be cropped.
2574 */
2575 ReadRegion.Top = Y;
2576 ReadRegion.Bottom = Y + Y_incr - 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002577 if (!ReadConsoleOutputW(g_hConOut, // output handle
2578 cb->Buffer, // our buffer
2579 cb->BufferSize, // dimensions of our buffer
2580 BufferCoord, // offset in our buffer
2581 &ReadRegion)) // region to save
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002582 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002583 VIM_CLEAR(cb->Buffer);
2584 VIM_CLEAR(cb->Regions);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002585 return FALSE;
2586 }
Bram Moolenaar444fda22017-08-11 20:37:00 +02002587 cb->Regions[i] = ReadRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 }
2589
2590 return TRUE;
2591}
2592
2593/*
2594 * RestoreConsoleBuffer()
2595 * Description:
2596 * Restores important information about the console buffer, including the
2597 * actual buffer contents, if desired. The information to restore is in
2598 * the same format used by SaveConsoleBuffer().
2599 * Returns:
2600 * TRUE on success
2601 */
2602 static BOOL
2603RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002604 ConsoleBuffer *cb,
2605 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002607 COORD BufferCoord;
2608 SMALL_RECT WriteRegion;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002609 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610
2611 if (cb == NULL || !cb->IsValid)
2612 return FALSE;
2613
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002614 /*
2615 * Before restoring the buffer contents, clear the current buffer, and
2616 * restore the cursor position and window information. Doing this now
2617 * prevents old buffer contents from "flashing" onto the screen.
2618 */
2619 if (RestoreScreen)
2620 ClearConsoleBuffer(cb->Info.wAttributes);
2621
2622 FitConsoleWindow(cb->Info.dwSize, TRUE);
2623 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2624 return FALSE;
2625 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2626 return FALSE;
2627
2628 if (!RestoreScreen)
2629 {
2630 /*
2631 * No need to restore the screen buffer contents, so we're done.
2632 */
2633 return TRUE;
2634 }
2635
2636 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2637 return FALSE;
2638 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2639 return FALSE;
2640
2641 /*
2642 * Restore the screen buffer contents.
2643 */
2644 if (cb->Buffer != NULL)
2645 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002646 for (i = 0; i < cb->NumRegions; i++)
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002647 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002648 BufferCoord.X = cb->Regions[i].Left;
2649 BufferCoord.Y = cb->Regions[i].Top;
2650 WriteRegion = cb->Regions[i];
Bram Moolenaar0f873732019-12-05 20:28:46 +01002651 if (!WriteConsoleOutputW(g_hConOut, // output handle
2652 cb->Buffer, // our buffer
2653 cb->BufferSize, // dimensions of our buffer
2654 BufferCoord, // offset in our buffer
2655 &WriteRegion)) // region to restore
Bram Moolenaar444fda22017-08-11 20:37:00 +02002656 return FALSE;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002657 }
2658 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659
2660 return TRUE;
2661}
2662
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002663# define FEAT_RESTORE_ORIG_SCREEN
2664# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002665static ConsoleBuffer g_cbOrig = { 0 };
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002666# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667static ConsoleBuffer g_cbNonTermcap = { 0 };
2668static ConsoleBuffer g_cbTermcap = { 0 };
2669
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002670# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671char g_szOrigTitle[256] = { 0 };
Bram Moolenaar0f873732019-12-05 20:28:46 +01002672HWND g_hWnd = NULL; // also used in os_mswin.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673static HICON g_hOrigIconSmall = NULL;
2674static HICON g_hOrigIcon = NULL;
2675static HICON g_hVimIcon = NULL;
2676static BOOL g_fCanChangeIcon = FALSE;
2677
Bram Moolenaar0f873732019-12-05 20:28:46 +01002678// ICON* are not defined in VC++ 4.0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002679# ifndef ICON_SMALL
2680# define ICON_SMALL 0
2681# endif
2682# ifndef ICON_BIG
2683# define ICON_BIG 1
2684# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685/*
2686 * GetConsoleIcon()
2687 * Description:
2688 * Attempts to retrieve the small icon and/or the big icon currently in
2689 * use by a given window.
2690 * Returns:
2691 * TRUE on success
2692 */
2693 static BOOL
2694GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002695 HWND hWnd,
2696 HICON *phIconSmall,
2697 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698{
2699 if (hWnd == NULL)
2700 return FALSE;
2701
2702 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002703 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2704 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002706 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2707 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 return TRUE;
2709}
2710
2711/*
2712 * SetConsoleIcon()
2713 * Description:
2714 * Attempts to change the small icon and/or the big icon currently in
2715 * use by a given window.
2716 * Returns:
2717 * TRUE on success
2718 */
2719 static BOOL
2720SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002721 HWND hWnd,
2722 HICON hIconSmall,
2723 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 if (hWnd == NULL)
2726 return FALSE;
2727
2728 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002729 SendMessage(hWnd, WM_SETICON,
2730 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002732 SendMessage(hWnd, WM_SETICON,
2733 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 return TRUE;
2735}
2736
2737/*
2738 * SaveConsoleTitleAndIcon()
2739 * Description:
2740 * Saves the current console window title in g_szOrigTitle, for later
2741 * restoration. Also, attempts to obtain a handle to the console window,
2742 * and use it to save the small and big icons currently in use by the
2743 * console window. This is not always possible on some versions of Windows;
2744 * nor is it possible when running Vim remotely using Telnet (since the
2745 * console window the user sees is owned by a remote process).
2746 */
2747 static void
2748SaveConsoleTitleAndIcon(void)
2749{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002750 // Save the original title.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2752 return;
2753
2754 /*
2755 * Obtain a handle to the console window using GetConsoleWindow() from
2756 * KERNEL32.DLL; we need to handle in order to change the window icon.
2757 * This function only exists on NT-based Windows, starting with Windows
2758 * 2000. On older operating systems, we can't change the window icon
2759 * anyway.
2760 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002761 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 if (g_hWnd == NULL)
2763 return;
2764
Bram Moolenaar0f873732019-12-05 20:28:46 +01002765 // Save the original console window icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2767 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2768 return;
2769
Bram Moolenaar0f873732019-12-05 20:28:46 +01002770 // Extract the first icon contained in the Vim executable.
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002771 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002772 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 if (g_hVimIcon != NULL)
2774 g_fCanChangeIcon = TRUE;
2775}
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002776# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777
2778static int g_fWindInitCalled = FALSE;
2779static int g_fTermcapMode = FALSE;
2780static CONSOLE_CURSOR_INFO g_cci;
2781static DWORD g_cmodein = 0;
2782static DWORD g_cmodeout = 0;
2783
2784/*
2785 * non-GUI version of mch_init().
2786 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002787 static void
2788mch_init_c(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002790# ifndef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002791 CONSOLE_SCREEN_BUFFER_INFO csbi;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002792# endif
2793# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002795# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796
Bram Moolenaar0f873732019-12-05 20:28:46 +01002797 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002798 SET_INVALID_PARAM_HANDLER;
2799
Bram Moolenaar0f873732019-12-05 20:28:46 +01002800 // Let critical errors result in a failure, not in a dialog box. Required
2801 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 SetErrorMode(SEM_FAILCRITICALERRORS);
2803
Bram Moolenaar0f873732019-12-05 20:28:46 +01002804 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 out_flush();
2806
Bram Moolenaar0f873732019-12-05 20:28:46 +01002807 // Obtain handles for the standard Console I/O devices
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 if (read_cmd_fd == 0)
2809 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2810 else
2811 create_conin();
2812 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2813
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002814# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar0f873732019-12-05 20:28:46 +01002815 // Save the initial console buffer for later restoration
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002816 SaveConsoleBuffer(&g_cbOrig);
2817 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002818# else
Bram Moolenaar0f873732019-12-05 20:28:46 +01002819 // Get current text attributes
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002820 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2821 g_attrCurrent = g_attrDefault = csbi.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002822# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 if (cterm_normal_fg_color == 0)
2824 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2825 if (cterm_normal_bg_color == 0)
2826 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2827
Bram Moolenaarbdace832019-03-02 10:13:42 +01002828 // Fg and Bg color index number at startup
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02002829 g_color_index_fg = g_attrDefault & 0xf;
2830 g_color_index_bg = (g_attrDefault >> 4) & 0xf;
2831
Bram Moolenaar0f873732019-12-05 20:28:46 +01002832 // set termcap codes to current text attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 update_tcap(g_attrCurrent);
2834
2835 GetConsoleCursorInfo(g_hConOut, &g_cci);
2836 GetConsoleMode(g_hConIn, &g_cmodein);
2837 GetConsoleMode(g_hConOut, &g_cmodeout);
2838
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002839# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 SaveConsoleTitleAndIcon();
2841 /*
2842 * Set both the small and big icons of the console window to Vim's icon.
2843 * Note that Vim presently only has one size of icon (32x32), but it
2844 * automatically gets scaled down to 16x16 when setting the small icon.
2845 */
2846 if (g_fCanChangeIcon)
2847 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002848# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849
2850 ui_get_shellsize();
2851
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002852# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 fdDump = fopen("dump", "wt");
2854
2855 if (fdDump)
2856 {
2857 time_t t;
2858
2859 time(&t);
2860 fputs(ctime(&t), fdDump);
2861 fflush(fdDump);
2862 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002863# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864
2865 g_fWindInitCalled = TRUE;
2866
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002869# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002870 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002871# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002872
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02002873 vtp_flag_init();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002874 vtp_init();
Bram Moolenaar06b7b582020-05-30 17:49:25 +02002875 wt_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876}
2877
2878/*
2879 * non-GUI version of mch_exit().
2880 * Shut down and exit with status `r'
2881 * Careful: mch_exit() may be called before mch_init()!
2882 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002883 static void
2884mch_exit_c(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002886 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002888 vtp_exit();
2889
Bram Moolenaar955f1982017-02-05 15:10:51 +01002890 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 if (g_fWindInitCalled)
2892 settmode(TMODE_COOK);
2893
Bram Moolenaar0f873732019-12-05 20:28:46 +01002894 ml_close_all(TRUE); // remove all memfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895
2896 if (g_fWindInitCalled)
2897 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002898# ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02002899 mch_restore_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 /*
2901 * Restore both the small and big icons of the console window to
2902 * what they were at startup. Don't do this when the window is
2903 * closed, Vim would hang here.
2904 */
2905 if (g_fCanChangeIcon && !g_fForceExit)
2906 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002907# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002909# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 if (fdDump)
2911 {
2912 time_t t;
2913
2914 time(&t);
2915 fputs(ctime(&t), fdDump);
2916 fclose(fdDump);
2917 }
2918 fdDump = NULL;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002919# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 }
2921
2922 SetConsoleCursorInfo(g_hConOut, &g_cci);
2923 SetConsoleMode(g_hConIn, g_cmodein);
2924 SetConsoleMode(g_hConOut, g_cmodeout);
2925
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002926# ifdef DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 dyn_libintl_end();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002928# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929
2930 exit(r);
2931}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002932#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002934 void
2935mch_init(void)
2936{
2937#ifdef VIMDLL
2938 if (gui.starting)
2939 mch_init_g();
2940 else
2941 mch_init_c();
2942#elif defined(FEAT_GUI_MSWIN)
2943 mch_init_g();
2944#else
2945 mch_init_c();
2946#endif
2947}
2948
2949 void
2950mch_exit(int r)
2951{
Bram Moolenaar173d8412020-04-19 14:02:26 +02002952#ifdef FEAT_NETBEANS_INTG
2953 netbeans_send_disconnect();
2954#endif
2955
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002956#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02002957 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002958 mch_exit_g(r);
2959 else
2960 mch_exit_c(r);
2961#elif defined(FEAT_GUI_MSWIN)
2962 mch_exit_g(r);
2963#else
2964 mch_exit_c(r);
2965#endif
2966}
2967
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968/*
2969 * Do we have an interactive window?
2970 */
2971 int
2972mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002973 int argc UNUSED,
2974 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975{
2976 get_exe_name();
2977
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002978#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002979 return OK; // GUI always has a tty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980#else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002981# ifdef VIMDLL
2982 if (gui.in_use)
2983 return OK;
2984# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 if (isatty(1))
2986 return OK;
2987 return FAIL;
2988#endif
2989}
2990
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002991/*
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01002992 * Set the case of the file name, if it already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 * When "len" is > 0, also expand short to long filenames.
2994 */
2995 void
2996fname_case(
2997 char_u *name,
2998 int len)
2999{
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003000 int flen;
3001 WCHAR *p;
3002 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00003004 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003005 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006 return;
3007
3008 slash_adjust(name);
3009
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003010 p = enc_to_utf16(name, NULL);
3011 if (p == NULL)
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003012 return;
3013
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003014 if (GetLongPathNameW(p, buf, _MAX_PATH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003016 char_u *q = utf16_to_enc(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003018 if (q != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003020 if (len > 0 || flen >= (int)STRLEN(q))
3021 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
3022 vim_free(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 }
3024 }
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003025 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026}
3027
3028
3029/*
3030 * Insert user name in s[len].
3031 */
3032 int
3033mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003034 char_u *s,
3035 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003037 WCHAR wszUserName[256 + 1]; // UNLEN is 256
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003038 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003040 if (GetUserNameW(wszUserName, &wcch))
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003041 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003042 char_u *p = utf16_to_enc(wszUserName, NULL);
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003043
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003044 if (p != NULL)
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003045 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003046 vim_strncpy(s, p, len - 1);
3047 vim_free(p);
3048 return OK;
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003049 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 s[0] = NUL;
3052 return FAIL;
3053}
3054
3055
3056/*
3057 * Insert host name in s[len].
3058 */
3059 void
3060mch_get_host_name(
3061 char_u *s,
3062 int len)
3063{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003064 WCHAR wszHostName[256 + 1];
3065 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003067 if (GetComputerNameW(wszHostName, &wcch))
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003068 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003069 char_u *p = utf16_to_enc(wszHostName, NULL);
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003070
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003071 if (p != NULL)
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003072 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003073 vim_strncpy(s, p, len - 1);
3074 vim_free(p);
3075 return;
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003076 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078}
3079
3080
3081/*
3082 * return process ID
3083 */
3084 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003085mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086{
3087 return (long)GetCurrentProcessId();
3088}
3089
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003090/*
3091 * return TRUE if process "pid" is still running
3092 */
3093 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02003094mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003095{
3096 HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, 0, (DWORD)pid);
3097 DWORD status = 0;
3098 int ret = FALSE;
3099
3100 if (hProcess == NULL)
3101 return FALSE; // might not have access
3102 if (GetExitCodeProcess(hProcess, &status) )
3103 ret = status == STILL_ACTIVE;
3104 CloseHandle(hProcess);
3105 return ret;
3106}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107
3108/*
3109 * Get name of current directory into buffer 'buf' of length 'len' bytes.
3110 * Return OK for success, FAIL for failure.
3111 */
3112 int
3113mch_dirname(
3114 char_u *buf,
3115 int len)
3116{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003117 WCHAR wbuf[_MAX_PATH + 1];
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003118
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 /*
3120 * Originally this was:
3121 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3122 * But the Win32s known bug list says that getcwd() doesn't work
3123 * so use the Win32 system call instead. <Negri>
3124 */
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003125 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003127 WCHAR wcbuf[_MAX_PATH + 1];
3128 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003130 if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003132 p = utf16_to_enc(wcbuf, NULL);
3133 if (STRLEN(p) >= (size_t)len)
Bram Moolenaarcea1f9e2018-08-19 14:38:42 +02003134 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003135 // long path name is too long, fall back to short one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003137 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 }
3139 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003140 if (p == NULL)
3141 p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003142
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003143 if (p != NULL)
3144 {
3145 vim_strncpy(buf, p, len - 1);
3146 vim_free(p);
3147 return OK;
3148 }
3149 }
3150 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151}
3152
3153/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003154 * Get file permissions for "name".
3155 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 */
3157 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003158mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003160 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003161 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003163 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003164 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165}
3166
3167
3168/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003169 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003170 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003171 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 */
3173 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003174mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003176 long n;
3177 WCHAR *p;
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003178
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003179 p = enc_to_utf16(name, NULL);
3180 if (p == NULL)
3181 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003183 n = _wchmod(p, perm);
3184 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003185 if (n == -1)
3186 return FAIL;
3187
3188 win32_set_archive(name);
3189
3190 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191}
3192
3193/*
3194 * Set hidden flag for "name".
3195 */
3196 void
3197mch_hide(char_u *name)
3198{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003199 int attrs = win32_getattrs(name);
3200 if (attrs == -1)
3201 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003203 attrs |= FILE_ATTRIBUTE_HIDDEN;
3204 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205}
3206
3207/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003208 * Return TRUE if file "name" exists and is hidden.
3209 */
3210 int
3211mch_ishidden(char_u *name)
3212{
3213 int f = win32_getattrs(name);
3214
3215 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003216 return FALSE; // file does not exist at all
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003217
3218 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3219}
3220
3221/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 * return TRUE if "name" is a directory
3223 * return FALSE if "name" is not a directory or upon error
3224 */
3225 int
3226mch_isdir(char_u *name)
3227{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003228 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229
3230 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003231 return FALSE; // file does not exist at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232
3233 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3234}
3235
3236/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003237 * return TRUE if "name" is a directory, NOT a symlink to a directory
3238 * return FALSE if "name" is not a directory
3239 * return FALSE for error
3240 */
3241 int
3242mch_isrealdir(char_u *name)
3243{
3244 return mch_isdir(name) && !mch_is_symbolic_link(name);
3245}
3246
3247/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003248 * Create directory "name".
3249 * Return 0 on success, -1 on error.
3250 */
3251 int
3252mch_mkdir(char_u *name)
3253{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003254 WCHAR *p;
3255 int retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003256
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003257 p = enc_to_utf16(name, NULL);
3258 if (p == NULL)
3259 return -1;
3260 retval = _wmkdir(p);
3261 vim_free(p);
3262 return retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003263}
3264
3265/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003266 * Delete directory "name".
3267 * Return 0 on success, -1 on error.
3268 */
3269 int
3270mch_rmdir(char_u *name)
3271{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003272 WCHAR *p;
3273 int retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003274
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003275 p = enc_to_utf16(name, NULL);
3276 if (p == NULL)
3277 return -1;
3278 retval = _wrmdir(p);
3279 vim_free(p);
3280 return retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003281}
3282
3283/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003284 * Return TRUE if file "fname" has more than one link.
3285 */
3286 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003287mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003288{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003289 BY_HANDLE_FILE_INFORMATION info;
3290
3291 return win32_fileinfo(fname, &info) == FILEINFO_OK
3292 && info.nNumberOfLinks > 1;
3293}
3294
3295/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003296 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003297 */
3298 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003299mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003300{
3301 HANDLE hFind;
3302 int res = FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003303 DWORD fileFlags = 0, reparseTag = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003304 WCHAR *wn;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003305 WIN32_FIND_DATAW findDataW;
3306
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003307 wn = enc_to_utf16(name, NULL);
3308 if (wn == NULL)
3309 return FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003310
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003311 hFind = FindFirstFileW(wn, &findDataW);
3312 vim_free(wn);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003313 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003314 {
3315 fileFlags = findDataW.dwFileAttributes;
3316 reparseTag = findDataW.dwReserved0;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003317 FindClose(hFind);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003318 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003319
3320 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003321 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3322 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003323 res = TRUE;
3324
3325 return res;
3326}
3327
3328/*
3329 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3330 * link.
3331 */
3332 int
3333mch_is_linked(char_u *fname)
3334{
3335 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3336 return TRUE;
3337 return FALSE;
3338}
3339
3340/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003341 * Get the by-handle-file-information for "fname".
3342 * Returns FILEINFO_OK when OK.
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003343 * Returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003344 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3345 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3346 */
3347 int
3348win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3349{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003350 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003351 int res = FILEINFO_READ_FAIL;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003352 WCHAR *wn;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003353
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003354 wn = enc_to_utf16(fname, NULL);
3355 if (wn == NULL)
3356 return FILEINFO_ENC_FAIL;
3357
3358 hFile = CreateFileW(wn, // file name
3359 GENERIC_READ, // access mode
3360 FILE_SHARE_READ | FILE_SHARE_WRITE, // share mode
3361 NULL, // security descriptor
3362 OPEN_EXISTING, // creation disposition
3363 FILE_FLAG_BACKUP_SEMANTICS, // file attributes
3364 NULL); // handle to template file
3365 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003366
3367 if (hFile != INVALID_HANDLE_VALUE)
3368 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003369 if (GetFileInformationByHandle(hFile, info) != 0)
3370 res = FILEINFO_OK;
3371 else
3372 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003373 CloseHandle(hFile);
3374 }
3375
Bram Moolenaar03f48552006-02-28 23:52:23 +00003376 return res;
3377}
3378
3379/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003380 * get file attributes for `name'
3381 * -1 : error
3382 * else FILE_ATTRIBUTE_* defined in winnt.h
3383 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003384 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003385win32_getattrs(char_u *name)
3386{
3387 int attr;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003388 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003389
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003390 p = enc_to_utf16(name, NULL);
3391 if (p == NULL)
3392 return INVALID_FILE_ATTRIBUTES;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003393
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003394 attr = GetFileAttributesW(p);
3395 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003396
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003397 return attr;
3398}
3399
3400/*
3401 * set file attributes for `name' to `attrs'
3402 *
3403 * return -1 for failure, 0 otherwise
3404 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003405 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003406win32_setattrs(char_u *name, int attrs)
3407{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003408 int res;
3409 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003410
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003411 p = enc_to_utf16(name, NULL);
3412 if (p == NULL)
3413 return -1;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003414
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003415 res = SetFileAttributesW(p, attrs);
3416 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003417
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003418 return res ? 0 : -1;
3419}
3420
3421/*
3422 * Set archive flag for "name".
3423 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003424 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003425win32_set_archive(char_u *name)
3426{
3427 int attrs = win32_getattrs(name);
3428 if (attrs == -1)
3429 return -1;
3430
3431 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3432 return win32_setattrs(name, attrs);
3433}
3434
3435/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 * Return TRUE if file or directory "name" is writable (not readonly).
3437 * Strange semantics of Win32: a readonly directory is writable, but you can't
3438 * delete a file. Let's say this means it is writable.
3439 */
3440 int
3441mch_writable(char_u *name)
3442{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003443 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003445 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3446 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447}
3448
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003450 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003451 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003452 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3453 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 */
3455 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003456mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457{
Bram Moolenaar95da1362020-05-30 18:37:55 +02003458 return executable_exists((char *)name, path, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460
3461/*
3462 * Check what "name" is:
3463 * NODE_NORMAL: file or directory (or doesn't exist)
3464 * NODE_WRITABLE: writable device, socket, fifo, etc.
3465 * NODE_OTHER: non-writable things
3466 */
3467 int
3468mch_nodetype(char_u *name)
3469{
3470 HANDLE hFile;
3471 int type;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003472 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473
Bram Moolenaar0f873732019-12-05 20:28:46 +01003474 // We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3475 // read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3476 // here.
Bram Moolenaar043545e2006-10-10 16:44:07 +00003477 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3478 return NODE_WRITABLE;
3479
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003480 wn = enc_to_utf16(name, NULL);
3481 if (wn == NULL)
3482 return NODE_NORMAL;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003483
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003484 hFile = CreateFileW(wn, // file name
3485 GENERIC_WRITE, // access mode
3486 0, // share mode
3487 NULL, // security descriptor
3488 OPEN_EXISTING, // creation disposition
3489 0, // file attributes
3490 NULL); // handle to template file
3491 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 if (hFile == INVALID_HANDLE_VALUE)
3493 return NODE_NORMAL;
3494
3495 type = GetFileType(hFile);
3496 CloseHandle(hFile);
3497 if (type == FILE_TYPE_CHAR)
3498 return NODE_WRITABLE;
3499 if (type == FILE_TYPE_DISK)
3500 return NODE_NORMAL;
3501 return NODE_OTHER;
3502}
3503
3504#ifdef HAVE_ACL
3505struct my_acl
3506{
3507 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3508 PSID pSidOwner;
3509 PSID pSidGroup;
3510 PACL pDacl;
3511 PACL pSacl;
3512};
3513#endif
3514
3515/*
3516 * Return a pointer to the ACL of file "fname" in allocated memory.
3517 * Return NULL if the ACL is not available for whatever reason.
3518 */
3519 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003520mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521{
3522#ifndef HAVE_ACL
3523 return (vim_acl_T)NULL;
3524#else
3525 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003526 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003528 p = ALLOC_CLEAR_ONE(struct my_acl);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003529 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003531 WCHAR *wn;
Bram Moolenaar27515922013-06-29 15:36:26 +02003532
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003533 wn = enc_to_utf16(fname, NULL);
3534 if (wn == NULL)
Bram Moolenaarbbf9f342020-11-10 22:03:40 +01003535 {
3536 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003537 return NULL;
Bram Moolenaarbbf9f342020-11-10 22:03:40 +01003538 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003539
3540 // Try to retrieve the entire security descriptor.
3541 err = GetNamedSecurityInfoW(
3542 wn, // Abstract filename
3543 SE_FILE_OBJECT, // File Object
3544 OWNER_SECURITY_INFORMATION |
3545 GROUP_SECURITY_INFORMATION |
3546 DACL_SECURITY_INFORMATION |
3547 SACL_SECURITY_INFORMATION,
3548 &p->pSidOwner, // Ownership information.
3549 &p->pSidGroup, // Group membership.
3550 &p->pDacl, // Discretionary information.
3551 &p->pSacl, // For auditing purposes.
3552 &p->pSecurityDescriptor);
3553 if (err == ERROR_ACCESS_DENIED ||
3554 err == ERROR_PRIVILEGE_NOT_HELD)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003555 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003556 // Retrieve only DACL.
3557 (void)GetNamedSecurityInfoW(
3558 wn,
3559 SE_FILE_OBJECT,
3560 DACL_SECURITY_INFORMATION,
3561 NULL,
3562 NULL,
3563 &p->pDacl,
3564 NULL,
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003565 &p->pSecurityDescriptor);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003566 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003567 if (p->pSecurityDescriptor == NULL)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003568 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003569 mch_free_acl((vim_acl_T)p);
3570 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003571 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003572 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 }
3574
3575 return (vim_acl_T)p;
3576#endif
3577}
3578
Bram Moolenaar27515922013-06-29 15:36:26 +02003579#ifdef HAVE_ACL
3580/*
3581 * Check if "acl" contains inherited ACE.
3582 */
3583 static BOOL
3584is_acl_inherited(PACL acl)
3585{
3586 DWORD i;
3587 ACL_SIZE_INFORMATION acl_info;
3588 PACCESS_ALLOWED_ACE ace;
3589
3590 acl_info.AceCount = 0;
3591 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3592 for (i = 0; i < acl_info.AceCount; i++)
3593 {
3594 GetAce(acl, i, (LPVOID *)&ace);
3595 if (ace->Header.AceFlags & INHERITED_ACE)
3596 return TRUE;
3597 }
3598 return FALSE;
3599}
3600#endif
3601
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602/*
3603 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3604 * Errors are ignored.
3605 * This must only be called with "acl" equal to what mch_get_acl() returned.
3606 */
3607 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003608mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609{
3610#ifdef HAVE_ACL
3611 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003612 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003613 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003615 if (p == NULL)
3616 return;
3617
3618 wn = enc_to_utf16(fname, NULL);
3619 if (wn == NULL)
3620 return;
3621
3622 // Set security flags
3623 if (p->pSidOwner)
3624 sec_info |= OWNER_SECURITY_INFORMATION;
3625 if (p->pSidGroup)
3626 sec_info |= GROUP_SECURITY_INFORMATION;
3627 if (p->pDacl)
Bram Moolenaar27515922013-06-29 15:36:26 +02003628 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003629 sec_info |= DACL_SECURITY_INFORMATION;
3630 // Do not inherit its parent's DACL.
3631 // If the DACL is inherited, Cygwin permissions would be changed.
3632 if (!is_acl_inherited(p->pDacl))
3633 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
Bram Moolenaar27515922013-06-29 15:36:26 +02003634 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003635 if (p->pSacl)
3636 sec_info |= SACL_SECURITY_INFORMATION;
3637
3638 (void)SetNamedSecurityInfoW(
3639 wn, // Abstract filename
3640 SE_FILE_OBJECT, // File Object
3641 sec_info,
3642 p->pSidOwner, // Ownership information.
3643 p->pSidGroup, // Group membership.
3644 p->pDacl, // Discretionary information.
3645 p->pSacl // For auditing purposes.
3646 );
3647 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648#endif
3649}
3650
3651 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003652mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653{
3654#ifdef HAVE_ACL
3655 struct my_acl *p = (struct my_acl *)acl;
3656
3657 if (p != NULL)
3658 {
3659 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3660 vim_free(p);
3661 }
3662#endif
3663}
3664
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003665#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003666
3667/*
3668 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3669 */
3670 static BOOL WINAPI
3671handler_routine(
3672 DWORD dwCtrlType)
3673{
Bram Moolenaar589b1102017-08-12 16:39:05 +02003674 INPUT_RECORD ir;
3675 DWORD out;
3676
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 switch (dwCtrlType)
3678 {
3679 case CTRL_C_EVENT:
3680 if (ctrl_c_interrupts)
3681 g_fCtrlCPressed = TRUE;
3682 return TRUE;
3683
3684 case CTRL_BREAK_EVENT:
3685 g_fCBrkPressed = TRUE;
Bram Moolenaar589b1102017-08-12 16:39:05 +02003686 ctrl_break_was_pressed = TRUE;
Bram Moolenaar0f873732019-12-05 20:28:46 +01003687 // ReadConsoleInput is blocking, send a key event to continue.
Bram Moolenaar589b1102017-08-12 16:39:05 +02003688 ir.EventType = KEY_EVENT;
3689 ir.Event.KeyEvent.bKeyDown = TRUE;
3690 ir.Event.KeyEvent.wRepeatCount = 1;
3691 ir.Event.KeyEvent.wVirtualKeyCode = VK_CANCEL;
3692 ir.Event.KeyEvent.wVirtualScanCode = 0;
3693 ir.Event.KeyEvent.dwControlKeyState = 0;
3694 ir.Event.KeyEvent.uChar.UnicodeChar = 0;
3695 WriteConsoleInput(g_hConIn, &ir, 1, &out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 return TRUE;
3697
Bram Moolenaar0f873732019-12-05 20:28:46 +01003698 // fatal events: shut down gracefully
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 case CTRL_CLOSE_EVENT:
3700 case CTRL_LOGOFF_EVENT:
3701 case CTRL_SHUTDOWN_EVENT:
3702 windgoto((int)Rows - 1, 0);
3703 g_fForceExit = TRUE;
3704
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003705 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 (dwCtrlType == CTRL_CLOSE_EVENT
3707 ? _("close")
3708 : dwCtrlType == CTRL_LOGOFF_EVENT
3709 ? _("logoff")
3710 : _("shutdown")));
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003711# ifdef DEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 OutputDebugString(IObuff);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003713# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714
Bram Moolenaar0f873732019-12-05 20:28:46 +01003715 preserve_exit(); // output IObuff, preserve files and exit
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716
Bram Moolenaar0f873732019-12-05 20:28:46 +01003717 return TRUE; // not reached
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718
3719 default:
3720 return FALSE;
3721 }
3722}
3723
3724
3725/*
3726 * set the tty in (raw) ? "raw" : "cooked" mode
3727 */
3728 void
Bram Moolenaar26e86442020-05-17 14:06:16 +02003729mch_settmode(tmode_T tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730{
3731 DWORD cmodein;
3732 DWORD cmodeout;
3733 BOOL bEnableHandler;
3734
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003735# ifdef VIMDLL
3736 if (gui.in_use)
3737 return;
3738# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 GetConsoleMode(g_hConIn, &cmodein);
3740 GetConsoleMode(g_hConOut, &cmodeout);
3741 if (tmode == TMODE_RAW)
3742 {
3743 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3744 ENABLE_ECHO_INPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 if (g_fMouseActive)
3746 cmodein |= ENABLE_MOUSE_INPUT;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003747 cmodeout &= ~(
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003748# ifdef FEAT_TERMGUICOLORS
Bram Moolenaar0f873732019-12-05 20:28:46 +01003749 // Do not turn off the ENABLE_PROCESSED_OUTPUT flag when using
3750 // VTP.
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003751 ((vtp_working) ? 0 : ENABLE_PROCESSED_OUTPUT) |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003752# else
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003753 ENABLE_PROCESSED_OUTPUT |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003754# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003755 ENABLE_WRAP_AT_EOL_OUTPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 bEnableHandler = TRUE;
3757 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01003758 else // cooked
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 {
3760 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3761 ENABLE_ECHO_INPUT);
3762 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3763 bEnableHandler = FALSE;
3764 }
3765 SetConsoleMode(g_hConIn, cmodein);
3766 SetConsoleMode(g_hConOut, cmodeout);
3767 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3768
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003769# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 if (fdDump)
3771 {
3772 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3773 tmode == TMODE_RAW ? "raw" :
3774 tmode == TMODE_COOK ? "cooked" : "normal",
3775 cmodein, cmodeout);
3776 fflush(fdDump);
3777 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003778# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779}
3780
3781
3782/*
3783 * Get the size of the current window in `Rows' and `Columns'
3784 * Return OK when size could be determined, FAIL otherwise.
3785 */
3786 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003787mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788{
3789 CONSOLE_SCREEN_BUFFER_INFO csbi;
3790
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003791# ifdef VIMDLL
3792 if (gui.in_use)
3793 return OK;
3794# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3796 {
3797 /*
3798 * For some reason, we are trying to get the screen dimensions
3799 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3800 * variables are really intended to mean the size of Vim screen
3801 * while in termcap mode.
3802 */
3803 Rows = g_cbTermcap.Info.dwSize.Y;
3804 Columns = g_cbTermcap.Info.dwSize.X;
3805 }
3806 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3807 {
3808 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3809 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3810 }
3811 else
3812 {
3813 Rows = 25;
3814 Columns = 80;
3815 }
3816 return OK;
3817}
3818
3819/*
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003820 * Resize console buffer to 'COORD'
3821 */
3822 static void
3823ResizeConBuf(
3824 HANDLE hConsole,
3825 COORD coordScreen)
3826{
3827 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3828 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003829# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003830 if (fdDump)
3831 {
3832 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3833 GetLastError());
3834 fflush(fdDump);
3835 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003836# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003837 }
3838}
3839
3840/*
3841 * Resize console window size to 'srWindowRect'
3842 */
3843 static void
3844ResizeWindow(
3845 HANDLE hConsole,
3846 SMALL_RECT srWindowRect)
3847{
3848 if (!SetConsoleWindowInfo(hConsole, TRUE, &srWindowRect))
3849 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003850# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003851 if (fdDump)
3852 {
3853 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3854 GetLastError());
3855 fflush(fdDump);
3856 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003857# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003858 }
3859}
3860
3861/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 * Set a console window to `xSize' * `ySize'
3863 */
3864 static void
3865ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003866 HANDLE hConsole,
3867 int xSize,
3868 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003870 CONSOLE_SCREEN_BUFFER_INFO csbi; // hold current console buffer info
3871 SMALL_RECT srWindowRect; // hold the new console size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 COORD coordScreen;
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003873 COORD cursor;
Bram Moolenaar2551c032018-08-23 22:38:31 +02003874 static int resized = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003876# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 if (fdDump)
3878 {
3879 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3880 fflush(fdDump);
3881 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003882# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883
Bram Moolenaar0f873732019-12-05 20:28:46 +01003884 // get the largest size we can size the console window to
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 coordScreen = GetLargestConsoleWindowSize(hConsole);
3886
Bram Moolenaar0f873732019-12-05 20:28:46 +01003887 // define the new console window size and scroll position
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3889 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3890 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3891
3892 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3893 {
3894 int sx, sy;
3895
3896 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3897 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3898 if (sy < ySize || sx < xSize)
3899 {
3900 /*
3901 * Increasing number of lines/columns, do buffer first.
3902 * Use the maximal size in x and y direction.
3903 */
3904 if (sy < ySize)
3905 coordScreen.Y = ySize;
3906 else
3907 coordScreen.Y = sy;
3908 if (sx < xSize)
3909 coordScreen.X = xSize;
3910 else
3911 coordScreen.X = sx;
3912 SetConsoleScreenBufferSize(hConsole, coordScreen);
3913 }
3914 }
3915
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003916 // define the new console buffer size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 coordScreen.X = xSize;
3918 coordScreen.Y = ySize;
3919
Bram Moolenaar2551c032018-08-23 22:38:31 +02003920 // In the new console call API, only the first time in reverse order
3921 if (!vtp_working || resized)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 {
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003923 ResizeWindow(hConsole, srWindowRect);
3924 ResizeConBuf(hConsole, coordScreen);
3925 }
3926 else
3927 {
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003928 // Workaround for a Windows 10 bug
3929 cursor.X = srWindowRect.Left;
3930 cursor.Y = srWindowRect.Top;
3931 SetConsoleCursorPosition(hConsole, cursor);
3932
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003933 ResizeConBuf(hConsole, coordScreen);
3934 ResizeWindow(hConsole, srWindowRect);
Bram Moolenaar2551c032018-08-23 22:38:31 +02003935 resized = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 }
3937}
3938
3939
3940/*
3941 * Set the console window to `Rows' * `Columns'
3942 */
3943 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003944mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945{
3946 COORD coordScreen;
3947
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003948# ifdef VIMDLL
3949 if (gui.in_use)
3950 return;
3951# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01003952 // Don't change window size while still starting up
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 if (suppress_winsize != 0)
3954 {
3955 suppress_winsize = 2;
3956 return;
3957 }
3958
3959 if (term_console)
3960 {
3961 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3962
Bram Moolenaar0f873732019-12-05 20:28:46 +01003963 // Clamp Rows and Columns to reasonable values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 if (Rows > coordScreen.Y)
3965 Rows = coordScreen.Y;
3966 if (Columns > coordScreen.X)
3967 Columns = coordScreen.X;
3968
3969 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3970 }
3971}
3972
3973/*
3974 * Rows and/or Columns has changed.
3975 */
3976 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003977mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003979# ifdef VIMDLL
3980 if (gui.in_use)
3981 return;
3982# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003983 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3984}
3985
3986
3987/*
3988 * Called when started up, to set the winsize that was delayed.
3989 */
3990 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003991mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992{
3993 if (suppress_winsize == 2)
3994 {
3995 suppress_winsize = 0;
3996 mch_set_shellsize();
3997 shell_resized();
3998 }
3999 suppress_winsize = 0;
4000}
Bram Moolenaar0f873732019-12-05 20:28:46 +01004001#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004003 static BOOL
4004vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01004005 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004006 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01004007 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004008 STARTUPINFO *si,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004009 PROCESS_INFORMATION *pi,
4010 LPVOID *env,
4011 char *cwd)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004012{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004013 BOOL ret = FALSE;
4014 WCHAR *wcmd, *wcwd = NULL;
4015
4016 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4017 if (wcmd == NULL)
4018 return FALSE;
4019 if (cwd != NULL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004020 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004021 wcwd = enc_to_utf16((char_u *)cwd, NULL);
4022 if (wcwd == NULL)
4023 goto theend;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004024 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004025
4026 ret = CreateProcessW(
4027 NULL, // Executable name
4028 wcmd, // Command to execute
4029 NULL, // Process security attributes
4030 NULL, // Thread security attributes
4031 inherit_handles, // Inherit handles
4032 flags, // Creation flags
4033 env, // Environment
4034 wcwd, // Current directory
4035 (LPSTARTUPINFOW)si, // Startup information
4036 pi); // Process information
4037theend:
4038 vim_free(wcmd);
4039 vim_free(wcwd);
4040 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004041}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042
4043
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004044 static HINSTANCE
4045vim_shell_execute(
4046 char *cmd,
4047 INT n_show_cmd)
4048{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004049 HINSTANCE ret;
4050 WCHAR *wcmd;
4051
4052 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4053 if (wcmd == NULL)
4054 return (HINSTANCE) 0;
4055
4056 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd);
4057 vim_free(wcmd);
4058 return ret;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004059}
4060
4061
Bram Moolenaar4f974752019-02-17 17:44:42 +01004062#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063
4064/*
4065 * Specialised version of system() for Win32 GUI mode.
4066 * This version proceeds as follows:
4067 * 1. Create a console window for use by the subprocess
4068 * 2. Run the subprocess (it gets the allocated console by default)
4069 * 3. Wait for the subprocess to terminate and get its exit code
4070 * 4. Prompt the user to press a key to close the console window
4071 */
4072 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004073mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074{
4075 STARTUPINFO si;
4076 PROCESS_INFORMATION pi;
4077 DWORD ret = 0;
4078 HWND hwnd = GetFocus();
4079
4080 si.cb = sizeof(si);
4081 si.lpReserved = NULL;
4082 si.lpDesktop = NULL;
4083 si.lpTitle = NULL;
4084 si.dwFlags = STARTF_USESHOWWINDOW;
4085 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004086 * It's nicer to run a filter command in a minimized window.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004087 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004089 if (options & SHELL_DOOUT)
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004090 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 else
4092 si.wShowWindow = SW_SHOWNORMAL;
4093 si.cbReserved2 = 0;
4094 si.lpReserved2 = NULL;
4095
Bram Moolenaar0f873732019-12-05 20:28:46 +01004096 // Now, run the command
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004097 vim_create_process(cmd, FALSE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004098 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE,
4099 &si, &pi, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100
Bram Moolenaar0f873732019-12-05 20:28:46 +01004101 // Wait for the command to terminate before continuing
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004103# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 int delay = 1;
4105
Bram Moolenaar0f873732019-12-05 20:28:46 +01004106 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 for (;;)
4108 {
4109 MSG msg;
4110
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004111 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 {
4113 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004114 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004115 delay = 1;
4116 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 }
4118 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4119 break;
4120
Bram Moolenaar0f873732019-12-05 20:28:46 +01004121 // We start waiting for a very short time and then increase it, so
4122 // that we respond quickly when the process is quick, and don't
4123 // consume too much overhead when it's slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 if (delay < 50)
4125 delay += 10;
4126 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004127# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 WaitForSingleObject(pi.hProcess, INFINITE);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004129# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130
Bram Moolenaar0f873732019-12-05 20:28:46 +01004131 // Get the command exit code
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 GetExitCodeProcess(pi.hProcess, &ret);
4133 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134
Bram Moolenaar0f873732019-12-05 20:28:46 +01004135 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 CloseHandle(pi.hThread);
4137 CloseHandle(pi.hProcess);
4138
Bram Moolenaar0f873732019-12-05 20:28:46 +01004139 // Try to get input focus back. Doesn't always work though.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4141
4142 return ret;
4143}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004144
4145/*
4146 * Thread launched by the gui to send the current buffer data to the
4147 * process. This way avoid to hang up vim totally if the children
4148 * process take a long time to process the lines.
4149 */
Bram Moolenaar4c38d662016-08-03 20:54:57 +02004150 static unsigned int __stdcall
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004151sub_process_writer(LPVOID param)
4152{
4153 HANDLE g_hChildStd_IN_Wr = param;
4154 linenr_T lnum = curbuf->b_op_start.lnum;
4155 DWORD len = 0;
4156 DWORD l;
4157 char_u *lp = ml_get(lnum);
4158 char_u *s;
4159 int written = 0;
4160
4161 for (;;)
4162 {
4163 l = (DWORD)STRLEN(lp + written);
4164 if (l == 0)
4165 len = 0;
4166 else if (lp[written] == NL)
4167 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004168 // NL -> NUL translation
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004169 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4170 }
4171 else
4172 {
4173 s = vim_strchr(lp + written, NL);
4174 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4175 s == NULL ? l : (DWORD)(s - (lp + written)),
4176 &len, NULL);
4177 }
4178 if (len == (int)l)
4179 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004180 // Finished a line, add a NL, unless this line should not have
4181 // one.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004182 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004183 || (!curbuf->b_p_bin
4184 && curbuf->b_p_fixeol)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004185 || (lnum != curbuf->b_no_eol_lnum
4186 && (lnum != curbuf->b_ml.ml_line_count
4187 || curbuf->b_p_eol)))
4188 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02004189 WriteFile(g_hChildStd_IN_Wr, "\n", 1,
4190 (LPDWORD)&vim_ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004191 }
4192
4193 ++lnum;
4194 if (lnum > curbuf->b_op_end.lnum)
4195 break;
4196
4197 lp = ml_get(lnum);
4198 written = 0;
4199 }
4200 else if (len > 0)
4201 written += len;
4202 }
4203
Bram Moolenaar0f873732019-12-05 20:28:46 +01004204 // finished all the lines, close pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004205 CloseHandle(g_hChildStd_IN_Wr);
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004206 return 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004207}
4208
4209
Bram Moolenaar0f873732019-12-05 20:28:46 +01004210# define BUFLEN 100 // length for buffer, stolen from unix version
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004211
4212/*
4213 * This function read from the children's stdout and write the
4214 * data on screen or in the buffer accordingly.
4215 */
4216 static void
4217dump_pipe(int options,
4218 HANDLE g_hChildStd_OUT_Rd,
4219 garray_T *ga,
4220 char_u buffer[],
4221 DWORD *buffer_off)
4222{
4223 DWORD availableBytes = 0;
4224 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004225 int ret;
4226 DWORD len;
4227 DWORD toRead;
4228 int repeatCount;
4229
Bram Moolenaar0f873732019-12-05 20:28:46 +01004230 // we query the pipe to see if there is any data to read
4231 // to avoid to perform a blocking read
4232 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, // pipe to query
4233 NULL, // optional buffer
4234 0, // buffer size
4235 NULL, // number of read bytes
4236 &availableBytes, // available bytes total
4237 NULL); // byteLeft
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004238
4239 repeatCount = 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004240 // We got real data in the pipe, read it
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004241 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004242 {
4243 repeatCount++;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004244 toRead = (DWORD)(BUFLEN - *buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004245 toRead = availableBytes < toRead ? availableBytes : toRead;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004246 ReadFile(g_hChildStd_OUT_Rd, buffer + *buffer_off, toRead , &len, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004247
Bram Moolenaar0f873732019-12-05 20:28:46 +01004248 // If we haven't read anything, there is a problem
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004249 if (len == 0)
4250 break;
4251
4252 availableBytes -= len;
4253
4254 if (options & SHELL_READ)
4255 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004256 // Do NUL -> NL translation, append NL separated
4257 // lines to the current buffer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004258 for (i = 0; i < len; ++i)
4259 {
4260 if (buffer[i] == NL)
4261 append_ga_line(ga);
4262 else if (buffer[i] == NUL)
4263 ga_append(ga, NL);
4264 else
4265 ga_append(ga, buffer[i]);
4266 }
4267 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004268 else if (has_mbyte)
4269 {
4270 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004271 int c;
4272 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004273
4274 len += *buffer_off;
4275 buffer[len] = NUL;
4276
Bram Moolenaar0f873732019-12-05 20:28:46 +01004277 // Check if the last character in buffer[] is
4278 // incomplete, keep these bytes for the next
4279 // round.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004280 for (p = buffer; p < buffer + len; p += l)
4281 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004282 l = MB_CPTR2LEN(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004283 if (l == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004284 l = 1; // NUL byte?
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004285 else if (MB_BYTE2LEN(*p) != l)
4286 break;
4287 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004288 if (p == buffer) // no complete character
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004289 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004290 // avoid getting stuck at an illegal byte
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004291 if (len >= 12)
4292 ++p;
4293 else
4294 {
4295 *buffer_off = len;
4296 return;
4297 }
4298 }
4299 c = *p;
4300 *p = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004301 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004302 if (p < buffer + len)
4303 {
4304 *p = c;
4305 *buffer_off = (DWORD)((buffer + len) - p);
4306 mch_memmove(buffer, p, *buffer_off);
4307 return;
4308 }
4309 *buffer_off = 0;
4310 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004311 else
4312 {
4313 buffer[len] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004314 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004315 }
4316
4317 windgoto(msg_row, msg_col);
4318 cursor_on();
4319 out_flush();
4320 }
4321}
4322
4323/*
4324 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4325 * for communication and doesn't open any new window.
4326 */
4327 static int
4328mch_system_piped(char *cmd, int options)
4329{
4330 STARTUPINFO si;
4331 PROCESS_INFORMATION pi;
4332 DWORD ret = 0;
4333
4334 HANDLE g_hChildStd_IN_Rd = NULL;
4335 HANDLE g_hChildStd_IN_Wr = NULL;
4336 HANDLE g_hChildStd_OUT_Rd = NULL;
4337 HANDLE g_hChildStd_OUT_Wr = NULL;
4338
Bram Moolenaar0f873732019-12-05 20:28:46 +01004339 char_u buffer[BUFLEN + 1]; // reading buffer + size
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004340 DWORD len;
4341
Bram Moolenaar0f873732019-12-05 20:28:46 +01004342 // buffer used to receive keys
4343 char_u ta_buf[BUFLEN + 1]; // TypeAHead
4344 int ta_len = 0; // valid bytes in ta_buf[]
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004345
4346 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004347 int noread_cnt = 0;
4348 garray_T ga;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004349 int delay = 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004350 DWORD buffer_off = 0; // valid bytes in buffer[]
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004351 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004352
4353 SECURITY_ATTRIBUTES saAttr;
4354
Bram Moolenaar0f873732019-12-05 20:28:46 +01004355 // Set the bInheritHandle flag so pipe handles are inherited.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004356 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4357 saAttr.bInheritHandle = TRUE;
4358 saAttr.lpSecurityDescriptor = NULL;
4359
4360 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004361 // Ensure the read handle to the pipe for STDOUT is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004362 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004363 // Create a pipe for the child process's STDIN.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004364 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004365 // Ensure the write handle to the pipe for STDIN is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004366 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004367 {
4368 CloseHandle(g_hChildStd_IN_Rd);
4369 CloseHandle(g_hChildStd_IN_Wr);
4370 CloseHandle(g_hChildStd_OUT_Rd);
4371 CloseHandle(g_hChildStd_OUT_Wr);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004372 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004373 }
4374
4375 si.cb = sizeof(si);
4376 si.lpReserved = NULL;
4377 si.lpDesktop = NULL;
4378 si.lpTitle = NULL;
4379 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4380
Bram Moolenaar0f873732019-12-05 20:28:46 +01004381 // set-up our file redirection
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004382 si.hStdError = g_hChildStd_OUT_Wr;
4383 si.hStdOutput = g_hChildStd_OUT_Wr;
4384 si.hStdInput = g_hChildStd_IN_Rd;
4385 si.wShowWindow = SW_HIDE;
4386 si.cbReserved2 = 0;
4387 si.lpReserved2 = NULL;
4388
4389 if (options & SHELL_READ)
4390 ga_init2(&ga, 1, BUFLEN);
4391
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004392 if (cmd != NULL)
4393 {
4394 p = (char *)vim_strsave((char_u *)cmd);
4395 if (p != NULL)
4396 unescape_shellxquote((char_u *)p, p_sxe);
4397 else
4398 p = cmd;
4399 }
4400
Bram Moolenaar0f873732019-12-05 20:28:46 +01004401 // Now, run the command.
4402 // About "Inherit handles" being TRUE: this command can be litigious,
4403 // handle inheritance was deactivated for pending temp file, but, if we
4404 // deactivate it, the pipes don't work for some reason.
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004405 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE,
4406 &si, &pi, NULL, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004407
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004408 if (p != cmd)
4409 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004410
Bram Moolenaar0f873732019-12-05 20:28:46 +01004411 // Close our unused side of the pipes
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004412 CloseHandle(g_hChildStd_IN_Rd);
4413 CloseHandle(g_hChildStd_OUT_Wr);
4414
4415 if (options & SHELL_WRITE)
4416 {
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004417 HANDLE thread = (HANDLE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004418 _beginthreadex(NULL, // security attributes
4419 0, // default stack size
4420 sub_process_writer, // function to be executed
4421 g_hChildStd_IN_Wr, // parameter
4422 0, // creation flag, start immediately
4423 NULL); // we don't care about thread id
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004424 CloseHandle(thread);
4425 g_hChildStd_IN_Wr = NULL;
4426 }
4427
Bram Moolenaar0f873732019-12-05 20:28:46 +01004428 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004429 for (;;)
4430 {
4431 MSG msg;
4432
Bram Moolenaar175d0702013-12-11 18:36:33 +01004433 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004434 {
4435 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004436 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004437 }
4438
Bram Moolenaar0f873732019-12-05 20:28:46 +01004439 // write pipe information in the window
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004440 if ((options & (SHELL_READ|SHELL_WRITE))
4441# ifdef FEAT_GUI
4442 || gui.in_use
4443# endif
4444 )
4445 {
4446 len = 0;
4447 if (!(options & SHELL_EXPAND)
4448 && ((options &
4449 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4450 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4451# ifdef FEAT_GUI
4452 || gui.in_use
4453# endif
4454 )
4455 && (ta_len > 0 || noread_cnt > 4))
4456 {
4457 if (ta_len == 0)
4458 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004459 // Get extra characters when we don't have any. Reset the
4460 // counter and timer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004461 noread_cnt = 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004462 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4463 }
4464 if (ta_len > 0 || len > 0)
4465 {
4466 /*
4467 * For pipes: Check for CTRL-C: send interrupt signal to
4468 * child. Check for CTRL-D: EOF, close pipe to child.
4469 */
4470 if (len == 1 && cmd != NULL)
4471 {
4472 if (ta_buf[ta_len] == Ctrl_C)
4473 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004474 // Learn what exit code is expected, for
4475 // now put 9 as SIGKILL
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004476 TerminateProcess(pi.hProcess, 9);
4477 }
4478 if (ta_buf[ta_len] == Ctrl_D)
4479 {
4480 CloseHandle(g_hChildStd_IN_Wr);
4481 g_hChildStd_IN_Wr = NULL;
4482 }
4483 }
4484
Bram Moolenaarf4140482020-02-15 23:06:45 +01004485 term_replace_bs_del_keycode(ta_buf, ta_len, len);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004486
4487 /*
4488 * For pipes: echo the typed characters. For a pty this
4489 * does not seem to work.
4490 */
4491 for (i = ta_len; i < ta_len + len; ++i)
4492 {
4493 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4494 msg_putchar(ta_buf[i]);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004495 else if (has_mbyte)
4496 {
4497 int l = (*mb_ptr2len)(ta_buf + i);
4498
4499 msg_outtrans_len(ta_buf + i, l);
4500 i += l - 1;
4501 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004502 else
4503 msg_outtrans_len(ta_buf + i, 1);
4504 }
4505 windgoto(msg_row, msg_col);
4506 out_flush();
4507
4508 ta_len += len;
4509
4510 /*
4511 * Write the characters to the child, unless EOF has been
4512 * typed for pipes. Write one character at a time, to
4513 * avoid losing too much typeahead. When writing buffer
4514 * lines, drop the typed characters (only check for
4515 * CTRL-C).
4516 */
4517 if (options & SHELL_WRITE)
4518 ta_len = 0;
4519 else if (g_hChildStd_IN_Wr != NULL)
4520 {
4521 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4522 1, &len, NULL);
4523 // if we are typing in, we want to keep things reactive
4524 delay = 1;
4525 if (len > 0)
4526 {
4527 ta_len -= len;
4528 mch_memmove(ta_buf, ta_buf + len, ta_len);
4529 }
4530 }
4531 }
4532 }
4533 }
4534
4535 if (ta_len)
4536 ui_inchar_undo(ta_buf, ta_len);
4537
4538 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4539 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004540 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004541 break;
4542 }
4543
4544 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004545 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004546
Bram Moolenaar0f873732019-12-05 20:28:46 +01004547 // We start waiting for a very short time and then increase it, so
4548 // that we respond quickly when the process is quick, and don't
4549 // consume too much overhead when it's slow.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004550 if (delay < 50)
4551 delay += 10;
4552 }
4553
Bram Moolenaar0f873732019-12-05 20:28:46 +01004554 // Close the pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004555 CloseHandle(g_hChildStd_OUT_Rd);
4556 if (g_hChildStd_IN_Wr != NULL)
4557 CloseHandle(g_hChildStd_IN_Wr);
4558
4559 WaitForSingleObject(pi.hProcess, INFINITE);
4560
Bram Moolenaar0f873732019-12-05 20:28:46 +01004561 // Get the command exit code
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004562 GetExitCodeProcess(pi.hProcess, &ret);
4563
4564 if (options & SHELL_READ)
4565 {
4566 if (ga.ga_len > 0)
4567 {
4568 append_ga_line(&ga);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004569 // remember that the NL was missing
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004570 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4571 }
4572 else
4573 curbuf->b_no_eol_lnum = 0;
4574 ga_clear(&ga);
4575 }
4576
Bram Moolenaar0f873732019-12-05 20:28:46 +01004577 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004578 CloseHandle(pi.hThread);
4579 CloseHandle(pi.hProcess);
4580
4581 return ret;
4582}
4583
4584 static int
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004585mch_system_g(char *cmd, int options)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004586{
Bram Moolenaar0f873732019-12-05 20:28:46 +01004587 // if we can pipe and the shelltemp option is off
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004588 if (!p_stmp)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004589 return mch_system_piped(cmd, options);
4590 else
4591 return mch_system_classic(cmd, options);
4592}
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004595#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004596 static int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02004597mch_system_c(char *cmd, int options UNUSED)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004598{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004599 int ret;
4600 WCHAR *wcmd;
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004601 char_u *buf;
4602 size_t len;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004603
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004604 // If the command starts and ends with double quotes, enclose the command
4605 // in parentheses.
4606 len = STRLEN(cmd);
4607 if (len >= 2 && cmd[0] == '"' && cmd[len - 1] == '"')
4608 {
4609 len += 3;
4610 buf = alloc(len);
4611 if (buf == NULL)
4612 return -1;
4613 vim_snprintf((char *)buf, len, "(%s)", cmd);
4614 wcmd = enc_to_utf16(buf, NULL);
4615 free(buf);
4616 }
4617 else
4618 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4619
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004620 if (wcmd == NULL)
4621 return -1;
4622
4623 ret = _wsystem(wcmd);
4624 vim_free(wcmd);
4625 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004626}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627
4628#endif
4629
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004630 static int
4631mch_system(char *cmd, int options)
4632{
4633#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004634 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004635 return mch_system_g(cmd, options);
4636 else
4637 return mch_system_c(cmd, options);
4638#elif defined(FEAT_GUI_MSWIN)
4639 return mch_system_g(cmd, options);
4640#else
4641 return mch_system_c(cmd, options);
4642#endif
4643}
4644
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004645#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4646/*
4647 * Use a terminal window to run a shell command in.
4648 */
4649 static int
4650mch_call_shell_terminal(
4651 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004652 int options UNUSED) // SHELL_*, see vim.h
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004653{
4654 jobopt_T opt;
4655 char_u *newcmd = NULL;
4656 typval_T argvar[2];
4657 long_u cmdlen;
4658 int retval = -1;
4659 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004660 job_T *job;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004661 aco_save_T aco;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004662 oparg_T oa; // operator arguments
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004663
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004664 if (cmd == NULL)
4665 cmdlen = STRLEN(p_sh) + 1;
4666 else
4667 cmdlen = STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004668 newcmd = alloc(cmdlen);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004669 if (newcmd == NULL)
4670 return 255;
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004671 if (cmd == NULL)
4672 {
4673 STRCPY(newcmd, p_sh);
4674 ch_log(NULL, "starting terminal to run a shell");
4675 }
4676 else
4677 {
4678 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", p_sh, p_shcf, cmd);
4679 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4680 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004681
4682 init_job_options(&opt);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004683
4684 argvar[0].v_type = VAR_STRING;
4685 argvar[0].vval.v_string = newcmd;
4686 argvar[1].v_type = VAR_UNKNOWN;
4687 buf = term_start(argvar, NULL, &opt, TERM_START_SYSTEM);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004688 if (buf == NULL)
Bram Moolenaar9029b912019-03-21 19:58:00 +01004689 {
4690 vim_free(newcmd);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004691 return 255;
Bram Moolenaar9029b912019-03-21 19:58:00 +01004692 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004693
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004694 job = term_getjob(buf->b_term);
4695 ++job->jv_refcount;
4696
Bram Moolenaar0f873732019-12-05 20:28:46 +01004697 // Find a window to make "buf" curbuf.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004698 aucmd_prepbuf(&aco, buf);
4699
4700 clear_oparg(&oa);
4701 while (term_use_loop())
4702 {
4703 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4704 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004705 // If terminal_loop() returns OK we got a key that is handled
4706 // in Normal model. We don't do redrawing anyway.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004707 if (terminal_loop(TRUE) == OK)
4708 normal_cmd(&oa, TRUE);
4709 }
4710 else
4711 normal_cmd(&oa, TRUE);
4712 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004713 retval = job->jv_exitval;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004714 ch_log(NULL, "system command finished");
4715
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004716 job_unref(job);
4717
Bram Moolenaar0f873732019-12-05 20:28:46 +01004718 // restore curwin/curbuf and a few other things
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004719 aucmd_restbuf(&aco);
4720
4721 wait_return(TRUE);
4722 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4723
4724 vim_free(newcmd);
4725 return retval;
4726}
4727#endif
4728
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729/*
4730 * Either execute a command by calling the shell or start a new shell
4731 */
4732 int
4733mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004734 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004735 int options) // SHELL_*, see vim.h
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736{
4737 int x = 0;
4738 int tmode = cur_tmode;
4739#ifdef FEAT_TITLE
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004740 WCHAR szShellTitle[512];
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004741
Bram Moolenaar0f873732019-12-05 20:28:46 +01004742 // Change the title to reflect that we are in a subshell.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004743 if (GetConsoleTitleW(szShellTitle,
4744 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0)
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004745 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004746 if (cmd == NULL)
4747 wcscat(szShellTitle, L" :sh");
4748 else
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004749 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004750 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004751
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004752 if (wn != NULL)
4753 {
4754 wcscat(szShellTitle, L" - !");
4755 if ((wcslen(szShellTitle) + wcslen(wn) <
4756 sizeof(szShellTitle)/sizeof(WCHAR)))
4757 wcscat(szShellTitle, wn);
4758 SetConsoleTitleW(szShellTitle);
4759 vim_free(wn);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004760 }
4761 }
4762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763#endif
4764
4765 out_flush();
4766
4767#ifdef MCH_WRITE_DUMP
4768 if (fdDump)
4769 {
4770 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4771 fflush(fdDump);
4772 }
4773#endif
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004774#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004775 // TODO: make the terminal window work with input or output redirected.
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004776 if (
4777# ifdef VIMDLL
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004778 gui.in_use &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004779# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004780 vim_strchr(p_go, GO_TERMINAL) != NULL
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004781 && (options & (SHELL_FILTER|SHELL_DOOUT|SHELL_WRITE|SHELL_READ)) == 0)
4782 {
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004783 char_u *cmdbase = cmd;
4784
Bram Moolenaar4d5c1262019-09-20 17:20:02 +02004785 if (cmdbase != NULL)
4786 // Skip a leading quote and (.
4787 while (*cmdbase == '"' || *cmdbase == '(')
4788 ++cmdbase;
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004789
4790 // Check the command does not begin with "start "
Bram Moolenaar36e7a822019-11-13 21:49:24 +01004791 if (cmdbase == NULL || STRNICMP(cmdbase, "start", 5) != 0
4792 || !VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004793 {
4794 // Use a terminal window to run the command in.
4795 x = mch_call_shell_terminal(cmd, options);
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004796# ifdef FEAT_TITLE
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004797 resettitle();
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004798# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004799 return x;
4800 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004801 }
4802#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803
4804 /*
4805 * Catch all deadly signals while running the external command, because a
4806 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4807 */
4808 signal(SIGINT, SIG_IGN);
4809#if defined(__GNUC__) && !defined(__MINGW32__)
4810 signal(SIGKILL, SIG_IGN);
4811#else
4812 signal(SIGBREAK, SIG_IGN);
4813#endif
4814 signal(SIGILL, SIG_IGN);
4815 signal(SIGFPE, SIG_IGN);
4816 signal(SIGSEGV, SIG_IGN);
4817 signal(SIGTERM, SIG_IGN);
4818 signal(SIGABRT, SIG_IGN);
4819
4820 if (options & SHELL_COOKED)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004821 settmode(TMODE_COOK); // set to normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822
4823 if (cmd == NULL)
4824 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004825 x = mch_system((char *)p_sh, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 }
4827 else
4828 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004829 // we use "command" or "cmd" to start the shell; slow but easy
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004830 char_u *newcmd = NULL;
4831 char_u *cmdbase = cmd;
4832 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004833
Bram Moolenaar0f873732019-12-05 20:28:46 +01004834 // Skip a leading ", ( and "(.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004835 if (*cmdbase == '"' )
4836 ++cmdbase;
4837 if (*cmdbase == '(')
4838 ++cmdbase;
4839
Bram Moolenaar1c465442017-03-12 20:10:05 +01004840 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004841 {
4842 STARTUPINFO si;
4843 PROCESS_INFORMATION pi;
4844 DWORD flags = CREATE_NEW_CONSOLE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004845 INT n_show_cmd = SW_SHOWNORMAL;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004846 char_u *p;
4847
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004848 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004849 si.cb = sizeof(si);
4850 si.lpReserved = NULL;
4851 si.lpDesktop = NULL;
4852 si.lpTitle = NULL;
4853 si.dwFlags = 0;
4854 si.cbReserved2 = 0;
4855 si.lpReserved2 = NULL;
4856
4857 cmdbase = skipwhite(cmdbase + 5);
4858 if ((STRNICMP(cmdbase, "/min", 4) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004859 && VIM_ISWHITE(cmdbase[4]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004860 {
4861 cmdbase = skipwhite(cmdbase + 4);
4862 si.dwFlags = STARTF_USESHOWWINDOW;
4863 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004864 n_show_cmd = SW_SHOWMINNOACTIVE;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004865 }
4866 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004867 && VIM_ISWHITE(cmdbase[2]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004868 {
4869 cmdbase = skipwhite(cmdbase + 2);
4870 flags = CREATE_NO_WINDOW;
4871 si.dwFlags = STARTF_USESTDHANDLES;
4872 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004873 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004874 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004875 NULL, // Security att.
4876 OPEN_EXISTING, // Open flags
4877 FILE_ATTRIBUTE_NORMAL, // File att.
4878 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004879 si.hStdOutput = si.hStdInput;
4880 si.hStdError = si.hStdInput;
4881 }
4882
Bram Moolenaar0f873732019-12-05 20:28:46 +01004883 // Remove a trailing ", ) and )" if they have a match
4884 // at the start of the command.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004885 if (cmdbase > cmd)
4886 {
4887 p = cmdbase + STRLEN(cmdbase);
4888 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4889 *--p = NUL;
4890 if (p > cmdbase && p[-1] == ')'
4891 && (*cmd =='(' || cmd[1] == '('))
4892 *--p = NUL;
4893 }
4894
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004895 newcmd = cmdbase;
4896 unescape_shellxquote(cmdbase, p_sxe);
4897
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004898 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004899 * If creating new console, arguments are passed to the
4900 * 'cmd.exe' as-is. If it's not, arguments are not treated
4901 * correctly for current 'cmd.exe'. So unescape characters in
4902 * shellxescape except '|' for avoiding to be treated as
4903 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004904 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004905 if (flags != CREATE_NEW_CONSOLE)
4906 {
4907 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004908 char_u *cmd_shell = mch_getenv("COMSPEC");
4909
4910 if (cmd_shell == NULL || *cmd_shell == NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004911 cmd_shell = (char_u *)default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004912
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004913 subcmd = vim_strsave_escaped_ext(cmdbase,
4914 (char_u *)"|", '^', FALSE);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004915 if (subcmd != NULL)
4916 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004917 // make "cmd.exe /c arguments"
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004918 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004919 newcmd = alloc(cmdlen);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004920 if (newcmd != NULL)
4921 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004922 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004923 else
4924 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004925 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004926 }
4927 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004928
4929 /*
4930 * Now, start the command as a process, so that it doesn't
4931 * inherit our handles which causes unpleasant dangling swap
4932 * files if we exit before the spawned process
4933 */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004934 if (vim_create_process((char *)newcmd, FALSE, flags,
4935 &si, &pi, NULL, NULL))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004936 x = 0;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004937 else if (vim_shell_execute((char *)newcmd, n_show_cmd)
4938 > (HINSTANCE)32)
4939 x = 0;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004940 else
4941 {
4942 x = -1;
Bram Moolenaar4f974752019-02-17 17:44:42 +01004943#ifdef FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004944# ifdef VIMDLL
4945 if (gui.in_use)
4946# endif
4947 emsg(_("E371: Command not found"));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004948#endif
4949 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004950
4951 if (newcmd != cmdbase)
4952 vim_free(newcmd);
4953
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004954 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004955 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004956 // Close the handle to \\.\NUL created above.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004957 CloseHandle(si.hStdInput);
4958 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004959 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004960 CloseHandle(pi.hThread);
4961 CloseHandle(pi.hProcess);
4962 }
4963 else
4964 {
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004965 cmdlen =
Bram Moolenaar4f974752019-02-17 17:44:42 +01004966#ifdef FEAT_GUI_MSWIN
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004967 ((gui.in_use || gui.starting) ?
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004968 (!s_dont_use_vimrun && p_stmp ?
4969 STRLEN(vimrun_path) : STRLEN(p_sh) + STRLEN(p_shcf))
4970 : 0) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971#endif
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004972 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004973
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004974 newcmd = alloc(cmdlen);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004975 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01004977#if defined(FEAT_GUI_MSWIN)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004978 if (
4979# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004980 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004981# endif
4982 need_vimrun_warning)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 {
Bram Moolenaar63e43442016-11-19 17:28:44 +01004984 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
4985 "External commands will not pause after completion.\n"
4986 "See :help win32-vimrun for more information.");
4987 char *title = _("Vim Warning");
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004988 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
4989 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
Bram Moolenaar63e43442016-11-19 17:28:44 +01004990
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004991 if (wmsg != NULL && wtitle != NULL)
4992 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
4993 vim_free(wmsg);
4994 vim_free(wtitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 need_vimrun_warning = FALSE;
4996 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004997 if (
4998# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004999 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005000# endif
5001 !s_dont_use_vimrun && p_stmp)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005002 // Use vimrun to execute the command. It opens a console
5003 // window, which can be closed without killing Vim.
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005004 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 vimrun_path,
5006 (msg_silent != 0 || (options & SHELL_DOOUT))
5007 ? "-s " : "",
5008 p_sh, p_shcf, cmd);
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005009 else if (
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005010# ifdef VIMDLL
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005011 (gui.in_use || gui.starting) &&
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005012# endif
Bram Moolenaar0e6bfb92019-07-31 20:53:56 +02005013 s_dont_use_vimrun && STRCMP(p_shcf, "/c") == 0)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005014 // workaround for the case that "vimrun" does not exist
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005015 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s %s %s",
5016 p_sh, p_shcf, p_sh, p_shcf, cmd);
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005017 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005019 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00005020 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01005022 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 }
5025 }
5026
5027 if (tmode == TMODE_RAW)
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005028 {
5029 // The shell may have messed with the mode, always set it.
5030 cur_tmode = TMODE_UNKNOWN;
Bram Moolenaar0f873732019-12-05 20:28:46 +01005031 settmode(TMODE_RAW); // set to raw mode
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005032 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033
Bram Moolenaar0f873732019-12-05 20:28:46 +01005034 // Print the return value, unless "vimrun" was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
Bram Moolenaar4f974752019-02-17 17:44:42 +01005036#if defined(FEAT_GUI_MSWIN)
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02005037 && ((gui.in_use || gui.starting) ?
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005038 ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp) : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039#endif
5040 )
5041 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005042 smsg(_("shell returned %d"), x);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 msg_putchar('\n');
5044 }
5045#ifdef FEAT_TITLE
5046 resettitle();
5047#endif
5048
5049 signal(SIGINT, SIG_DFL);
5050#if defined(__GNUC__) && !defined(__MINGW32__)
5051 signal(SIGKILL, SIG_DFL);
5052#else
5053 signal(SIGBREAK, SIG_DFL);
5054#endif
5055 signal(SIGILL, SIG_DFL);
5056 signal(SIGFPE, SIG_DFL);
5057 signal(SIGSEGV, SIG_DFL);
5058 signal(SIGTERM, SIG_DFL);
5059 signal(SIGABRT, SIG_DFL);
5060
5061 return x;
5062}
5063
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005064#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005065 static HANDLE
5066job_io_file_open(
Bram Moolenaar972c3b82017-01-12 21:44:49 +01005067 char_u *fname,
5068 DWORD dwDesiredAccess,
5069 DWORD dwShareMode,
5070 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
5071 DWORD dwCreationDisposition,
5072 DWORD dwFlagsAndAttributes)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005073{
5074 HANDLE h;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005075 WCHAR *wn;
Bram Moolenaara12a1612019-01-24 16:39:02 +01005076
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005077 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005078 if (wn == NULL)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005079 return INVALID_HANDLE_VALUE;
5080
5081 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
5082 lpSecurityAttributes, dwCreationDisposition,
5083 dwFlagsAndAttributes, NULL);
5084 vim_free(wn);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005085 return h;
5086}
5087
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005088/*
5089 * Turn the dictionary "env" into a NUL separated list that can be used as the
5090 * environment argument of vim_create_process().
5091 */
Bram Moolenaarba6febd2017-10-30 21:56:23 +01005092 void
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005093win32_build_env(dict_T *env, garray_T *gap, int is_terminal)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005094{
5095 hashitem_T *hi;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005096 long_u todo = env != NULL ? env->dv_hashtab.ht_used : 0;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005097 LPVOID base = GetEnvironmentStringsW();
5098
Bram Moolenaar0f873732019-12-05 20:28:46 +01005099 // for last \0
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005100 if (ga_grow(gap, 1) == FAIL)
5101 return;
5102
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005103 if (env != NULL)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005104 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005105 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005106 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005107 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005108 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005109 typval_T *item = &dict_lookup(hi)->di_tv;
5110 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01005111 WCHAR *wval = enc_to_utf16(tv_get_string(item), NULL);
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005112 --todo;
5113 if (wkey != NULL && wval != NULL)
5114 {
5115 size_t n;
5116 size_t lkey = wcslen(wkey);
5117 size_t lval = wcslen(wval);
Bram Moolenaar60104f12017-08-14 23:25:04 +02005118
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005119 if (ga_grow(gap, (int)(lkey + lval + 2)) != OK)
5120 continue;
5121 for (n = 0; n < lkey; n++)
5122 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n];
5123 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'=';
5124 for (n = 0; n < lval; n++)
5125 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n];
5126 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5127 }
Bram Moolenaarbdace832019-03-02 10:13:42 +01005128 vim_free(wkey);
5129 vim_free(wval);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005130 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005131 }
5132 }
5133
Bram Moolenaar355757a2020-02-10 22:06:32 +01005134 if (base)
5135 {
5136 WCHAR *p = (WCHAR*) base;
5137
5138 // for last \0
5139 if (ga_grow(gap, 1) == FAIL)
5140 return;
5141
5142 while (*p != 0 || *(p + 1) != 0)
5143 {
5144 if (ga_grow(gap, 1) == OK)
5145 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
5146 p++;
5147 }
5148 FreeEnvironmentStrings(base);
5149 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5150 }
5151
Bram Moolenaar493359e2018-06-12 20:25:52 +02005152# if defined(FEAT_CLIENTSERVER) || defined(FEAT_TERMINAL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005153 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005154# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005155 char_u *servername = get_vim_var_str(VV_SEND_SERVER);
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005156 size_t servername_len = STRLEN(servername);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005157# endif
5158# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005159 char_u *version = get_vim_var_str(VV_VERSION);
5160 size_t version_len = STRLEN(version);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005161# endif
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005162 // size of "VIM_SERVERNAME=" and value,
5163 // plus "VIM_TERMINAL=" and value,
5164 // plus two terminating NULs
5165 size_t n = 0
Bram Moolenaar493359e2018-06-12 20:25:52 +02005166# ifdef FEAT_CLIENTSERVER
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005167 + 15 + servername_len
Bram Moolenaar493359e2018-06-12 20:25:52 +02005168# endif
5169# ifdef FEAT_TERMINAL
5170 + 13 + version_len + 2
5171# endif
5172 ;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005173
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005174 if (ga_grow(gap, (int)n) == OK)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005175 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005176# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005177 for (n = 0; n < 15; n++)
5178 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5179 (WCHAR)"VIM_SERVERNAME="[n];
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005180 for (n = 0; n < servername_len; n++)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005181 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5182 (WCHAR)servername[n];
5183 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
Bram Moolenaar493359e2018-06-12 20:25:52 +02005184# endif
5185# ifdef FEAT_TERMINAL
5186 if (is_terminal)
5187 {
5188 for (n = 0; n < 13; n++)
5189 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5190 (WCHAR)"VIM_TERMINAL="[n];
5191 for (n = 0; n < version_len; n++)
5192 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5193 (WCHAR)version[n];
5194 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5195 }
5196# endif
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005197 }
5198 }
Bram Moolenaar79c6b512018-06-12 21:11:12 +02005199# endif
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005200}
5201
Bram Moolenaarb091f302019-01-19 14:37:00 +01005202/*
5203 * Create a pair of pipes.
5204 * Return TRUE for success, FALSE for failure.
5205 */
5206 static BOOL
5207create_pipe_pair(HANDLE handles[2])
5208{
5209 static LONG s;
5210 char name[64];
5211 SECURITY_ATTRIBUTES sa;
5212
5213 sprintf(name, "\\\\?\\pipe\\vim-%08lx-%08lx",
5214 GetCurrentProcessId(),
5215 InterlockedIncrement(&s));
5216
5217 // Create named pipe. Max size of named pipe is 65535.
5218 handles[1] = CreateNamedPipe(
5219 name,
5220 PIPE_ACCESS_OUTBOUND | FILE_FLAG_OVERLAPPED,
5221 PIPE_TYPE_BYTE | PIPE_NOWAIT,
Bram Moolenaar24058382019-01-24 23:11:49 +01005222 1, MAX_NAMED_PIPE_SIZE, 0, 0, NULL);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005223
5224 if (handles[1] == INVALID_HANDLE_VALUE)
5225 return FALSE;
5226
5227 sa.nLength = sizeof(sa);
5228 sa.bInheritHandle = TRUE;
5229 sa.lpSecurityDescriptor = NULL;
5230
5231 handles[0] = CreateFile(name,
5232 FILE_GENERIC_READ,
5233 FILE_SHARE_READ, &sa,
5234 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
5235
5236 if (handles[0] == INVALID_HANDLE_VALUE)
5237 {
Bram Moolenaar6982f422019-02-16 16:48:01 +01005238 CloseHandle(handles[1]);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005239 return FALSE;
5240 }
5241
5242 return TRUE;
5243}
5244
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005245 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005246mch_job_start(char *cmd, job_T *job, jobopt_T *options)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005247{
5248 STARTUPINFO si;
5249 PROCESS_INFORMATION pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005250 HANDLE jo;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005251 SECURITY_ATTRIBUTES saAttr;
5252 channel_T *channel = NULL;
Bram Moolenaard8070362016-02-15 21:56:54 +01005253 HANDLE ifd[2];
5254 HANDLE ofd[2];
5255 HANDLE efd[2];
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005256 garray_T ga;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005257
5258 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5259 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5260 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
5261 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
5262 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5263 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
5264 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
5265
5266 if (use_out_for_err && use_null_for_out)
5267 use_null_for_err = TRUE;
Bram Moolenaard8070362016-02-15 21:56:54 +01005268
5269 ifd[0] = INVALID_HANDLE_VALUE;
5270 ifd[1] = INVALID_HANDLE_VALUE;
5271 ofd[0] = INVALID_HANDLE_VALUE;
5272 ofd[1] = INVALID_HANDLE_VALUE;
5273 efd[0] = INVALID_HANDLE_VALUE;
5274 efd[1] = INVALID_HANDLE_VALUE;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005275 ga_init2(&ga, (int)sizeof(wchar_t), 500);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005276
Bram Moolenaar14207f42016-10-27 21:13:10 +02005277 jo = CreateJobObject(NULL, NULL);
5278 if (jo == NULL)
5279 {
5280 job->jv_status = JOB_FAILED;
5281 goto failed;
5282 }
5283
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005284 if (options->jo_env != NULL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005285 win32_build_env(options->jo_env, &ga, FALSE);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005286
Bram Moolenaar76467df2016-02-12 19:30:26 +01005287 ZeroMemory(&pi, sizeof(pi));
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005288 ZeroMemory(&si, sizeof(si));
5289 si.cb = sizeof(si);
Bram Moolenaard8070362016-02-15 21:56:54 +01005290 si.dwFlags |= STARTF_USESHOWWINDOW;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005291 si.wShowWindow = SW_HIDE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005292
Bram Moolenaard8070362016-02-15 21:56:54 +01005293 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5294 saAttr.bInheritHandle = TRUE;
5295 saAttr.lpSecurityDescriptor = NULL;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005296
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005297 if (use_file_for_in)
5298 {
5299 char_u *fname = options->jo_io_name[PART_IN];
5300
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005301 ifd[0] = job_io_file_open(fname, GENERIC_READ,
5302 FILE_SHARE_READ | FILE_SHARE_WRITE,
5303 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
5304 if (ifd[0] == INVALID_HANDLE_VALUE)
Bram Moolenaar94d01912016-03-08 13:48:51 +01005305 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005306 semsg(_(e_notopen), fname);
Bram Moolenaar94d01912016-03-08 13:48:51 +01005307 goto failed;
5308 }
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005309 }
Bram Moolenaarb091f302019-01-19 14:37:00 +01005310 else if (!use_null_for_in
5311 && (!create_pipe_pair(ifd)
5312 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005313 goto failed;
5314
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005315 if (use_file_for_out)
5316 {
5317 char_u *fname = options->jo_io_name[PART_OUT];
5318
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005319 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
5320 FILE_SHARE_READ | FILE_SHARE_WRITE,
5321 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5322 if (ofd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005323 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005324 semsg(_(e_notopen), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005325 goto failed;
5326 }
5327 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005328 else if (!use_null_for_out &&
5329 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005330 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005331 goto failed;
5332
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005333 if (use_file_for_err)
5334 {
5335 char_u *fname = options->jo_io_name[PART_ERR];
5336
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005337 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
5338 FILE_SHARE_READ | FILE_SHARE_WRITE,
5339 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5340 if (efd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005341 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005342 semsg(_(e_notopen), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005343 goto failed;
5344 }
5345 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005346 else if (!use_out_for_err && !use_null_for_err &&
5347 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005348 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaard8070362016-02-15 21:56:54 +01005349 goto failed;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005350
Bram Moolenaard8070362016-02-15 21:56:54 +01005351 si.dwFlags |= STARTF_USESTDHANDLES;
5352 si.hStdInput = ifd[0];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005353 si.hStdOutput = ofd[1];
5354 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
5355
5356 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5357 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005358 if (options->jo_set & JO_CHANNEL)
5359 {
5360 channel = options->jo_channel;
5361 if (channel != NULL)
5362 ++channel->ch_refcount;
5363 }
5364 else
5365 channel = add_channel();
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005366 if (channel == NULL)
5367 goto failed;
5368 }
Bram Moolenaard8070362016-02-15 21:56:54 +01005369
5370 if (!vim_create_process(cmd, TRUE,
Bram Moolenaar14207f42016-10-27 21:13:10 +02005371 CREATE_SUSPENDED |
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005372 CREATE_DEFAULT_ERROR_MODE |
5373 CREATE_NEW_PROCESS_GROUP |
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005374 CREATE_UNICODE_ENVIRONMENT |
Bram Moolenaar76467df2016-02-12 19:30:26 +01005375 CREATE_NEW_CONSOLE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005376 &si, &pi,
5377 ga.ga_data,
5378 (char *)options->jo_cwd))
Bram Moolenaar76467df2016-02-12 19:30:26 +01005379 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005380 CloseHandle(jo);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005381 job->jv_status = JOB_FAILED;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005382 goto failed;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005383 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005384
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005385 ga_clear(&ga);
5386
Bram Moolenaar14207f42016-10-27 21:13:10 +02005387 if (!AssignProcessToJobObject(jo, pi.hProcess))
5388 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005389 // if failing, switch the way to terminate
5390 // process with TerminateProcess.
Bram Moolenaar14207f42016-10-27 21:13:10 +02005391 CloseHandle(jo);
5392 jo = NULL;
5393 }
5394 ResumeThread(pi.hThread);
Bram Moolenaar75578a32016-03-10 16:33:31 +01005395 CloseHandle(pi.hThread);
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005396 job->jv_proc_info = pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005397 job->jv_job_object = jo;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005398 job->jv_status = JOB_STARTED;
5399
Bram Moolenaar641ad6c2016-09-01 18:32:11 +02005400 CloseHandle(ifd[0]);
5401 CloseHandle(ofd[1]);
5402 if (!use_out_for_err && !use_null_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005403 CloseHandle(efd[1]);
Bram Moolenaard8070362016-02-15 21:56:54 +01005404
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005405 job->jv_channel = channel;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005406 if (channel != NULL)
5407 {
5408 channel_set_pipes(channel,
5409 use_file_for_in || use_null_for_in
5410 ? INVALID_FD : (sock_T)ifd[1],
5411 use_file_for_out || use_null_for_out
5412 ? INVALID_FD : (sock_T)ofd[0],
5413 use_out_for_err || use_file_for_err || use_null_for_err
5414 ? INVALID_FD : (sock_T)efd[0]);
5415 channel_set_job(channel, job, options);
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005416 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005417 return;
5418
5419failed:
Bram Moolenaard8070362016-02-15 21:56:54 +01005420 CloseHandle(ifd[0]);
5421 CloseHandle(ofd[0]);
5422 CloseHandle(efd[0]);
5423 CloseHandle(ifd[1]);
5424 CloseHandle(ofd[1]);
5425 CloseHandle(efd[1]);
Bram Moolenaarde279892016-03-11 22:19:44 +01005426 channel_unref(channel);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005427 ga_clear(&ga);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005428}
5429
5430 char *
5431mch_job_status(job_T *job)
5432{
5433 DWORD dwExitCode = 0;
5434
Bram Moolenaar76467df2016-02-12 19:30:26 +01005435 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
5436 || dwExitCode != STILL_ACTIVE)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005437 {
Bram Moolenaareab089d2016-02-21 19:32:02 +01005438 job->jv_exitval = (int)dwExitCode;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005439 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005440 {
5441 ch_log(job->jv_channel, "Job ended");
5442 job->jv_status = JOB_ENDED;
5443 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005444 return "dead";
5445 }
5446 return "run";
5447}
5448
Bram Moolenaar97792de2016-10-15 18:36:49 +02005449 job_T *
5450mch_detect_ended_job(job_T *job_list)
5451{
5452 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
5453 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
5454 job_T *job = job_list;
5455
5456 while (job != NULL)
5457 {
5458 DWORD n;
5459 DWORD result;
5460
5461 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
5462 && job != NULL; job = job->jv_next)
5463 {
5464 if (job->jv_status == JOB_STARTED)
5465 {
5466 jobHandles[n] = job->jv_proc_info.hProcess;
5467 jobArray[n] = job;
5468 ++n;
5469 }
5470 }
5471 if (n == 0)
5472 continue;
5473 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
5474 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
5475 {
5476 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
5477
5478 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
5479 return wait_job;
5480 }
5481 }
5482 return NULL;
5483}
5484
Bram Moolenaarfb630902016-10-29 14:55:00 +02005485 static BOOL
5486terminate_all(HANDLE process, int code)
5487{
5488 PROCESSENTRY32 pe;
5489 HANDLE h = INVALID_HANDLE_VALUE;
5490 DWORD pid = GetProcessId(process);
5491
5492 if (pid != 0)
5493 {
5494 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5495 if (h != INVALID_HANDLE_VALUE)
5496 {
5497 pe.dwSize = sizeof(PROCESSENTRY32);
5498 if (!Process32First(h, &pe))
5499 goto theend;
5500
5501 do
5502 {
5503 if (pe.th32ParentProcessID == pid)
5504 {
5505 HANDLE ph = OpenProcess(
5506 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
5507 if (ph != NULL)
5508 {
5509 terminate_all(ph, code);
5510 CloseHandle(ph);
5511 }
5512 }
5513 } while (Process32Next(h, &pe));
5514
5515 CloseHandle(h);
5516 }
5517 }
5518
5519theend:
5520 return TerminateProcess(process, code);
5521}
5522
5523/*
5524 * Send a (deadly) signal to "job".
5525 * Return FAIL if it didn't work.
5526 */
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005527 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005528mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005529{
Bram Moolenaar923d9262016-02-25 20:56:01 +01005530 int ret;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005531
Bram Moolenaar923d9262016-02-25 20:56:01 +01005532 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
Bram Moolenaar76467df2016-02-12 19:30:26 +01005533 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005534 // deadly signal
Bram Moolenaar14207f42016-10-27 21:13:10 +02005535 if (job->jv_job_object != NULL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005536 {
5537 if (job->jv_channel != NULL && job->jv_channel->ch_anonymous_pipe)
5538 job->jv_channel->ch_killing = TRUE;
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005539 return TerminateJobObject(job->jv_job_object, -1) ? OK : FAIL;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005540 }
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005541 return terminate_all(job->jv_proc_info.hProcess, -1) ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005542 }
5543
5544 if (!AttachConsole(job->jv_proc_info.dwProcessId))
5545 return FAIL;
5546 ret = GenerateConsoleCtrlEvent(
Bram Moolenaar923d9262016-02-25 20:56:01 +01005547 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
5548 job->jv_proc_info.dwProcessId)
5549 ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005550 FreeConsole();
5551 return ret;
5552}
5553
5554/*
5555 * Clear the data related to "job".
5556 */
5557 void
5558mch_clear_job(job_T *job)
5559{
5560 if (job->jv_status != JOB_FAILED)
5561 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005562 if (job->jv_job_object != NULL)
5563 CloseHandle(job->jv_job_object);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005564 CloseHandle(job->jv_proc_info.hProcess);
5565 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005566}
5567#endif
5568
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005570#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571
5572/*
5573 * Start termcap mode
5574 */
5575 static void
5576termcap_mode_start(void)
5577{
5578 DWORD cmodein;
5579
5580 if (g_fTermcapMode)
5581 return;
5582
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005583 if (!p_rs && USE_VTP)
5584 vtp_printf("\033[?1049h");
5585
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 SaveConsoleBuffer(&g_cbNonTermcap);
5587
5588 if (g_cbTermcap.IsValid)
5589 {
5590 /*
5591 * We've been in termcap mode before. Restore certain screen
5592 * characteristics, including the buffer size and the window
5593 * size. Since we will be redrawing the screen, we don't need
5594 * to restore the actual contents of the buffer.
5595 */
5596 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005597 reset_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
5599 Rows = g_cbTermcap.Info.dwSize.Y;
5600 Columns = g_cbTermcap.Info.dwSize.X;
5601 }
5602 else
5603 {
5604 /*
5605 * This is our first time entering termcap mode. Clear the console
5606 * screen buffer, and resize the buffer to match the current window
5607 * size. We will use this as the size of our editing environment.
5608 */
5609 ClearConsoleBuffer(g_attrCurrent);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005610 set_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
5612 }
5613
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005614# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 resettitle();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005616# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617
5618 GetConsoleMode(g_hConIn, &cmodein);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 if (g_fMouseActive)
5620 cmodein |= ENABLE_MOUSE_INPUT;
5621 else
5622 cmodein &= ~ENABLE_MOUSE_INPUT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 cmodein |= ENABLE_WINDOW_INPUT;
5624 SetConsoleMode(g_hConIn, cmodein);
5625
5626 redraw_later_clear();
5627 g_fTermcapMode = TRUE;
5628}
5629
5630
5631/*
5632 * End termcap mode
5633 */
5634 static void
5635termcap_mode_end(void)
5636{
5637 DWORD cmodein;
5638 ConsoleBuffer *cb;
5639 COORD coord;
5640 DWORD dwDummy;
5641
5642 if (!g_fTermcapMode)
5643 return;
5644
5645 SaveConsoleBuffer(&g_cbTermcap);
5646
5647 GetConsoleMode(g_hConIn, &cmodein);
5648 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
5649 SetConsoleMode(g_hConIn, cmodein);
5650
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005651# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005652 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005653# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 cb = &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005655# endif
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005656 RestoreConsoleBuffer(cb, p_rs);
Bram Moolenaardf543822020-01-30 11:53:59 +01005657 restore_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 SetConsoleCursorInfo(g_hConOut, &g_cci);
5659
5660 if (p_rs || exiting)
5661 {
5662 /*
5663 * Clear anything that happens to be on the current line.
5664 */
5665 coord.X = 0;
5666 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
5667 FillConsoleOutputCharacter(g_hConOut, ' ',
5668 cb->Info.dwSize.X, coord, &dwDummy);
5669 /*
5670 * The following is just for aesthetics. If we are exiting without
5671 * restoring the screen, then we want to have a prompt string
5672 * appear at the bottom line. However, the command interpreter
5673 * seems to always advance the cursor one line before displaying
5674 * the prompt string, which causes the screen to scroll. To
5675 * counter this, move the cursor up one line before exiting.
5676 */
5677 if (exiting && !p_rs)
5678 coord.Y--;
5679 /*
5680 * Position the cursor at the leftmost column of the desired row.
5681 */
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005682 SetConsoleCursorPosition(g_hConOut, coord);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 }
5684
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005685 if (!p_rs && USE_VTP)
Bram Moolenaar0afdcf82020-04-01 18:29:10 +02005686 vtp_printf("\033[?1049l");
5687
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 g_fTermcapMode = FALSE;
5689}
Bram Moolenaar0f873732019-12-05 20:28:46 +01005690#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691
5692
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005693#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694 void
5695mch_write(
Bram Moolenaar1266d672017-02-01 13:43:36 +01005696 char_u *s UNUSED,
5697 int len UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698{
Bram Moolenaar0f873732019-12-05 20:28:46 +01005699 // never used
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700}
5701
5702#else
5703
5704/*
5705 * clear `n' chars, starting from `coord'
5706 */
5707 static void
5708clear_chars(
5709 COORD coord,
5710 DWORD n)
5711{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005712 if (!USE_VTP)
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02005713 {
5714 DWORD dwDummy;
5715
5716 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5717 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord,
5718 &dwDummy);
5719 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005720 else
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02005721 {
5722 set_console_color_rgb();
5723 gotoxy(coord.X + 1, coord.Y + 1);
5724 vtp_printf("\033[%dX", n);
5725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726}
5727
5728
5729/*
5730 * Clear the screen
5731 */
5732 static void
5733clear_screen(void)
5734{
5735 g_coord.X = g_coord.Y = 0;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005736
5737 if (!USE_VTP)
5738 clear_chars(g_coord, Rows * Columns);
5739 else
5740 {
5741 set_console_color_rgb();
5742 gotoxy(1, 1);
5743 vtp_printf("\033[2J");
5744 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745}
5746
5747
5748/*
5749 * Clear to end of display
5750 */
5751 static void
5752clear_to_end_of_display(void)
5753{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005754 COORD save = g_coord;
5755
5756 if (!USE_VTP)
5757 clear_chars(g_coord, (Rows - g_coord.Y - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 * Columns + (Columns - g_coord.X));
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005759 else
5760 {
5761 set_console_color_rgb();
5762 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5763 vtp_printf("\033[0J");
5764
5765 gotoxy(save.X + 1, save.Y + 1);
5766 g_coord = save;
5767 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768}
5769
5770
5771/*
5772 * Clear to end of line
5773 */
5774 static void
5775clear_to_end_of_line(void)
5776{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005777 COORD save = g_coord;
5778
5779 if (!USE_VTP)
5780 clear_chars(g_coord, Columns - g_coord.X);
5781 else
5782 {
5783 set_console_color_rgb();
5784 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5785 vtp_printf("\033[0K");
5786
5787 gotoxy(save.X + 1, save.Y + 1);
5788 g_coord = save;
5789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790}
5791
5792
5793/*
5794 * Scroll the scroll region up by `cLines' lines
5795 */
5796 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005797scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798{
5799 COORD oldcoord = g_coord;
5800
5801 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5802 delete_lines(cLines);
5803
5804 g_coord = oldcoord;
5805}
5806
5807
5808/*
5809 * Set the scroll region
5810 */
5811 static void
5812set_scroll_region(
5813 unsigned left,
5814 unsigned top,
5815 unsigned right,
5816 unsigned bottom)
5817{
5818 if (left >= right
5819 || top >= bottom
5820 || right > (unsigned) Columns - 1
5821 || bottom > (unsigned) Rows - 1)
5822 return;
5823
5824 g_srScrollRegion.Left = left;
5825 g_srScrollRegion.Top = top;
5826 g_srScrollRegion.Right = right;
5827 g_srScrollRegion.Bottom = bottom;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005828}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005829
Bram Moolenaar6982f422019-02-16 16:48:01 +01005830 static void
5831set_scroll_region_tb(
5832 unsigned top,
5833 unsigned bottom)
5834{
5835 if (top >= bottom || bottom > (unsigned)Rows - 1)
5836 return;
5837
5838 g_srScrollRegion.Top = top;
5839 g_srScrollRegion.Bottom = bottom;
5840}
5841
5842 static void
5843set_scroll_region_lr(
5844 unsigned left,
5845 unsigned right)
5846{
5847 if (left >= right || right > (unsigned)Columns - 1)
5848 return;
5849
5850 g_srScrollRegion.Left = left;
5851 g_srScrollRegion.Right = right;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852}
5853
5854
5855/*
5856 * Insert `cLines' lines at the current cursor position
5857 */
5858 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005859insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005861 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862 COORD dest;
5863 CHAR_INFO fill;
5864
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005865 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5866
Bram Moolenaar6982f422019-02-16 16:48:01 +01005867 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868 dest.Y = g_coord.Y + cLines;
5869
Bram Moolenaar6982f422019-02-16 16:48:01 +01005870 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871 source.Top = g_coord.Y;
5872 source.Right = g_srScrollRegion.Right;
5873 source.Bottom = g_srScrollRegion.Bottom - cLines;
5874
Bram Moolenaar6982f422019-02-16 16:48:01 +01005875 clip.Left = g_srScrollRegion.Left;
5876 clip.Top = g_coord.Y;
5877 clip.Right = g_srScrollRegion.Right;
5878 clip.Bottom = g_srScrollRegion.Bottom;
5879
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005880 fill.Char.AsciiChar = ' ';
5881 if (!USE_VTP)
5882 fill.Attributes = g_attrCurrent;
5883 else
5884 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005886 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005887
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005888 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5889
Bram Moolenaar6982f422019-02-16 16:48:01 +01005890 // Here we have to deal with a win32 console flake: If the scroll
5891 // region looks like abc and we scroll c to a and fill with d we get
5892 // cbd... if we scroll block c one line at a time to a, we get cdd...
5893 // vim expects cdd consistently... So we have to deal with that
5894 // here... (this also occurs scrolling the same way in the other
5895 // direction).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896
5897 if (source.Bottom < dest.Y)
5898 {
5899 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005900 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901
Bram Moolenaar6982f422019-02-16 16:48:01 +01005902 coord.X = source.Left;
5903 for (i = clip.Top; i < dest.Y; ++i)
5904 {
5905 coord.Y = i;
5906 clear_chars(coord, source.Right - source.Left + 1);
5907 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005909
5910 if (USE_WT)
5911 {
5912 COORD coord;
5913 int i;
5914
5915 coord.X = source.Left;
5916 for (i = source.Top; i < dest.Y; ++i)
5917 {
5918 coord.Y = i;
5919 clear_chars(coord, source.Right - source.Left + 1);
5920 }
5921 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922}
5923
5924
5925/*
5926 * Delete `cLines' lines at the current cursor position
5927 */
5928 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005929delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005931 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932 COORD dest;
5933 CHAR_INFO fill;
5934 int nb;
5935
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005936 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5937
Bram Moolenaar6982f422019-02-16 16:48:01 +01005938 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939 dest.Y = g_coord.Y;
5940
Bram Moolenaar6982f422019-02-16 16:48:01 +01005941 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 source.Top = g_coord.Y + cLines;
5943 source.Right = g_srScrollRegion.Right;
5944 source.Bottom = g_srScrollRegion.Bottom;
5945
Bram Moolenaar6982f422019-02-16 16:48:01 +01005946 clip.Left = g_srScrollRegion.Left;
5947 clip.Top = g_coord.Y;
5948 clip.Right = g_srScrollRegion.Right;
5949 clip.Bottom = g_srScrollRegion.Bottom;
5950
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005951 fill.Char.AsciiChar = ' ';
5952 if (!USE_VTP)
5953 fill.Attributes = g_attrCurrent;
5954 else
5955 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005956
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005957 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005958
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005959 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5960
Bram Moolenaar6982f422019-02-16 16:48:01 +01005961 // Here we have to deal with a win32 console flake; See insert_lines()
5962 // above.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963
5964 nb = dest.Y + (source.Bottom - source.Top) + 1;
5965
5966 if (nb < source.Top)
5967 {
5968 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005969 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970
Bram Moolenaar6982f422019-02-16 16:48:01 +01005971 coord.X = source.Left;
5972 for (i = nb; i < clip.Bottom; ++i)
5973 {
5974 coord.Y = i;
5975 clear_chars(coord, source.Right - source.Left + 1);
5976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005978
5979 if (USE_WT)
5980 {
5981 COORD coord;
5982 int i;
5983
5984 coord.X = source.Left;
5985 for (i = nb; i <= source.Bottom; ++i)
5986 {
5987 coord.Y = i;
5988 clear_chars(coord, source.Right - source.Left + 1);
5989 }
5990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991}
5992
5993
5994/*
Bram Moolenaar2313b612019-09-27 14:14:32 +02005995 * Set the cursor position to (x,y) (1-based).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996 */
5997 static void
5998gotoxy(
5999 unsigned x,
6000 unsigned y)
6001{
6002 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
6003 return;
6004
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006005 if (!USE_VTP)
Bram Moolenaar2313b612019-09-27 14:14:32 +02006006 {
Bram Moolenaar82e743c2020-03-26 15:39:53 +01006007 // There are reports of double-width characters not displayed
6008 // correctly. This workaround should fix it, similar to how it's done
6009 // for VTP.
6010 g_coord.X = 0;
6011 SetConsoleCursorPosition(g_hConOut, g_coord);
6012
Bram Moolenaar2313b612019-09-27 14:14:32 +02006013 // external cursor coords are 1-based; internal are 0-based
6014 g_coord.X = x - 1;
6015 g_coord.Y = y - 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006016 SetConsoleCursorPosition(g_hConOut, g_coord);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006017 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006018 else
Bram Moolenaar2313b612019-09-27 14:14:32 +02006019 {
6020 // Move the cursor to the left edge of the screen to prevent screen
Bram Moolenaara1299742019-10-10 16:36:00 +02006021 // destruction. Insider build bug. Always enabled because it's cheap
6022 // and avoids mistakes with recognizing the build.
6023 vtp_printf("\033[%d;%dH", g_coord.Y + 1, 1);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006024
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006025 vtp_printf("\033[%d;%dH", y, x);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006026
6027 g_coord.X = x - 1;
6028 g_coord.Y = y - 1;
6029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030}
6031
6032
6033/*
6034 * Set the current text attribute = (foreground | background)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006035 * See ../runtime/doc/os_win32.txt for the numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036 */
6037 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006038textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006040 g_attrCurrent = wAttr & 0xff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006041
6042 SetConsoleTextAttribute(g_hConOut, wAttr);
6043}
6044
6045
6046 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006047textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006049 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006051 if (!USE_VTP)
6052 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6053 else
6054 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006055}
6056
6057
6058 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006059textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006061 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006063 if (!USE_VTP)
6064 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6065 else
6066 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067}
6068
6069
6070/*
6071 * restore the default text attribute (whatever we started with)
6072 */
6073 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006074normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006076 if (!USE_VTP)
6077 textattr(g_attrDefault);
6078 else
6079 vtp_sgr_bulk(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080}
6081
6082
6083static WORD g_attrPreStandout = 0;
6084
6085/*
6086 * Make the text standout, by brightening it
6087 */
6088 static void
6089standout(void)
6090{
6091 g_attrPreStandout = g_attrCurrent;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006092
Bram Moolenaar071d4272004-06-13 20:20:40 +00006093 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
6094}
6095
6096
6097/*
6098 * Turn off standout mode
6099 */
6100 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006101standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102{
6103 if (g_attrPreStandout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104 textattr(g_attrPreStandout);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006105
6106 g_attrPreStandout = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107}
6108
6109
6110/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00006111 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112 */
6113 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006114mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115{
6116 char_u *p;
6117 int n;
6118
6119 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
6120 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006121 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006122# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006123 !p_tgc &&
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006124# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006125 T_ME[0] == ESC && T_ME[1] == '|')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006126 {
6127 p = T_ME + 2;
6128 n = getdigits(&p);
6129 if (*p == 'm' && n > 0)
6130 {
6131 cterm_normal_fg_color = (n & 0xf) + 1;
6132 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
6133 }
6134 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006135# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006136 cterm_normal_fg_gui_color = INVALCOLOR;
6137 cterm_normal_bg_gui_color = INVALCOLOR;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006138# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139}
6140
6141
6142/*
6143 * visual bell: flash the screen
6144 */
6145 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006146visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147{
6148 COORD coordOrigin = {0, 0};
6149 WORD attrFlash = ~g_attrCurrent & 0xff;
6150
6151 DWORD dwDummy;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006152 LPWORD oldattrs = ALLOC_MULT(WORD, Rows * Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153
6154 if (oldattrs == NULL)
6155 return;
6156 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
6157 coordOrigin, &dwDummy);
6158 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
6159 coordOrigin, &dwDummy);
6160
Bram Moolenaar0f873732019-12-05 20:28:46 +01006161 Sleep(15); // wait for 15 msec
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006162 if (!USE_VTP)
6163 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164 coordOrigin, &dwDummy);
6165 vim_free(oldattrs);
6166}
6167
6168
6169/*
6170 * Make the cursor visible or invisible
6171 */
6172 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006173cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174{
6175 s_cursor_visible = fVisible;
Bram Moolenaar2695de62020-04-17 21:13:01 +02006176
6177 if (USE_VTP)
6178 vtp_printf("\033[?25%c", fVisible ? 'h' : 'l');
6179
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006180# ifdef MCH_CURSOR_SHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006181 mch_update_cursor();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006182# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006183}
6184
6185
6186/*
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006187 * Write "cbToWrite" bytes in `pchBuf' to the screen.
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006188 * Returns the number of bytes actually written (at least one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006190 static DWORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191write_chars(
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006192 char_u *pchBuf,
6193 DWORD cbToWrite)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006195 COORD coord = g_coord;
6196 DWORD written;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006197 DWORD n, cchwritten;
6198 static DWORD cells;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006199 static WCHAR *unicodebuf = NULL;
6200 static int unibuflen = 0;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006201 static int length;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006202 int cp = enc_utf8 ? CP_UTF8 : enc_codepage;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006203 static WCHAR *utf8spbuf = NULL;
6204 static int utf8splength;
6205 static DWORD utf8spcells;
6206 static WCHAR **utf8usingbuf = &unicodebuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006207
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006208 if (cbToWrite != 1 || *pchBuf != ' ' || !enc_utf8)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006209 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006210 utf8usingbuf = &unicodebuf;
6211 do
6212 {
6213 length = MultiByteToWideChar(cp, 0, (LPCSTR)pchBuf, cbToWrite,
6214 unicodebuf, unibuflen);
6215 if (length && length <= unibuflen)
6216 break;
6217 vim_free(unicodebuf);
6218 unicodebuf = length ? LALLOC_MULT(WCHAR, length) : NULL;
6219 unibuflen = unibuflen ? 0 : length;
6220 } while(1);
6221 cells = mb_string2cells(pchBuf, cbToWrite);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006222 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006223 else // cbToWrite == 1 && *pchBuf == ' ' && enc_utf8
6224 {
6225 if (utf8usingbuf != &utf8spbuf)
6226 {
6227 if (utf8spbuf == NULL)
6228 {
6229 cells = mb_string2cells((char_u *)" ", 1);
6230 length = MultiByteToWideChar(CP_UTF8, 0, " ", 1, NULL, 0);
6231 utf8spbuf = LALLOC_MULT(WCHAR, length);
6232 if (utf8spbuf != NULL)
6233 {
6234 MultiByteToWideChar(CP_UTF8, 0, " ", 1, utf8spbuf, length);
6235 utf8usingbuf = &utf8spbuf;
6236 utf8splength = length;
6237 utf8spcells = cells;
6238 }
6239 }
6240 else
6241 {
6242 utf8usingbuf = &utf8spbuf;
6243 length = utf8splength;
6244 cells = utf8spcells;
6245 }
6246 }
6247 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006248
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006249 if (!USE_VTP)
6250 {
6251 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
6252 coord, &written);
6253 // When writing fails or didn't write a single character, pretend one
6254 // character was written, otherwise we get stuck.
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006255 if (WriteConsoleOutputCharacterW(g_hConOut, *utf8usingbuf, length,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006256 coord, &cchwritten) == 0
6257 || cchwritten == 0 || cchwritten == (DWORD)-1)
6258 cchwritten = 1;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006259 }
6260 else
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006261 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006262 if (WriteConsoleW(g_hConOut, *utf8usingbuf, length, &cchwritten,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006263 NULL) == 0 || cchwritten == 0)
6264 cchwritten = 1;
6265 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006266
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006267 if (cchwritten == length)
6268 {
6269 written = cbToWrite;
6270 g_coord.X += (SHORT)cells;
6271 }
6272 else
6273 {
6274 char_u *p = pchBuf;
6275 for (n = 0; n < cchwritten; n++)
6276 MB_CPTR_ADV(p);
6277 written = p - pchBuf;
6278 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006279 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280
6281 while (g_coord.X > g_srScrollRegion.Right)
6282 {
6283 g_coord.X -= (SHORT) Columns;
6284 if (g_coord.Y < g_srScrollRegion.Bottom)
6285 g_coord.Y++;
6286 }
6287
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006288 // Cursor under VTP is always in the correct position, no need to reset.
6289 if (!USE_VTP)
6290 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291
6292 return written;
6293}
6294
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006295 static char_u *
6296get_seq(
6297 int *args,
6298 int *count,
6299 char_u *head)
6300{
6301 int argc;
6302 char_u *p;
6303
6304 if (head == NULL || *head != '\033')
6305 return NULL;
6306
6307 argc = 0;
6308 p = head;
6309 ++p;
6310 do
6311 {
6312 ++p;
6313 args[argc] = getdigits(&p);
6314 argc += (argc < 15) ? 1 : 0;
6315 } while (*p == ';');
6316 *count = argc;
6317
6318 return p;
6319}
6320
6321 static char_u *
6322get_sgr(
6323 int *args,
6324 int *count,
6325 char_u *head)
6326{
6327 char_u *p = get_seq(args, count, head);
6328
6329 return (p && *p == 'm') ? ++p : NULL;
6330}
6331
6332/*
6333 * Pointer to next if SGR (^[[n;2;*;*;*m), NULL otherwise.
6334 */
6335 static char_u *
6336sgrn2(
6337 char_u *head,
6338 int n)
6339{
6340 int argc;
6341 int args[16];
6342 char_u *p = get_sgr(args, &argc, head);
6343
6344 return p && argc == 5 && args[0] == n && args[1] == 2 ? p : NULL;
6345}
6346
6347/*
6348 * Pointer to next if SGR(^[[nm)<space>ESC, NULL otherwise.
6349 */
6350 static char_u *
6351sgrnc(
6352 char_u *head,
6353 int n)
6354{
6355 int argc;
6356 int args[16];
6357 char_u *p = get_sgr(args, &argc, head);
6358
6359 return p && argc == 1 && args[0] == n && (p = skipwhite(p)) && *p == '\033'
6360 ? p : NULL;
6361}
6362
6363 static char_u *
6364skipblank(char_u *q)
6365{
6366 char_u *p = q;
6367
6368 while (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r')
6369 ++p;
6370 return p;
6371}
6372
6373/*
6374 * Pointer to the next if any whitespace that may follow SGR is ESC, otherwise
6375 * NULL.
6376 */
6377 static char_u *
6378sgrn2c(
6379 char_u *head,
6380 int n)
6381{
6382 char_u *p = sgrn2(head, n);
6383
6384 return p && *p != NUL && (p = skipblank(p)) && *p == '\033' ? p : NULL;
6385}
6386
6387/*
6388 * If there is only a newline between the sequence immediately following it,
6389 * a pointer to the character following the newline is returned.
6390 * Otherwise NULL.
6391 */
6392 static char_u *
6393sgrn2cn(
6394 char_u *head,
6395 int n)
6396{
6397 char_u *p = sgrn2(head, n);
6398
6399 return p && p[0] == 0x0a && p[1] == '\033' ? ++p : NULL;
6400}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401
6402/*
6403 * mch_write(): write the output buffer to the screen, translating ESC
6404 * sequences into calls to console output routines.
6405 */
6406 void
6407mch_write(
6408 char_u *s,
6409 int len)
6410{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006411# ifdef VIMDLL
6412 if (gui.in_use)
6413 return;
6414# endif
6415
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416 s[len] = NUL;
6417
6418 if (!term_console)
6419 {
6420 write(1, s, (unsigned)len);
6421 return;
6422 }
6423
Bram Moolenaar0f873732019-12-05 20:28:46 +01006424 // translate ESC | sequences into faked bios calls
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425 while (len--)
6426 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006427 int prefix = -1;
6428 char_u ch;
6429
6430 // While processing a sequence, on rare occasions it seems that another
6431 // sequence may be inserted asynchronously.
6432 if (len < 0)
6433 {
6434 redraw_all_later(CLEAR);
6435 return;
6436 }
6437
6438 while((ch = s[++prefix]))
6439 if (ch <= 0x1e && !(ch != '\n' && ch != '\r' && ch != '\b'
6440 && ch != '\a' && ch != '\033'))
6441 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442
6443 if (p_wd)
6444 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006445 WaitForChar(p_wd, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006446 if (prefix != 0)
6447 prefix = 1;
6448 }
6449
6450 if (prefix != 0)
6451 {
6452 DWORD nWritten;
6453
6454 nWritten = write_chars(s, prefix);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006455# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456 if (fdDump)
6457 {
6458 fputc('>', fdDump);
6459 fwrite(s, sizeof(char_u), nWritten, fdDump);
6460 fputs("<\n", fdDump);
6461 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006462# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463 len -= (nWritten - 1);
6464 s += nWritten;
6465 }
6466 else if (s[0] == '\n')
6467 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006468 // \n, newline: go to the beginning of the next line or scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469 if (g_coord.Y == g_srScrollRegion.Bottom)
6470 {
6471 scroll(1);
6472 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
6473 }
6474 else
6475 {
6476 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
6477 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006478# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 if (fdDump)
6480 fputs("\\n\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] == '\r')
6485 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006486 // \r, carriage return: go to beginning of line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006488# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 if (fdDump)
6490 fputs("\\r\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006491# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006492 s++;
6493 }
6494 else if (s[0] == '\b')
6495 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006496 // \b, backspace: move cursor one position left
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497 if (g_coord.X > g_srScrollRegion.Left)
6498 g_coord.X--;
6499 else if (g_coord.Y > g_srScrollRegion.Top)
6500 {
6501 g_coord.X = g_srScrollRegion.Right;
6502 g_coord.Y--;
6503 }
6504 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006505# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 if (fdDump)
6507 fputs("\\b\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] == '\a')
6512 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006513 // \a, bell
Bram Moolenaar071d4272004-06-13 20:20:40 +00006514 MessageBeep(0xFFFFFFFF);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006515# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516 if (fdDump)
6517 fputs("\\a\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006518# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519 s++;
6520 }
6521 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
6522 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006523# ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006524 char_u *old_s = s;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006525# endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006526 char_u *p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006527 int arg1 = 0, arg2 = 0, argc = 0, args[16];
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006528 char_u *sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529
6530 switch (s[2])
6531 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 case '0': case '1': case '2': case '3': case '4':
6533 case '5': case '6': case '7': case '8': case '9':
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006534 if (*(p = get_seq(args, &argc, s)) != 'm')
6535 goto notsgr;
6536
6537 p = s;
6538
6539 // Handling frequent optional sequences. Output to the screen
6540 // takes too long, so do not output as much as possible.
6541
6542 // If resetFG,FG,BG,<cr>,BG,FG are connected, the preceding
6543 // resetFG,FG,BG are omitted.
6544 if (sgrn2(sgrn2(sgrn2cn(sgrn2(sgrnc(p, 39), 38), 48), 48), 38))
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006545 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006546 p = sgrn2(sgrn2(sgrnc(p, 39), 38), 48);
6547 len = len + 1 - (int)(p - s);
6548 s = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006549 break;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006552 // If FG,BG,BG,FG of SGR are connected, the first FG can be
6553 // omitted.
6554 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 48), 38))
6555 p = sp;
6556
6557 // If FG,BG,FG,BG of SGR are connected, the first FG can be
6558 // omitted.
6559 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 38), 48))
6560 p = sp;
6561
6562 // If BG,BG of SGR are connected, the first BG can be omitted.
6563 if (sgrn2((sp = sgrn2(p, 48)), 48))
6564 p = sp;
6565
6566 // If restoreFG and FG are connected, the restoreFG can be
6567 // omitted.
6568 if (sgrn2((sp = sgrnc(p, 39)), 38))
6569 p = sp;
6570
6571 p = get_seq(args, &argc, p);
6572
6573notsgr:
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006574 arg1 = args[0];
6575 arg2 = args[1];
6576 if (*p == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006577 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006578 if (argc == 1 && args[0] == 0)
6579 normvideo();
6580 else if (argc == 1)
6581 {
6582 if (USE_VTP)
6583 textcolor((WORD) arg1);
6584 else
6585 textattr((WORD) arg1);
6586 }
6587 else if (USE_VTP)
6588 vtp_sgr_bulks(argc, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006590 else if (argc == 2 && *p == 'H')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006592 gotoxy(arg2, arg1);
6593 }
6594 else if (argc == 2 && *p == 'r')
6595 {
6596 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
6597 }
Bram Moolenaar6982f422019-02-16 16:48:01 +01006598 else if (argc == 2 && *p == 'R')
6599 {
6600 set_scroll_region_tb(arg1, arg2);
6601 }
6602 else if (argc == 2 && *p == 'V')
6603 {
6604 set_scroll_region_lr(arg1, arg2);
6605 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006606 else if (argc == 1 && *p == 'A')
6607 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608 gotoxy(g_coord.X + 1,
6609 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
6610 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006611 else if (argc == 1 && *p == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006612 {
6613 textbackground((WORD) arg1);
6614 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006615 else if (argc == 1 && *p == 'C')
6616 {
6617 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
6618 g_coord.Y + 1);
6619 }
6620 else if (argc == 1 && *p == 'f')
6621 {
6622 textcolor((WORD) arg1);
6623 }
6624 else if (argc == 1 && *p == 'H')
6625 {
6626 gotoxy(1, arg1);
6627 }
6628 else if (argc == 1 && *p == 'L')
6629 {
6630 insert_lines(arg1);
6631 }
6632 else if (argc == 1 && *p == 'M')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006633 {
6634 delete_lines(arg1);
6635 }
6636
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006637 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638 s = p + 1;
6639 break;
6640
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 case 'A':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006642 gotoxy(g_coord.X + 1,
6643 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
6644 goto got3;
6645
6646 case 'B':
6647 visual_bell();
6648 goto got3;
6649
6650 case 'C':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
6652 g_coord.Y + 1);
6653 goto got3;
6654
6655 case 'E':
6656 termcap_mode_end();
6657 goto got3;
6658
6659 case 'F':
6660 standout();
6661 goto got3;
6662
6663 case 'f':
6664 standend();
6665 goto got3;
6666
6667 case 'H':
6668 gotoxy(1, 1);
6669 goto got3;
6670
6671 case 'j':
6672 clear_to_end_of_display();
6673 goto got3;
6674
6675 case 'J':
6676 clear_screen();
6677 goto got3;
6678
6679 case 'K':
6680 clear_to_end_of_line();
6681 goto got3;
6682
6683 case 'L':
6684 insert_lines(1);
6685 goto got3;
6686
6687 case 'M':
6688 delete_lines(1);
6689 goto got3;
6690
6691 case 'S':
6692 termcap_mode_start();
6693 goto got3;
6694
6695 case 'V':
6696 cursor_visible(TRUE);
6697 goto got3;
6698
6699 case 'v':
6700 cursor_visible(FALSE);
6701 goto got3;
6702
6703 got3:
6704 s += 3;
6705 len -= 2;
6706 }
6707
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006708# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709 if (fdDump)
6710 {
6711 fputs("ESC | ", fdDump);
6712 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
6713 fputc('\n', fdDump);
6714 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006715# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 }
6717 else
6718 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006719 // Write a single character
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720 DWORD nWritten;
6721
6722 nWritten = write_chars(s, 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006723# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006724 if (fdDump)
6725 {
6726 fputc('>', fdDump);
6727 fwrite(s, sizeof(char_u), nWritten, fdDump);
6728 fputs("<\n", fdDump);
6729 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006730# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006731
6732 len -= (nWritten - 1);
6733 s += nWritten;
6734 }
6735 }
6736
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006737# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738 if (fdDump)
6739 fflush(fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006740# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741}
6742
Bram Moolenaar0f873732019-12-05 20:28:46 +01006743#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00006744
6745
6746/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01006747 * Delay for "msec" milliseconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748 */
6749 void
6750mch_delay(
6751 long msec,
Bram Moolenaar0981c872020-08-23 14:28:37 +02006752 int flags UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006753{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006754#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006755 Sleep((int)msec); // never wait for input
6756#else // Console
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006757# ifdef VIMDLL
6758 if (gui.in_use)
6759 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006760 Sleep((int)msec); // never wait for input
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006761 return;
6762 }
6763# endif
Bram Moolenaar0981c872020-08-23 14:28:37 +02006764 if (flags & MCH_DELAY_IGNOREINPUT)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006765# ifdef FEAT_MZSCHEME
6766 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
6767 {
6768 int towait = p_mzq;
6769
Bram Moolenaar0f873732019-12-05 20:28:46 +01006770 // if msec is large enough, wait by portions in p_mzq
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006771 while (msec > 0)
6772 {
6773 mzvim_check_threads();
6774 if (msec < towait)
6775 towait = msec;
6776 Sleep(towait);
6777 msec -= towait;
6778 }
6779 }
6780 else
6781# endif
6782 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006783 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006784 WaitForChar(msec, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785#endif
6786}
6787
6788
6789/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01006790 * This version of remove is not scared by a readonly (backup) file.
6791 * This can also remove a symbolic link like Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 * Return 0 for success, -1 for failure.
6793 */
6794 int
6795mch_remove(char_u *name)
6796{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006797 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 int n;
6799
Bram Moolenaar203258c2016-01-17 22:15:16 +01006800 /*
6801 * On Windows, deleting a directory's symbolic link is done by
6802 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
6803 */
6804 if (mch_isdir(name) && mch_is_symbolic_link(name))
6805 return mch_rmdir(name);
6806
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006807 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
6808
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006809 wn = enc_to_utf16(name, NULL);
6810 if (wn == NULL)
6811 return -1;
6812
6813 n = DeleteFileW(wn) ? 0 : -1;
6814 vim_free(wn);
6815 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006816}
6817
6818
6819/*
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006820 * Check for an "interrupt signal": CTRL-break or CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 */
6822 void
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02006823mch_breakcheck(int force UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006824{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006825#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
6826# ifdef VIMDLL
6827 if (!gui.in_use)
6828# endif
6829 if (g_fCtrlCPressed || g_fCBrkPressed)
6830 {
6831 ctrl_break_was_pressed = g_fCBrkPressed;
6832 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6833 got_int = TRUE;
6834 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006835#endif
6836}
6837
Bram Moolenaar0f873732019-12-05 20:28:46 +01006838// physical RAM to leave for the OS
Bram Moolenaaree273972016-01-02 21:11:51 +01006839#define WINNT_RESERVE_BYTES (256*1024*1024)
Bram Moolenaaree273972016-01-02 21:11:51 +01006840
6841/*
6842 * How much main memory in KiB that can be used by VIM.
6843 */
Bram Moolenaaree273972016-01-02 21:11:51 +01006844 long_u
Bram Moolenaar1266d672017-02-01 13:43:36 +01006845mch_total_mem(int special UNUSED)
Bram Moolenaaree273972016-01-02 21:11:51 +01006846{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006847 MEMORYSTATUSEX ms;
6848
Bram Moolenaar0f873732019-12-05 20:28:46 +01006849 // Need to use GlobalMemoryStatusEx() when there is more memory than
6850 // what fits in 32 bits.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006851 ms.dwLength = sizeof(MEMORYSTATUSEX);
6852 GlobalMemoryStatusEx(&ms);
6853 if (ms.ullAvailVirtual < ms.ullTotalPhys)
Bram Moolenaaree273972016-01-02 21:11:51 +01006854 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006855 // Process address space fits in physical RAM, use all of it.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006856 return (long_u)(ms.ullAvailVirtual / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006857 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006858 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
Bram Moolenaaree273972016-01-02 21:11:51 +01006859 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006860 // Catch old NT box or perverse hardware setup.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006861 return (long_u)((ms.ullTotalPhys / 2) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006862 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006863 // Use physical RAM less reserve for OS + data.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006864 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006865}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866
Bram Moolenaar071d4272004-06-13 20:20:40 +00006867/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006868 * mch_wrename() works around a bug in rename (aka MoveFile) in
Bram Moolenaar071d4272004-06-13 20:20:40 +00006869 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
6870 * file whose short file name is "FOO.BAR" (its long file name will
6871 * be correct: "foo.bar~"). Because a file can be accessed by
6872 * either its SFN or its LFN, "foo.bar" has effectively been
6873 * renamed to "foo.bar", which is not at all what was wanted. This
6874 * seems to happen only when renaming files with three-character
6875 * extensions by appending a suffix that does not include ".".
6876 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
6877 *
6878 * There is another problem, which isn't really a bug but isn't right either:
6879 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
6880 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
6881 * service pack 6. Doesn't seem to happen on Windows 98.
6882 *
6883 * Like rename(), returns 0 upon success, non-zero upon failure.
6884 * Should probably set errno appropriately when errors occur.
6885 */
6886 int
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006887mch_wrename(WCHAR *wold, WCHAR *wnew)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006889 WCHAR *p;
6890 int i;
6891 WCHAR szTempFile[_MAX_PATH + 1];
6892 WCHAR szNewPath[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006893 HANDLE hf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006894
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006895 // No need to play tricks unless the file name contains a "~" as the
6896 // seventh character.
6897 p = wold;
6898 for (i = 0; wold[i] != NUL; ++i)
6899 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
6900 && wold[i + 1] != 0)
6901 p = wold + i + 1;
6902 if ((int)(wold + i - p) < 8 || p[6] != '~')
6903 return (MoveFileW(wold, wnew) == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006904
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006905 // Get base path of new file name. Undocumented feature: If pszNewFile is
6906 // a directory, no error is returned and pszFilePart will be NULL.
6907 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908 return -1;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006909 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006911 // Get (and create) a unique temporary file name in directory of new file
6912 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913 return -2;
6914
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006915 // blow the temp file away
6916 if (!DeleteFileW(szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006917 return -3;
6918
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006919 // rename old file to the temp file
6920 if (!MoveFileW(wold, szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 return -4;
6922
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006923 // now create an empty file called pszOldFile; this prevents the operating
6924 // system using pszOldFile as an alias (SFN) if we're renaming within the
6925 // same directory. For example, we're editing a file called
6926 // filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
6927 // to filena~1.txt~ (i.e., we're making a backup while writing it), the
6928 // SFN for filena~1.txt~ will be filena~1.txt, by default, which will
6929 // cause all sorts of problems later in buf_write(). So, we create an
6930 // empty file called filena~1.txt and the system will have to find some
6931 // other SFN for filena~1.txt~, such as filena~2.txt
6932 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6934 return -5;
6935 if (!CloseHandle(hf))
6936 return -6;
6937
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006938 // rename the temp file to the new file
6939 if (!MoveFileW(szTempFile, wnew))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006941 // Renaming failed. Rename the file back to its old name, so that it
6942 // looks like nothing happened.
6943 (void)MoveFileW(szTempFile, wold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006944 return -7;
6945 }
6946
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006947 // Seems to be left around on Novell filesystems
6948 DeleteFileW(szTempFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006949
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006950 // finally, remove the empty old file
6951 if (!DeleteFileW(wold))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952 return -8;
6953
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006954 return 0;
6955}
6956
6957
6958/*
6959 * Converts the filenames to UTF-16, then call mch_wrename().
6960 * Like rename(), returns 0 upon success, non-zero upon failure.
6961 */
6962 int
6963mch_rename(
6964 const char *pszOldFile,
6965 const char *pszNewFile)
6966{
6967 WCHAR *wold = NULL;
6968 WCHAR *wnew = NULL;
6969 int retval = -1;
6970
6971 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
6972 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
6973 if (wold != NULL && wnew != NULL)
6974 retval = mch_wrename(wold, wnew);
6975 vim_free(wold);
6976 vim_free(wnew);
6977 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978}
6979
6980/*
6981 * Get the default shell for the current hardware platform
6982 */
6983 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006984default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006986 return "cmd.exe";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987}
6988
6989/*
6990 * mch_access() extends access() to do more detailed check on network drives.
6991 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
6992 */
6993 int
6994mch_access(char *n, int p)
6995{
6996 HANDLE hFile;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006997 int retval = -1; // default: fail
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006998 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007000 wn = enc_to_utf16((char_u *)n, NULL);
7001 if (wn == NULL)
7002 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01007004 if (mch_isdir((char_u *)n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007005 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006 WCHAR TempNameW[_MAX_PATH + 16] = L"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00007007
7008 if (p & R_OK)
7009 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007010 // Read check is performed by seeing if we can do a find file on
7011 // the directory for any file.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007012 int i;
7013 WIN32_FIND_DATAW d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007015 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
7016 TempNameW[i] = wn[i];
7017 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
7018 TempNameW[i++] = '\\';
7019 TempNameW[i++] = '*';
7020 TempNameW[i++] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007022 hFile = FindFirstFileW(TempNameW, &d);
7023 if (hFile == INVALID_HANDLE_VALUE)
7024 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007025 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026 (void)FindClose(hFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007027 }
7028
7029 if (p & W_OK)
7030 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007031 // Trying to create a temporary file in the directory should catch
7032 // directories on read-only network shares. However, in
7033 // directories whose ACL allows writes but denies deletes will end
7034 // up keeping the temporary file :-(.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007035 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
7036 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007037 else
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007038 DeleteFileW(TempNameW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039 }
7040 }
7041 else
7042 {
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007043 // Don't consider a file read-only if another process has opened it.
7044 DWORD share_mode = FILE_SHARE_READ | FILE_SHARE_WRITE;
7045
Bram Moolenaar0f873732019-12-05 20:28:46 +01007046 // Trying to open the file for the required access does ACL, read-only
7047 // network share, and file attribute checks.
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007048 DWORD access_mode = ((p & W_OK) ? GENERIC_WRITE : 0)
7049 | ((p & R_OK) ? GENERIC_READ : 0);
7050
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007051 hFile = CreateFileW(wn, access_mode, share_mode,
7052 NULL, OPEN_EXISTING, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053 if (hFile == INVALID_HANDLE_VALUE)
7054 goto getout;
7055 CloseHandle(hFile);
7056 }
7057
Bram Moolenaar0f873732019-12-05 20:28:46 +01007058 retval = 0; // success
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059getout:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061 return retval;
7062}
7063
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007065 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066 */
7067 int
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007068mch_open(const char *name, int flags, int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007069{
7070 WCHAR *wn;
7071 int f;
7072
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007073 wn = enc_to_utf16((char_u *)name, NULL);
7074 if (wn == NULL)
7075 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007077 f = _wopen(wn, flags, mode);
7078 vim_free(wn);
7079 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080}
7081
7082/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007083 * Version of fopen() that uses UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084 */
7085 FILE *
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007086mch_fopen(const char *name, const char *mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087{
7088 WCHAR *wn, *wm;
7089 FILE *f = NULL;
7090
Bram Moolenaara12a1612019-01-24 16:39:02 +01007091#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0f873732019-12-05 20:28:46 +01007092 // Work around an annoying assertion in the Microsoft debug CRT
7093 // when mode's text/binary setting doesn't match _get_fmode().
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007094 char newMode = mode[strlen(mode) - 1];
7095 int oldMode = 0;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007096
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007097 _get_fmode(&oldMode);
7098 if (newMode == 't')
7099 _set_fmode(_O_TEXT);
7100 else if (newMode == 'b')
7101 _set_fmode(_O_BINARY);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007102#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007103 wn = enc_to_utf16((char_u *)name, NULL);
7104 wm = enc_to_utf16((char_u *)mode, NULL);
7105 if (wn != NULL && wm != NULL)
7106 f = _wfopen(wn, wm);
7107 vim_free(wn);
7108 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007109
Bram Moolenaara12a1612019-01-24 16:39:02 +01007110#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007111 _set_fmode(oldMode);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007112#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007113 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007114}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116/*
7117 * SUB STREAM (aka info stream) handling:
7118 *
7119 * NTFS can have sub streams for each file. Normal contents of file is
7120 * stored in the main stream, and extra contents (author information and
7121 * title and so on) can be stored in sub stream. After Windows 2000, user
7122 * can access and store those informations in sub streams via explorer's
7123 * property menuitem in right click menu. Those informations in sub streams
7124 * were lost when copying only the main stream. So we have to copy sub
7125 * streams.
7126 *
7127 * Incomplete explanation:
7128 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
7129 * More useful info and an example:
7130 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
7131 */
7132
7133/*
7134 * Copy info stream data "substream". Read from the file with BackupRead(sh)
7135 * and write to stream "substream" of file "to".
7136 * Errors are ignored.
7137 */
7138 static void
7139copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
7140{
7141 HANDLE hTo;
7142 WCHAR *to_name;
7143
7144 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
7145 wcscpy(to_name, to);
7146 wcscat(to_name, substream);
7147
7148 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
7149 FILE_ATTRIBUTE_NORMAL, NULL);
7150 if (hTo != INVALID_HANDLE_VALUE)
7151 {
7152 long done;
7153 DWORD todo;
7154 DWORD readcnt, written;
7155 char buf[4096];
7156
Bram Moolenaar0f873732019-12-05 20:28:46 +01007157 // Copy block of bytes at a time. Abort when something goes wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007158 for (done = 0; done < len; done += written)
7159 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007160 // (size_t) cast for Borland C 5.5
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007161 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
7162 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
7164 FALSE, FALSE, context)
7165 || readcnt != todo
7166 || !WriteFile(hTo, buf, todo, &written, NULL)
7167 || written != todo)
7168 break;
7169 }
7170 CloseHandle(hTo);
7171 }
7172
7173 free(to_name);
7174}
7175
7176/*
7177 * Copy info streams from file "from" to file "to".
7178 */
7179 static void
7180copy_infostreams(char_u *from, char_u *to)
7181{
7182 WCHAR *fromw;
7183 WCHAR *tow;
7184 HANDLE sh;
7185 WIN32_STREAM_ID sid;
7186 int headersize;
7187 WCHAR streamname[_MAX_PATH];
7188 DWORD readcount;
7189 void *context = NULL;
7190 DWORD lo, hi;
7191 int len;
7192
Bram Moolenaar0f873732019-12-05 20:28:46 +01007193 // Convert the file names to wide characters.
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007194 fromw = enc_to_utf16(from, NULL);
7195 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007196 if (fromw != NULL && tow != NULL)
7197 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007198 // Open the file for reading.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
7200 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
7201 if (sh != INVALID_HANDLE_VALUE)
7202 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007203 // Use BackupRead() to find the info streams. Repeat until we
7204 // have done them all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205 for (;;)
7206 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007207 // Get the header to find the length of the stream name. If
7208 // the "readcount" is zero we have done all info streams.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007210 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
7212 &readcount, FALSE, FALSE, &context)
7213 || readcount == 0)
7214 break;
7215
Bram Moolenaar0f873732019-12-05 20:28:46 +01007216 // We only deal with streams that have a name. The normal
7217 // file data appears to be without a name, even though docs
7218 // suggest it is called "::$DATA".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007219 if (sid.dwStreamNameSize > 0)
7220 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007221 // Read the stream name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222 if (!BackupRead(sh, (LPBYTE)streamname,
7223 sid.dwStreamNameSize,
7224 &readcount, FALSE, FALSE, &context))
7225 break;
7226
Bram Moolenaar0f873732019-12-05 20:28:46 +01007227 // Copy an info stream with a name ":anything:$DATA".
7228 // Skip "::$DATA", it has no stream name (examples suggest
7229 // it might be used for the normal file contents).
7230 // Note that BackupRead() counts bytes, but the name is in
7231 // wide characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007232 len = readcount / sizeof(WCHAR);
7233 streamname[len] = 0;
7234 if (len > 7 && wcsicmp(streamname + len - 6,
7235 L":$DATA") == 0)
7236 {
7237 streamname[len - 6] = 0;
7238 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007239 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240 }
7241 }
7242
Bram Moolenaar0f873732019-12-05 20:28:46 +01007243 // Advance to the next stream. We might try seeking too far,
7244 // but BackupSeek() doesn't skip over stream borders, thus
7245 // that's OK.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007246 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 &lo, &hi, &context);
7248 }
7249
Bram Moolenaar0f873732019-12-05 20:28:46 +01007250 // Clear the context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007251 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
7252
7253 CloseHandle(sh);
7254 }
7255 }
7256 vim_free(fromw);
7257 vim_free(tow);
7258}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007259
7260/*
7261 * Copy file attributes from file "from" to file "to".
7262 * For Windows NT and later we copy info streams.
7263 * Always returns zero, errors are ignored.
7264 */
7265 int
7266mch_copy_file_attribute(char_u *from, char_u *to)
7267{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007268 // File streams only work on Windows NT and later.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007269 copy_infostreams(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007270 return 0;
7271}
7272
7273#if defined(MYRESETSTKOFLW) || defined(PROTO)
7274/*
7275 * Recreate a destroyed stack guard page in win32.
7276 * Written by Benjamin Peterson.
7277 */
7278
Bram Moolenaar0f873732019-12-05 20:28:46 +01007279// These magic numbers are from the MS header files
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007280# define MIN_STACK_WINNT 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00007281
7282/*
7283 * This function does the same thing as _resetstkoflw(), which is only
7284 * available in DevStudio .net and later.
7285 * Returns 0 for failure, 1 for success.
7286 */
7287 int
7288myresetstkoflw(void)
7289{
7290 BYTE *pStackPtr;
7291 BYTE *pGuardPage;
7292 BYTE *pStackBase;
7293 BYTE *pLowestPossiblePage;
7294 MEMORY_BASIC_INFORMATION mbi;
7295 SYSTEM_INFO si;
7296 DWORD nPageSize;
7297 DWORD dummy;
7298
Bram Moolenaar0f873732019-12-05 20:28:46 +01007299 // We need to know the system page size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007300 GetSystemInfo(&si);
7301 nPageSize = si.dwPageSize;
7302
Bram Moolenaar0f873732019-12-05 20:28:46 +01007303 // ...and the current stack pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304 pStackPtr = (BYTE*)_alloca(1);
7305
Bram Moolenaar0f873732019-12-05 20:28:46 +01007306 // ...and the base of the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007307 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
7308 return 0;
7309 pStackBase = (BYTE*)mbi.AllocationBase;
7310
Bram Moolenaar4b96df52020-01-26 22:00:26 +01007311 // ...and the page that's min_stack_req pages away from stack base; this is
Bram Moolenaar0f873732019-12-05 20:28:46 +01007312 // the lowest page we could use.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007313 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314
Bram Moolenaar071d4272004-06-13 20:20:40 +00007315 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007316 // We want the first committed page in the stack Start at the stack
7317 // base and move forward through memory until we find a committed block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007318 BYTE *pBlock = pStackBase;
7319
Bram Moolenaara466c992005-07-09 21:03:22 +00007320 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007321 {
7322 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
7323 return 0;
7324
7325 pBlock += mbi.RegionSize;
7326
7327 if (mbi.State & MEM_COMMIT)
7328 break;
7329 }
7330
Bram Moolenaar0f873732019-12-05 20:28:46 +01007331 // mbi now describes the first committed block in the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007332 if (mbi.Protect & PAGE_GUARD)
7333 return 1;
7334
Bram Moolenaar0f873732019-12-05 20:28:46 +01007335 // decide where the guard page should start
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
7337 pGuardPage = pLowestPossiblePage;
7338 else
7339 pGuardPage = (BYTE*)mbi.BaseAddress;
7340
Bram Moolenaar0f873732019-12-05 20:28:46 +01007341 // allocate the guard page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007342 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
7343 return 0;
7344
Bram Moolenaar0f873732019-12-05 20:28:46 +01007345 // apply the guard attribute to the page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007346 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
7347 &dummy))
7348 return 0;
7349 }
7350
7351 return 1;
7352}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007353#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007354
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007355
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007356/*
7357 * The command line arguments in UCS2
7358 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007359static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007360static LPWSTR *ArglistW = NULL;
7361static int global_argc = 0;
7362static char **global_argv;
7363
Bram Moolenaar0f873732019-12-05 20:28:46 +01007364static int used_file_argc = 0; // last argument in global_argv[] used
7365 // for the argument list.
7366static int *used_file_indexes = NULL; // indexes in global_argv[] for
7367 // command line arguments added to
7368 // the argument list
7369static int used_file_count = 0; // nr of entries in used_file_indexes
7370static int used_file_literal = FALSE; // take file names literally
7371static int used_file_full_path = FALSE; // file name was full path
7372static int used_file_diff_mode = FALSE; // file name was with diff mode
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007373static int used_alist_count = 0;
7374
7375
7376/*
7377 * Get the command line arguments. Unicode version.
7378 * Returns argc. Zero when something fails.
7379 */
7380 int
7381get_cmd_argsW(char ***argvp)
7382{
7383 char **argv = NULL;
7384 int argc = 0;
7385 int i;
7386
Bram Moolenaar14993322014-09-09 12:25:33 +02007387 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007388 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
7389 if (ArglistW != NULL)
7390 {
7391 argv = malloc((nArgsW + 1) * sizeof(char *));
7392 if (argv != NULL)
7393 {
7394 argc = nArgsW;
7395 argv[argc] = NULL;
7396 for (i = 0; i < argc; ++i)
7397 {
7398 int len;
7399
Bram Moolenaar0f873732019-12-05 20:28:46 +01007400 // Convert each Unicode argument to the current codepage.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007401 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007402 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007403 (LPSTR *)&argv[i], &len, 0, 0);
7404 if (argv[i] == NULL)
7405 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007406 // Out of memory, clear everything.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007407 while (i > 0)
7408 free(argv[--i]);
7409 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01007410 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007411 argc = 0;
7412 }
7413 }
7414 }
7415 }
7416
7417 global_argc = argc;
7418 global_argv = argv;
7419 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02007420 {
7421 if (used_file_indexes != NULL)
7422 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007423 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02007424 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007425
7426 if (argvp != NULL)
7427 *argvp = argv;
7428 return argc;
7429}
7430
7431 void
7432free_cmd_argsW(void)
7433{
7434 if (ArglistW != NULL)
7435 {
7436 GlobalFree(ArglistW);
7437 ArglistW = NULL;
7438 }
7439}
7440
7441/*
7442 * Remember "name" is an argument that was added to the argument list.
7443 * This avoids that we have to re-parse the argument list when fix_arg_enc()
7444 * is called.
7445 */
7446 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007447used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007448{
7449 int i;
7450
7451 if (used_file_indexes == NULL)
7452 return;
7453 for (i = used_file_argc + 1; i < global_argc; ++i)
7454 if (STRCMP(global_argv[i], name) == 0)
7455 {
7456 used_file_argc = i;
7457 used_file_indexes[used_file_count++] = i;
7458 break;
7459 }
7460 used_file_literal = literal;
7461 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007462 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007463}
7464
7465/*
7466 * Remember the length of the argument list as it was. If it changes then we
7467 * leave it alone when 'encoding' is set.
7468 */
7469 void
7470set_alist_count(void)
7471{
7472 used_alist_count = GARGCOUNT;
7473}
7474
7475/*
7476 * Fix the encoding of the command line arguments. Invoked when 'encoding'
7477 * has been changed while starting up. Use the UCS-2 command line arguments
7478 * and convert them to 'encoding'.
7479 */
7480 void
7481fix_arg_enc(void)
7482{
7483 int i;
7484 int idx;
7485 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007486 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007487
Bram Moolenaar0f873732019-12-05 20:28:46 +01007488 // Safety checks:
7489 // - if argument count differs between the wide and non-wide argument
7490 // list, something must be wrong.
7491 // - the file name arguments must have been located.
7492 // - the length of the argument list wasn't changed by the user.
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007493 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007494 || ArglistW == NULL
7495 || used_file_indexes == NULL
7496 || used_file_count == 0
7497 || used_alist_count != GARGCOUNT)
7498 return;
7499
Bram Moolenaar0f873732019-12-05 20:28:46 +01007500 // Remember the buffer numbers for the arguments.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02007501 fnum_list = ALLOC_MULT(int, GARGCOUNT);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007502 if (fnum_list == NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007503 return; // out of memory
Bram Moolenaar86b68352004-12-27 21:59:20 +00007504 for (i = 0; i < GARGCOUNT; ++i)
7505 fnum_list[i] = GARGLIST[i].ae_fnum;
7506
Bram Moolenaar0f873732019-12-05 20:28:46 +01007507 // Clear the argument list. Make room for the new arguments.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007508 alist_clear(&global_alist);
7509 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007510 return; // out of memory
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007511
7512 for (i = 0; i < used_file_count; ++i)
7513 {
7514 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007515 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007516 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007517 {
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007518 int literal = used_file_literal;
7519
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007520#ifdef FEAT_DIFF
Bram Moolenaar0f873732019-12-05 20:28:46 +01007521 // When using diff mode may need to concatenate file name to
7522 // directory name. Just like it's done in main().
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007523 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
7524 && !mch_isdir(alist_name(&GARGLIST[0])))
7525 {
7526 char_u *r;
7527
7528 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
7529 if (r != NULL)
7530 {
7531 vim_free(str);
7532 str = r;
7533 }
7534 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007535#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007536 // Re-use the old buffer by renaming it. When not using literal
7537 // names it's done by alist_expand() below.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007538 if (used_file_literal)
7539 buf_set_name(fnum_list[i], str);
7540
Bram Moolenaar0f873732019-12-05 20:28:46 +01007541 // Check backtick literal. backtick literal is already expanded in
7542 // main.c, so this part add str as literal.
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007543 if (literal == FALSE)
7544 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02007545 size_t len = STRLEN(str);
7546
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007547 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
7548 literal = TRUE;
7549 }
7550 alist_add(&global_alist, str, literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007551 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007552 }
7553
7554 if (!used_file_literal)
7555 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007556 // Now expand wildcards in the arguments.
7557 // Temporarily add '(' and ')' to 'isfname'. These are valid
7558 // filename characters but are excluded from 'isfname' to make
7559 // "gf" work on a file name in parenthesis (e.g.: see vim.h).
7560 // Also, unset wildignore to not be influenced by this option.
7561 // The arguments specified in command-line should be kept even if
7562 // encoding options were changed.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007563 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007564 do_cmdline_cmd((char_u *)":let SaVe_WIG = &wig|set wig=");
Bram Moolenaar86b68352004-12-27 21:59:20 +00007565 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007566 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007567 do_cmdline_cmd((char_u *)":let &wig = SaVe_WIG|unlet SaVe_WIG");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007568 }
7569
Bram Moolenaar0f873732019-12-05 20:28:46 +01007570 // If wildcard expansion failed, we are editing the first file of the
7571 // arglist and there is no file name: Edit the first argument now.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007572 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7573 {
7574 do_cmdline_cmd((char_u *)":rewind");
7575 if (GARGCOUNT == 1 && used_file_full_path)
Bram Moolenaarb7407d32018-02-03 17:36:27 +01007576 (void)vim_chdirfile(alist_name(&GARGLIST[0]), "drop");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007577 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007578
7579 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007580}
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007581
7582 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02007583mch_setenv(char *var, char *value, int x UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007584{
7585 char_u *envbuf;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007586 WCHAR *p;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007587
Bram Moolenaar964b3742019-05-24 18:54:09 +02007588 envbuf = alloc(STRLEN(var) + STRLEN(value) + 2);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007589 if (envbuf == NULL)
7590 return -1;
7591
7592 sprintf((char *)envbuf, "%s=%s", var, value);
7593
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007594 p = enc_to_utf16(envbuf, NULL);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007595
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007596 vim_free(envbuf);
7597 if (p == NULL)
7598 return -1;
7599 _wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007600#ifdef libintl_wputenv
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007601 libintl_wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007602#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007603 // Unlike Un*x systems, we can free the string for _wputenv().
7604 vim_free(p);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007605
7606 return 0;
7607}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007608
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007609/*
7610 * Support for 256 colors and 24-bit colors was added in Windows 10
7611 * version 1703 (Creators update).
7612 */
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007613#define VTP_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 15063)
7614
7615/*
7616 * Support for pseudo-console (ConPTY) was added in windows 10
Bram Moolenaar57da6982019-09-13 22:30:11 +02007617 * version 1809 (October 2018 update).
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007618 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007619#define CONPTY_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 17763)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007620
7621/*
7622 * ConPTY differences between versions, need different logic.
7623 * version 1903 (May 2019 update).
7624 */
7625#define CONPTY_1903_BUILD MAKE_VER(10, 0, 18362)
7626
7627/*
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007628 * version 1909 (November 2019 update).
7629 */
7630#define CONPTY_1909_BUILD MAKE_VER(10, 0, 18363)
7631
7632/*
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007633 * Stay ahead of the next update, and when it's done, fix this.
7634 * version ? (2020 update, temporarily use the build number of insider preview)
7635 */
7636#define CONPTY_NEXT_UPDATE_BUILD MAKE_VER(10, 0, 19587)
7637
7638/*
Bram Moolenaar57da6982019-09-13 22:30:11 +02007639 * Confirm until this version. Also the logic changes.
7640 * insider preview.
7641 */
Bram Moolenaar4c063dd2019-10-04 21:29:12 +02007642#define CONPTY_INSIDER_BUILD MAKE_VER(10, 0, 18995)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007643
7644/*
7645 * Not stable now.
7646 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007647#define CONPTY_STABLE_BUILD MAKE_VER(10, 0, 32767) // T.B.D.
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007648
7649 static void
7650vtp_flag_init(void)
7651{
7652 DWORD ver = get_build_number();
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007653#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007654 DWORD mode;
7655 HANDLE out;
7656
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007657# ifdef VIMDLL
7658 if (!gui.in_use)
7659# endif
7660 {
7661 out = GetStdHandle(STD_OUTPUT_HANDLE);
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007662
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007663 vtp_working = (ver >= VTP_FIRST_SUPPORT_BUILD) ? 1 : 0;
7664 GetConsoleMode(out, &mode);
7665 mode |= (ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
7666 if (SetConsoleMode(out, mode) == 0)
7667 vtp_working = 0;
7668 }
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007669#endif
7670
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007671 if (ver >= CONPTY_FIRST_SUPPORT_BUILD)
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007672 conpty_working = 1;
7673 if (ver >= CONPTY_STABLE_BUILD)
7674 conpty_stable = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007675
Bram Moolenaar57da6982019-09-13 22:30:11 +02007676 if (ver <= CONPTY_INSIDER_BUILD)
7677 conpty_type = 3;
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007678 if (ver <= CONPTY_1909_BUILD)
7679 conpty_type = 2;
Bram Moolenaar57da6982019-09-13 22:30:11 +02007680 if (ver <= CONPTY_1903_BUILD)
7681 conpty_type = 2;
7682 if (ver < CONPTY_FIRST_SUPPORT_BUILD)
7683 conpty_type = 1;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007684
7685 if (ver >= CONPTY_NEXT_UPDATE_BUILD)
7686 conpty_fix_type = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007687}
7688
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007689#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007690
7691 static void
7692vtp_init(void)
7693{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007694 HMODULE hKerneldll;
7695 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007696# ifdef FEAT_TERMGUICOLORS
7697 COLORREF fg, bg;
7698# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007699
Bram Moolenaar0f873732019-12-05 20:28:46 +01007700 // Use functions supported from Vista
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007701 hKerneldll = GetModuleHandle("kernel32.dll");
7702 if (hKerneldll != NULL)
7703 {
7704 pGetConsoleScreenBufferInfoEx =
7705 (PfnGetConsoleScreenBufferInfoEx)GetProcAddress(
7706 hKerneldll, "GetConsoleScreenBufferInfoEx");
7707 pSetConsoleScreenBufferInfoEx =
7708 (PfnSetConsoleScreenBufferInfoEx)GetProcAddress(
7709 hKerneldll, "SetConsoleScreenBufferInfoEx");
7710 if (pGetConsoleScreenBufferInfoEx != NULL
7711 && pSetConsoleScreenBufferInfoEx != NULL)
7712 has_csbiex = TRUE;
7713 }
7714
7715 csbi.cbSize = sizeof(csbi);
7716 if (has_csbiex)
7717 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007718 save_console_bg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_bg];
7719 save_console_fg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_fg];
Bram Moolenaardf543822020-01-30 11:53:59 +01007720 store_console_bg_rgb = save_console_bg_rgb;
7721 store_console_fg_rgb = save_console_fg_rgb;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007722
7723# ifdef FEAT_TERMGUICOLORS
7724 bg = (COLORREF)csbi.ColorTable[g_color_index_bg];
7725 fg = (COLORREF)csbi.ColorTable[g_color_index_fg];
7726 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7727 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7728 default_console_color_bg = bg;
7729 default_console_color_fg = fg;
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007730# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007731
7732 set_console_color_rgb();
7733}
7734
7735 static void
7736vtp_exit(void)
7737{
Bram Moolenaardf543822020-01-30 11:53:59 +01007738 restore_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007739}
7740
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007741 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007742vtp_printf(
7743 char *format,
7744 ...)
7745{
7746 char_u buf[100];
7747 va_list list;
7748 DWORD result;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007749 int len;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007750
7751 va_start(list, format);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007752 len = vim_vsnprintf((char *)buf, 100, (char *)format, list);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007753 va_end(list);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007754 WriteConsoleA(g_hConOut, buf, (DWORD)len, &result, NULL);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007755 return (int)result;
7756}
7757
7758 static void
7759vtp_sgr_bulk(
7760 int arg)
7761{
7762 int args[1];
7763
7764 args[0] = arg;
7765 vtp_sgr_bulks(1, args);
7766}
7767
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007768#define FAST256(x) \
7769 if ((*p-- = "0123456789"[(n = x % 10)]) \
7770 && x >= 10 && (*p-- = "0123456789"[((m = x % 100) - n) / 10]) \
7771 && x >= 100 && (*p-- = "012"[((x & 0xff) - m) / 100]));
7772
7773#define FAST256CASE(x) \
7774 case x: \
7775 FAST256(newargs[x - 1]);
7776
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007777 static void
7778vtp_sgr_bulks(
7779 int argc,
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007780 int *args)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007781{
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007782#define MAXSGR 16
7783#define SGRBUFSIZE 2 + 4 * MAXSGR + 1 // '\033[' + SGR + 'm'
7784 char_u buf[SGRBUFSIZE];
7785 char_u *p;
7786 int in, out;
7787 int newargs[16];
7788 static int sgrfgr = -1, sgrfgg, sgrfgb;
7789 static int sgrbgr = -1, sgrbgg, sgrbgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007790
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007791 if (argc == 0)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007792 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007793 sgrfgr = sgrbgr = -1;
7794 vtp_printf("033[m");
7795 return;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007796 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007797
7798 in = out = 0;
7799 while (in < argc)
7800 {
7801 int s = args[in];
7802 int copylen = 1;
7803
7804 if (s == 38)
7805 {
7806 if (argc - in >= 5 && args[in + 1] == 2)
7807 {
7808 if (sgrfgr == args[in + 2] && sgrfgg == args[in + 3]
7809 && sgrfgb == args[in + 4])
7810 {
7811 in += 5;
7812 copylen = 0;
7813 }
7814 else
7815 {
7816 sgrfgr = args[in + 2];
7817 sgrfgg = args[in + 3];
7818 sgrfgb = args[in + 4];
7819 copylen = 5;
7820 }
7821 }
7822 else if (argc - in >= 3 && args[in + 1] == 5)
7823 {
7824 sgrfgr = -1;
7825 copylen = 3;
7826 }
7827 }
7828 else if (s == 48)
7829 {
7830 if (argc - in >= 5 && args[in + 1] == 2)
7831 {
7832 if (sgrbgr == args[in + 2] && sgrbgg == args[in + 3]
7833 && sgrbgb == args[in + 4])
7834 {
7835 in += 5;
7836 copylen = 0;
7837 }
7838 else
7839 {
7840 sgrbgr = args[in + 2];
7841 sgrbgg = args[in + 3];
7842 sgrbgb = args[in + 4];
7843 copylen = 5;
7844 }
7845 }
7846 else if (argc - in >= 3 && args[in + 1] == 5)
7847 {
7848 sgrbgr = -1;
7849 copylen = 3;
7850 }
7851 }
7852 else if (30 <= s && s <= 39)
7853 sgrfgr = -1;
7854 else if (90 <= s && s <= 97)
7855 sgrfgr = -1;
7856 else if (40 <= s && s <= 49)
7857 sgrbgr = -1;
7858 else if (100 <= s && s <= 107)
7859 sgrbgr = -1;
7860 else if (s == 0)
7861 sgrfgr = sgrbgr = -1;
7862
7863 while (copylen--)
7864 newargs[out++] = args[in++];
7865 }
7866
7867 p = &buf[sizeof(buf) - 1];
7868 *p-- = 'm';
7869
7870 switch (out)
7871 {
7872 int n, m;
7873 DWORD r;
7874
7875 FAST256CASE(16);
7876 *p-- = ';';
7877 FAST256CASE(15);
7878 *p-- = ';';
7879 FAST256CASE(14);
7880 *p-- = ';';
7881 FAST256CASE(13);
7882 *p-- = ';';
7883 FAST256CASE(12);
7884 *p-- = ';';
7885 FAST256CASE(11);
7886 *p-- = ';';
7887 FAST256CASE(10);
7888 *p-- = ';';
7889 FAST256CASE(9);
7890 *p-- = ';';
7891 FAST256CASE(8);
7892 *p-- = ';';
7893 FAST256CASE(7);
7894 *p-- = ';';
7895 FAST256CASE(6);
7896 *p-- = ';';
7897 FAST256CASE(5);
7898 *p-- = ';';
7899 FAST256CASE(4);
7900 *p-- = ';';
7901 FAST256CASE(3);
7902 *p-- = ';';
7903 FAST256CASE(2);
7904 *p-- = ';';
7905 FAST256CASE(1);
7906 *p-- = '[';
7907 *p = '\033';
7908 WriteConsoleA(g_hConOut, p, (DWORD)(&buf[SGRBUFSIZE] - p), &r, NULL);
7909 default:
7910 break;
7911 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007912}
7913
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007914 static void
7915wt_init(void)
7916{
7917 wt_working = (mch_getenv("WT_SESSION") != NULL);
7918}
7919
7920 int
7921use_wt(void)
7922{
7923 return USE_WT;
7924}
7925
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007926# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007927 static int
7928ctermtoxterm(
7929 int cterm)
7930{
Bram Moolenaar9894e392018-05-05 14:29:06 +02007931 char_u r, g, b, idx;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007932
7933 cterm_color2rgb(cterm, &r, &g, &b, &idx);
7934 return (((int)r << 16) | ((int)g << 8) | (int)b);
7935}
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007936# endif
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007937
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007938 static void
7939set_console_color_rgb(void)
7940{
7941# ifdef FEAT_TERMGUICOLORS
7942 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaara050b942019-12-02 21:35:31 +01007943 guicolor_T fg, bg;
7944 int ctermfg, ctermbg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007945
7946 if (!USE_VTP)
7947 return;
7948
Bram Moolenaara050b942019-12-02 21:35:31 +01007949 get_default_console_color(&ctermfg, &ctermbg, &fg, &bg);
7950
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007951 if (USE_WT)
7952 {
7953 term_fg_rgb_color(fg);
7954 term_bg_rgb_color(bg);
7955 return;
7956 }
7957
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007958 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7959 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7960
7961 csbi.cbSize = sizeof(csbi);
7962 if (has_csbiex)
7963 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
7964
7965 csbi.cbSize = sizeof(csbi);
7966 csbi.srWindow.Right += 1;
7967 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01007968 store_console_bg_rgb = csbi.ColorTable[g_color_index_bg];
7969 store_console_fg_rgb = csbi.ColorTable[g_color_index_fg];
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007970 csbi.ColorTable[g_color_index_bg] = (COLORREF)bg;
7971 csbi.ColorTable[g_color_index_fg] = (COLORREF)fg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007972 if (has_csbiex)
7973 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
7974# endif
7975}
7976
Bram Moolenaara050b942019-12-02 21:35:31 +01007977# if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
7978 void
7979get_default_console_color(
7980 int *cterm_fg,
7981 int *cterm_bg,
7982 guicolor_T *gui_fg,
7983 guicolor_T *gui_bg)
7984{
7985 int id;
7986 guicolor_T guifg = INVALCOLOR;
7987 guicolor_T guibg = INVALCOLOR;
7988 int ctermfg = 0;
7989 int ctermbg = 0;
7990
7991 id = syn_name2id((char_u *)"Normal");
7992 if (id > 0 && p_tgc)
7993 syn_id2colors(id, &guifg, &guibg);
7994 if (guifg == INVALCOLOR)
7995 {
7996 ctermfg = -1;
7997 if (id > 0)
7998 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
7999 guifg = ctermfg != -1 ? ctermtoxterm(ctermfg)
8000 : default_console_color_fg;
8001 cterm_normal_fg_gui_color = guifg;
8002 ctermfg = ctermfg < 0 ? 0 : ctermfg;
8003 }
8004 if (guibg == INVALCOLOR)
8005 {
8006 ctermbg = -1;
8007 if (id > 0)
8008 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
8009 guibg = ctermbg != -1 ? ctermtoxterm(ctermbg)
8010 : default_console_color_bg;
8011 cterm_normal_bg_gui_color = guibg;
8012 ctermbg = ctermbg < 0 ? 0 : ctermbg;
8013 }
8014
8015 *cterm_fg = ctermfg;
8016 *cterm_bg = ctermbg;
8017 *gui_fg = guifg;
8018 *gui_bg = guibg;
8019}
8020# endif
8021
Bram Moolenaardf543822020-01-30 11:53:59 +01008022/*
8023 * Set the console colors to the original colors or the last set colors.
8024 */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008025 static void
8026reset_console_color_rgb(void)
8027{
8028# ifdef FEAT_TERMGUICOLORS
8029 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8030
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008031 if (USE_WT)
8032 return;
8033
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008034 csbi.cbSize = sizeof(csbi);
8035 if (has_csbiex)
8036 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8037
8038 csbi.cbSize = sizeof(csbi);
8039 csbi.srWindow.Right += 1;
8040 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01008041 csbi.ColorTable[g_color_index_bg] = (COLORREF)store_console_bg_rgb;
8042 csbi.ColorTable[g_color_index_fg] = (COLORREF)store_console_fg_rgb;
8043 if (has_csbiex)
8044 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8045# endif
8046}
8047
8048/*
8049 * Set the console colors to the original colors.
8050 */
8051 static void
8052restore_console_color_rgb(void)
8053{
8054# ifdef FEAT_TERMGUICOLORS
8055 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8056
8057 csbi.cbSize = sizeof(csbi);
8058 if (has_csbiex)
8059 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8060
8061 csbi.cbSize = sizeof(csbi);
8062 csbi.srWindow.Right += 1;
8063 csbi.srWindow.Bottom += 1;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02008064 csbi.ColorTable[g_color_index_bg] = (COLORREF)save_console_bg_rgb;
8065 csbi.ColorTable[g_color_index_fg] = (COLORREF)save_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008066 if (has_csbiex)
8067 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8068# endif
8069}
8070
8071 void
8072control_console_color_rgb(void)
8073{
8074 if (USE_VTP)
8075 set_console_color_rgb();
8076 else
8077 reset_console_color_rgb();
8078}
8079
8080 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008081use_vtp(void)
8082{
8083 return USE_VTP;
8084}
8085
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008086 int
8087is_term_win32(void)
8088{
8089 return T_NAME != NULL && STRCMP(T_NAME, "win32") == 0;
8090}
8091
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01008092 int
8093has_vtp_working(void)
8094{
8095 return vtp_working;
8096}
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008097
Bram Moolenaar6902c0e2019-02-16 14:07:37 +01008098#endif
8099
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008100 int
8101has_conpty_working(void)
8102{
8103 return conpty_working;
8104}
8105
8106 int
Bram Moolenaar57da6982019-09-13 22:30:11 +02008107get_conpty_type(void)
8108{
8109 return conpty_type;
8110}
8111
8112 int
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008113is_conpty_stable(void)
8114{
8115 return conpty_stable;
8116}
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008117
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02008118 int
8119get_conpty_fix_type(void)
8120{
8121 return conpty_fix_type;
8122}
8123
Bram Moolenaarafde13b2019-04-28 19:46:49 +02008124#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008125 void
8126resize_console_buf(void)
8127{
8128 CONSOLE_SCREEN_BUFFER_INFO csbi;
8129 COORD coord;
8130 SMALL_RECT newsize;
8131
8132 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
8133 {
8134 coord.X = SRWIDTH(csbi.srWindow);
8135 coord.Y = SRHEIGHT(csbi.srWindow);
8136 SetConsoleScreenBufferSize(g_hConOut, coord);
8137
8138 newsize.Left = 0;
8139 newsize.Top = 0;
8140 newsize.Right = coord.X - 1;
8141 newsize.Bottom = coord.Y - 1;
8142 SetConsoleWindowInfo(g_hConOut, TRUE, &newsize);
8143
8144 SetConsoleScreenBufferSize(g_hConOut, coord);
8145 }
8146}
8147#endif