blob: d2d2fe7a309b84f66f9e609b2a12a99cdcb6c0a1 [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>
Bram Moolenaare7bebc42021-02-01 20:50:37 +010036# include <winternl.h>
Bram Moolenaar82881492012-11-20 16:53:39 +010037#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000038
39#undef chdir
40#ifdef __GNUC__
41# ifndef __MINGW32__
42# include <dirent.h>
43# endif
44#else
45# include <direct.h>
46#endif
47
Bram Moolenaar82881492012-11-20 16:53:39 +010048#ifndef PROTO
Bram Moolenaar651fca82021-11-29 20:39:38 +000049# if !defined(FEAT_GUI_MSWIN)
Bram Moolenaar82881492012-11-20 16:53:39 +010050# include <shellapi.h>
51# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000052#endif
53
Bram Moolenaarfb630902016-10-29 14:55:00 +020054#ifdef FEAT_JOB_CHANNEL
55# include <tlhelp32.h>
56#endif
57
Bram Moolenaar071d4272004-06-13 20:20:40 +000058#ifdef __MINGW32__
59# ifndef FROM_LEFT_1ST_BUTTON_PRESSED
60# define FROM_LEFT_1ST_BUTTON_PRESSED 0x0001
61# endif
62# ifndef RIGHTMOST_BUTTON_PRESSED
63# define RIGHTMOST_BUTTON_PRESSED 0x0002
64# endif
65# ifndef FROM_LEFT_2ND_BUTTON_PRESSED
66# define FROM_LEFT_2ND_BUTTON_PRESSED 0x0004
67# endif
68# ifndef FROM_LEFT_3RD_BUTTON_PRESSED
69# define FROM_LEFT_3RD_BUTTON_PRESSED 0x0008
70# endif
71# ifndef FROM_LEFT_4TH_BUTTON_PRESSED
72# define FROM_LEFT_4TH_BUTTON_PRESSED 0x0010
73# endif
74
75/*
76 * EventFlags
77 */
78# ifndef MOUSE_MOVED
79# define MOUSE_MOVED 0x0001
80# endif
81# ifndef DOUBLE_CLICK
82# define DOUBLE_CLICK 0x0002
83# endif
84#endif
85
Bram Moolenaar0f873732019-12-05 20:28:46 +010086// Record all output and all keyboard & mouse input
87// #define MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +000088
89#ifdef MCH_WRITE_DUMP
90FILE* fdDump = NULL;
91#endif
92
93/*
94 * When generating prototypes for Win32 on Unix, these lines make the syntax
95 * errors disappear. They do not need to be correct.
96 */
97#ifdef PROTO
Bram Moolenaar912bc4a2019-12-01 18:58:11 +010098# define WINAPI
Bram Moolenaar071d4272004-06-13 20:20:40 +000099typedef char * LPCSTR;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000100typedef char * LPWSTR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101typedef int ACCESS_MASK;
102typedef int BOOL;
103typedef int COLORREF;
104typedef int CONSOLE_CURSOR_INFO;
105typedef int COORD;
106typedef int DWORD;
107typedef int HANDLE;
Bram Moolenaaref269542016-01-19 13:22:12 +0100108typedef int LPHANDLE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109typedef int HDC;
110typedef int HFONT;
111typedef int HICON;
112typedef int HINSTANCE;
113typedef int HWND;
114typedef int INPUT_RECORD;
Bram Moolenaare0ab9792017-08-02 23:18:25 +0200115typedef int INT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000116typedef int KEY_EVENT_RECORD;
117typedef int LOGFONT;
118typedef int LPBOOL;
119typedef int LPCTSTR;
120typedef int LPDWORD;
121typedef int LPSTR;
122typedef int LPTSTR;
123typedef int LPVOID;
124typedef int MOUSE_EVENT_RECORD;
125typedef int PACL;
126typedef int PDWORD;
127typedef int PHANDLE;
128typedef int PRINTDLG;
129typedef int PSECURITY_DESCRIPTOR;
130typedef int PSID;
131typedef int SECURITY_INFORMATION;
132typedef int SHORT;
133typedef int SMALL_RECT;
134typedef int TEXTMETRIC;
135typedef int TOKEN_INFORMATION_CLASS;
136typedef int TRUSTEE;
137typedef int WORD;
138typedef int WCHAR;
139typedef void VOID;
Bram Moolenaar82881492012-11-20 16:53:39 +0100140typedef int BY_HANDLE_FILE_INFORMATION;
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +0200141typedef int SE_OBJECT_TYPE;
142typedef int PSNSECINFO;
143typedef int PSNSECINFOW;
Bram Moolenaarb8e0bdb2014-11-12 16:10:48 +0100144typedef int STARTUPINFO;
145typedef int PROCESS_INFORMATION;
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200146typedef int LPSECURITY_ATTRIBUTES;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100147# define __stdcall // empty
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148#endif
149
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200150#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100151// Win32 Console handles for input and output
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152static HANDLE g_hConIn = INVALID_HANDLE_VALUE;
153static HANDLE g_hConOut = INVALID_HANDLE_VALUE;
154
Bram Moolenaar0f873732019-12-05 20:28:46 +0100155// Win32 Screen buffer,coordinate,console I/O information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156static SMALL_RECT g_srScrollRegion;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100157static COORD g_coord; // 0-based, but external coords are 1-based
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158
Bram Moolenaar0f873732019-12-05 20:28:46 +0100159// The attribute of the screen when the editor was started
160static WORD g_attrDefault = 7; // lightgray text on black background
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161static WORD g_attrCurrent;
162
Bram Moolenaar0f873732019-12-05 20:28:46 +0100163static int g_fCBrkPressed = FALSE; // set by ctrl-break interrupt
164static int g_fCtrlCPressed = FALSE; // set when ctrl-C or ctrl-break detected
165static int g_fForceExit = FALSE; // set when forcefully exiting
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167static void scroll(unsigned cLines);
168static void set_scroll_region(unsigned left, unsigned top,
169 unsigned right, unsigned bottom);
Bram Moolenaar6982f422019-02-16 16:48:01 +0100170static void set_scroll_region_tb(unsigned top, unsigned bottom);
171static void set_scroll_region_lr(unsigned left, unsigned right);
172static void insert_lines(unsigned cLines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173static void delete_lines(unsigned cLines);
174static void gotoxy(unsigned x, unsigned y);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175static void standout(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176static int s_cursor_visible = TRUE;
177static int did_create_conin = FALSE;
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200178#endif
179#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180static int s_dont_use_vimrun = TRUE;
181static int need_vimrun_warning = FALSE;
182static char *vimrun_path = "vimrun ";
183#endif
184
Bram Moolenaar12b559e2013-06-12 22:41:37 +0200185static int win32_getattrs(char_u *name);
186static int win32_setattrs(char_u *name, int attrs);
187static int win32_set_archive(char_u *name);
188
Bram Moolenaard9ef1b82019-02-13 19:23:10 +0100189static int conpty_working = 0;
Bram Moolenaar57da6982019-09-13 22:30:11 +0200190static int conpty_type = 0;
Bram Moolenaard9ef1b82019-02-13 19:23:10 +0100191static int conpty_stable = 0;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +0200192static int conpty_fix_type = 0;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100193static void vtp_flag_init();
194
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200195#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar6902c0e2019-02-16 14:07:37 +0100196static int vtp_working = 0;
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100197static void vtp_init();
198static void vtp_exit();
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100199static void vtp_sgr_bulk(int arg);
200static void vtp_sgr_bulks(int argc, int *argv);
201
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200202static int wt_working = 0;
203static void wt_init();
204
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100205static guicolor_T save_console_bg_rgb;
206static guicolor_T save_console_fg_rgb;
Bram Moolenaardf543822020-01-30 11:53:59 +0100207static guicolor_T store_console_bg_rgb;
208static guicolor_T store_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100209
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +0200210static int g_color_index_bg = 0;
211static int g_color_index_fg = 7;
212
213# ifdef FEAT_TERMGUICOLORS
214static int default_console_color_bg = 0x000000; // black
215static int default_console_color_fg = 0xc0c0c0; // white
216# endif
217
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100218# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +0200219# define USE_VTP (vtp_working && is_term_win32() && (p_tgc || (!p_tgc && t_colors >= 256)))
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200220# define USE_WT (wt_working)
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100221# else
222# define USE_VTP 0
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200223# define USE_WT 0
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100224# endif
225
226static void set_console_color_rgb(void);
227static void reset_console_color_rgb(void);
Bram Moolenaardf543822020-01-30 11:53:59 +0100228static void restore_console_color_rgb(void);
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100229#endif
230
Bram Moolenaar0f873732019-12-05 20:28:46 +0100231// This flag is newly created from Windows 10
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100232#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
233# define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
234#endif
235
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200236#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100237static int suppress_winsize = 1; // don't fiddle with console
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238#endif
239
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200240static char_u *exe_path = NULL;
241
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100242static BOOL win8_or_later = FALSE;
243
K.Takata6e1d31e2022-02-03 13:05:32 +0000244#if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
245# define UChar UnicodeChar
246#else
247# define UChar uChar.UnicodeChar
248#endif
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200249
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200250#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100251// Dynamic loading for portability
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100252typedef struct _DYN_CONSOLE_SCREEN_BUFFER_INFOEX
253{
254 ULONG cbSize;
255 COORD dwSize;
256 COORD dwCursorPosition;
257 WORD wAttributes;
258 SMALL_RECT srWindow;
259 COORD dwMaximumWindowSize;
260 WORD wPopupAttributes;
261 BOOL bFullscreenSupported;
262 COLORREF ColorTable[16];
263} DYN_CONSOLE_SCREEN_BUFFER_INFOEX, *PDYN_CONSOLE_SCREEN_BUFFER_INFOEX;
264typedef BOOL (WINAPI *PfnGetConsoleScreenBufferInfoEx)(HANDLE, PDYN_CONSOLE_SCREEN_BUFFER_INFOEX);
265static PfnGetConsoleScreenBufferInfoEx pGetConsoleScreenBufferInfoEx;
266typedef BOOL (WINAPI *PfnSetConsoleScreenBufferInfoEx)(HANDLE, PDYN_CONSOLE_SCREEN_BUFFER_INFOEX);
267static PfnSetConsoleScreenBufferInfoEx pSetConsoleScreenBufferInfoEx;
268static BOOL has_csbiex = FALSE;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100269#endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100270
271/*
272 * Get version number including build number
273 */
274typedef BOOL (WINAPI *PfnRtlGetVersion)(LPOSVERSIONINFOW);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100275#define MAKE_VER(major, minor, build) \
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100276 (((major) << 24) | ((minor) << 16) | (build))
277
278 static DWORD
279get_build_number(void)
280{
281 OSVERSIONINFOW osver = {sizeof(OSVERSIONINFOW)};
282 HMODULE hNtdll;
283 PfnRtlGetVersion pRtlGetVersion;
284 DWORD ver = MAKE_VER(0, 0, 0);
285
286 hNtdll = GetModuleHandle("ntdll.dll");
287 if (hNtdll != NULL)
288 {
289 pRtlGetVersion =
290 (PfnRtlGetVersion)GetProcAddress(hNtdll, "RtlGetVersion");
291 pRtlGetVersion(&osver);
292 ver = MAKE_VER(min(osver.dwMajorVersion, 255),
293 min(osver.dwMinorVersion, 255),
294 min(osver.dwBuildNumber, 32767));
295 }
296 return ver;
297}
298
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200299#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200300 static BOOL
301is_ambiwidth_event(
302 INPUT_RECORD *ir)
303{
304 return ir->EventType == KEY_EVENT
305 && ir->Event.KeyEvent.bKeyDown
306 && ir->Event.KeyEvent.wRepeatCount == 1
307 && ir->Event.KeyEvent.wVirtualKeyCode == 0x12
308 && ir->Event.KeyEvent.wVirtualScanCode == 0x38
309 && ir->Event.KeyEvent.UChar == 0
310 && ir->Event.KeyEvent.dwControlKeyState == 2;
311}
312
313 static void
314make_ambiwidth_event(
315 INPUT_RECORD *down,
316 INPUT_RECORD *up)
317{
318 down->Event.KeyEvent.wVirtualKeyCode = 0;
319 down->Event.KeyEvent.wVirtualScanCode = 0;
320 down->Event.KeyEvent.UChar = up->Event.KeyEvent.UChar;
321 down->Event.KeyEvent.dwControlKeyState = 0;
322}
323
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100324/*
325 * Version of ReadConsoleInput() that works with IME.
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100326 * Works around problems on Windows 8.
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100327 */
328 static BOOL
329read_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100330 HANDLE hInput,
331 INPUT_RECORD *lpBuffer,
332 DWORD nLength,
333 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100334{
335 enum
336 {
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100337 IRSIZE = 10
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100338 };
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100339 static INPUT_RECORD s_irCache[IRSIZE];
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100340 static DWORD s_dwIndex = 0;
341 static DWORD s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100342 DWORD dwEvents;
Bram Moolenaardd415a62014-02-05 14:02:27 +0100343 int head;
344 int tail;
345 int i;
Bram Moolenaarbc970da2020-04-26 19:00:07 +0200346 static INPUT_RECORD s_irPseudo;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100347
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200348 if (nLength == -2)
349 return (s_dwMax > 0) ? TRUE : FALSE;
350
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100351 if (!win8_or_later)
352 {
353 if (nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200354 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
355 return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents);
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100356 }
357
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100358 if (s_dwMax == 0)
359 {
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200360 if (!USE_WT && nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200361 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200362 GetNumberOfConsoleInputEvents(hInput, &dwEvents);
363 if (dwEvents == 0 && nLength == -1)
364 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
365 ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents);
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100366 s_dwIndex = 0;
367 s_dwMax = dwEvents;
368 if (dwEvents == 0)
369 {
370 *lpEvents = 0;
371 return TRUE;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100372 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100373
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200374 for (i = s_dwIndex; i < (int)s_dwMax - 1; ++i)
375 if (is_ambiwidth_event(&s_irCache[i]))
376 make_ambiwidth_event(&s_irCache[i], &s_irCache[i + 1]);
377
Bram Moolenaardd415a62014-02-05 14:02:27 +0100378 if (s_dwMax > 1)
379 {
380 head = 0;
381 tail = s_dwMax - 1;
382 while (head != tail)
383 {
384 if (s_irCache[head].EventType == WINDOW_BUFFER_SIZE_EVENT
385 && s_irCache[head + 1].EventType
386 == WINDOW_BUFFER_SIZE_EVENT)
387 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100388 // Remove duplicate event to avoid flicker.
Bram Moolenaardd415a62014-02-05 14:02:27 +0100389 for (i = head; i < tail; ++i)
390 s_irCache[i] = s_irCache[i + 1];
391 --tail;
392 continue;
393 }
394 head++;
395 }
396 s_dwMax = tail + 1;
397 }
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100398 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100399
Bram Moolenaarbc970da2020-04-26 19:00:07 +0200400 if (s_irCache[s_dwIndex].EventType == KEY_EVENT)
401 {
402 if (s_irCache[s_dwIndex].Event.KeyEvent.wRepeatCount > 1)
403 {
404 s_irPseudo = s_irCache[s_dwIndex];
405 s_irPseudo.Event.KeyEvent.wRepeatCount = 1;
406 s_irCache[s_dwIndex].Event.KeyEvent.wRepeatCount--;
407 *lpBuffer = s_irPseudo;
408 *lpEvents = 1;
409 return TRUE;
410 }
411 }
412
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100413 *lpBuffer = s_irCache[s_dwIndex];
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200414 if (!(nLength == -1 || nLength == -2) && ++s_dwIndex >= s_dwMax)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100415 s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100416 *lpEvents = 1;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100417 return TRUE;
418}
419
420/*
421 * Version of PeekConsoleInput() that works with IME.
422 */
423 static BOOL
424peek_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100425 HANDLE hInput,
426 INPUT_RECORD *lpBuffer,
Bram Moolenaarbd67aac2019-09-21 23:09:04 +0200427 DWORD nLength UNUSED,
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100428 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100429{
K.Takata135e1522022-01-29 15:27:58 +0000430 return read_console_input(hInput, lpBuffer, (DWORD)-1, lpEvents);
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100431}
432
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100433# ifdef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200434 static DWORD
435msg_wait_for_multiple_objects(
436 DWORD nCount,
437 LPHANDLE pHandles,
438 BOOL fWaitAll,
439 DWORD dwMilliseconds,
440 DWORD dwWakeMask)
441{
K.Takata135e1522022-01-29 15:27:58 +0000442 if (read_console_input(NULL, NULL, (DWORD)-2, NULL))
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200443 return WAIT_OBJECT_0;
444 return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll,
445 dwMilliseconds, dwWakeMask);
446}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100447# endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200448
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100449# ifndef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200450 static DWORD
451wait_for_single_object(
452 HANDLE hHandle,
453 DWORD dwMilliseconds)
454{
K.Takata54119102022-02-03 13:33:03 +0000455 if (read_console_input(NULL, NULL, (DWORD)-2, NULL))
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200456 return WAIT_OBJECT_0;
457 return WaitForSingleObject(hHandle, dwMilliseconds);
458}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100459# endif
460#endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200461
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 static void
463get_exe_name(void)
464{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100465 // Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned
466 // as the maximum length that works (plus a NUL byte).
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100467#define MAX_ENV_PATH_LEN 8192
468 char temp[MAX_ENV_PATH_LEN];
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200469 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470
471 if (exe_name == NULL)
472 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100473 // store the name of the executable, may be used for $VIM
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100474 GetModuleFileName(NULL, temp, MAX_ENV_PATH_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475 if (*temp != NUL)
476 exe_name = FullName_save((char_u *)temp, FALSE);
477 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000478
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200479 if (exe_path == NULL && exe_name != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000480 {
Bram Moolenaar71ccd032020-06-12 22:59:11 +0200481 exe_path = vim_strnsave(exe_name, gettail_sep(exe_name) - exe_name);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200482 if (exe_path != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000483 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100484 // Append our starting directory to $PATH, so that when doing
485 // "!xxd" it's found in our starting directory. Needed because
486 // SearchPath() also looks there.
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200487 p = mch_getenv("PATH");
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100488 if (p == NULL
489 || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200490 {
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100491 if (p == NULL || *p == NUL)
492 temp[0] = NUL;
493 else
494 {
495 STRCPY(temp, p);
496 STRCAT(temp, ";");
497 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200498 STRCAT(temp, exe_path);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100499 vim_setenv((char_u *)"PATH", (char_u *)temp);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200500 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000501 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503}
504
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200505/*
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100506 * Unescape characters in "p" that appear in "escaped".
507 */
508 static void
509unescape_shellxquote(char_u *p, char_u *escaped)
510{
Bram Moolenaar4336cdf2012-02-29 13:58:47 +0100511 int l = (int)STRLEN(p);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100512 int n;
513
514 while (*p != NUL)
515 {
516 if (*p == '^' && vim_strchr(escaped, p[1]) != NULL)
517 mch_memmove(p, p + 1, l--);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100518 n = (*mb_ptr2len)(p);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100519 p += n;
520 l -= n;
521 }
522}
523
524/*
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200525 * Load library "name".
526 */
527 HINSTANCE
528vimLoadLib(char *name)
529{
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200530 HINSTANCE dll = NULL;
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200531
Bram Moolenaar3d0e7a92021-05-01 17:46:03 +0200532 // No need to load any library when registering OLE.
533 if (found_register_arg)
534 return dll;
535
Bram Moolenaar0f873732019-12-05 20:28:46 +0100536 // NOTE: Do not use mch_dirname() and mch_chdir() here, they may call
537 // vimLoadLib() recursively, which causes a stack overflow.
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200538 if (exe_path == NULL)
539 get_exe_name();
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200540 if (exe_path != NULL)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200541 {
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200542 WCHAR old_dirw[MAXPATHL];
543
544 if (GetCurrentDirectoryW(MAXPATHL, old_dirw) != 0)
545 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100546 // Change directory to where the executable is, both to make
547 // sure we find a .dll there and to avoid looking for a .dll
548 // in the current directory.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100549 SetCurrentDirectory((LPCSTR)exe_path);
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200550 dll = LoadLibrary(name);
551 SetCurrentDirectoryW(old_dirw);
552 return dll;
553 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200554 }
555 return dll;
556}
557
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200558#if defined(VIMDLL) || defined(PROTO)
559/*
560 * Check if the current executable file is for the GUI subsystem.
561 */
562 int
563mch_is_gui_executable(void)
564{
565 PBYTE pImage = (PBYTE)GetModuleHandle(NULL);
566 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)pImage;
567 PIMAGE_NT_HEADERS pPE;
568
569 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
570 return FALSE;
571 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
572 if (pPE->Signature != IMAGE_NT_SIGNATURE)
573 return FALSE;
574 if (pPE->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI)
575 return TRUE;
576 return FALSE;
577}
578#endif
579
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100580#if defined(DYNAMIC_ICONV) || defined(DYNAMIC_GETTEXT) || defined(PROTO)
581/*
582 * Get related information about 'funcname' which is imported by 'hInst'.
583 * If 'info' is 0, return the function address.
584 * If 'info' is 1, return the module name which the function is imported from.
585 */
586 static void *
587get_imported_func_info(HINSTANCE hInst, const char *funcname, int info)
588{
589 PBYTE pImage = (PBYTE)hInst;
590 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)hInst;
591 PIMAGE_NT_HEADERS pPE;
592 PIMAGE_IMPORT_DESCRIPTOR pImpDesc;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100593 PIMAGE_THUNK_DATA pIAT; // Import Address Table
594 PIMAGE_THUNK_DATA pINT; // Import Name Table
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100595 PIMAGE_IMPORT_BY_NAME pImpName;
596
597 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
598 return NULL;
599 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
600 if (pPE->Signature != IMAGE_NT_SIGNATURE)
601 return NULL;
602 pImpDesc = (PIMAGE_IMPORT_DESCRIPTOR)(pImage
603 + pPE->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT]
604 .VirtualAddress);
605 for (; pImpDesc->FirstThunk; ++pImpDesc)
606 {
607 if (!pImpDesc->OriginalFirstThunk)
608 continue;
609 pIAT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->FirstThunk);
610 pINT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->OriginalFirstThunk);
611 for (; pIAT->u1.Function; ++pIAT, ++pINT)
612 {
613 if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
614 continue;
615 pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage
616 + (UINT_PTR)(pINT->u1.AddressOfData));
617 if (strcmp((char *)pImpName->Name, funcname) == 0)
618 {
619 switch (info)
620 {
621 case 0:
622 return (void *)pIAT->u1.Function;
623 case 1:
624 return (void *)(pImage + pImpDesc->Name);
625 default:
626 return NULL;
627 }
628 }
629 }
630 }
631 return NULL;
632}
633
634/*
635 * Get the module handle which 'funcname' in 'hInst' is imported from.
636 */
637 HINSTANCE
638find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname)
639{
640 char *modulename;
641
642 modulename = (char *)get_imported_func_info(hInst, funcname, 1);
643 if (modulename != NULL)
644 return GetModuleHandleA(modulename);
645 return NULL;
646}
647
648/*
649 * Get the address of 'funcname' which is imported by 'hInst' DLL.
650 */
651 void *
652get_dll_import_func(HINSTANCE hInst, const char *funcname)
653{
654 return get_imported_func_info(hInst, funcname, 0);
655}
656#endif
657
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658#if defined(DYNAMIC_GETTEXT) || defined(PROTO)
659# ifndef GETTEXT_DLL
660# define GETTEXT_DLL "libintl.dll"
Bram Moolenaar7554c542018-10-06 15:03:15 +0200661# define GETTEXT_DLL_ALT1 "libintl-8.dll"
662# define GETTEXT_DLL_ALT2 "intl.dll"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +0100664// Dummy functions
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000665static char *null_libintl_gettext(const char *);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200666static char *null_libintl_ngettext(const char *, const char *, unsigned long n);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000667static char *null_libintl_textdomain(const char *);
668static char *null_libintl_bindtextdomain(const char *, const char *);
669static char *null_libintl_bind_textdomain_codeset(const char *, const char *);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100670static int null_libintl_wputenv(const wchar_t *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200672static HINSTANCE hLibintlDLL = NULL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000673char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200674char *(*dyn_libintl_ngettext)(const char *, const char *, unsigned long n)
675 = null_libintl_ngettext;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000676char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
677char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000679char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *)
680 = null_libintl_bind_textdomain_codeset;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100681int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682
683 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100684dyn_libintl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685{
686 int i;
687 static struct
688 {
689 char *name;
690 FARPROC *ptr;
691 } libintl_entry[] =
692 {
693 {"gettext", (FARPROC*)&dyn_libintl_gettext},
Bram Moolenaaree695f72016-08-03 22:08:45 +0200694 {"ngettext", (FARPROC*)&dyn_libintl_ngettext},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 {"textdomain", (FARPROC*)&dyn_libintl_textdomain},
696 {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
697 {NULL, NULL}
698 };
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100699 HINSTANCE hmsvcrt;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700
Bram Moolenaar7554c542018-10-06 15:03:15 +0200701 // No need to initialize twice.
702 if (hLibintlDLL != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703 return 1;
Bram Moolenaar7554c542018-10-06 15:03:15 +0200704 // Load gettext library (libintl.dll and other names).
Bram Moolenaar923e43b2016-01-28 15:07:38 +0100705 hLibintlDLL = vimLoadLib(GETTEXT_DLL);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100706# ifdef GETTEXT_DLL_ALT1
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100707 if (!hLibintlDLL)
Bram Moolenaar7554c542018-10-06 15:03:15 +0200708 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100709# endif
710# ifdef GETTEXT_DLL_ALT2
Bram Moolenaar7554c542018-10-06 15:03:15 +0200711 if (!hLibintlDLL)
712 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT2);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100713# endif
Bram Moolenaar938ee832016-01-24 15:36:03 +0100714 if (!hLibintlDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200716 if (p_verbose > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200718 verbose_enter();
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000719 semsg(_(e_could_not_load_library_str_str), GETTEXT_DLL, GetWin32Error());
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200720 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200722 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 }
724 for (i = 0; libintl_entry[i].name != NULL
725 && libintl_entry[i].ptr != NULL; ++i)
726 {
K.Takata54119102022-02-03 13:33:03 +0000727 if ((*libintl_entry[i].ptr = GetProcAddress(hLibintlDLL,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 libintl_entry[i].name)) == NULL)
729 {
730 dyn_libintl_end();
731 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000732 {
733 verbose_enter();
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000734 semsg(_(e_could_not_load_library_function_str), libintl_entry[i].name);
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000735 verbose_leave();
736 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 return 0;
738 }
739 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000740
Bram Moolenaar0f873732019-12-05 20:28:46 +0100741 // The bind_textdomain_codeset() function is optional.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000742 dyn_libintl_bind_textdomain_codeset = (void *)GetProcAddress(hLibintlDLL,
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000743 "bind_textdomain_codeset");
744 if (dyn_libintl_bind_textdomain_codeset == NULL)
745 dyn_libintl_bind_textdomain_codeset =
746 null_libintl_bind_textdomain_codeset;
747
Bram Moolenaar0f873732019-12-05 20:28:46 +0100748 // _wputenv() function for the libintl.dll is optional.
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100749 hmsvcrt = find_imported_module_by_funcname(hLibintlDLL, "getenv");
750 if (hmsvcrt != NULL)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100751 dyn_libintl_wputenv = (void *)GetProcAddress(hmsvcrt, "_wputenv");
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100752 if (dyn_libintl_wputenv == NULL || dyn_libintl_wputenv == _wputenv)
753 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100754
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 return 1;
756}
757
758 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100759dyn_libintl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760{
761 if (hLibintlDLL)
762 FreeLibrary(hLibintlDLL);
763 hLibintlDLL = NULL;
764 dyn_libintl_gettext = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200765 dyn_libintl_ngettext = null_libintl_ngettext;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 dyn_libintl_textdomain = null_libintl_textdomain;
767 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000768 dyn_libintl_bind_textdomain_codeset = null_libintl_bind_textdomain_codeset;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100769 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770}
771
772 static char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000773null_libintl_gettext(const char *msgid)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774{
775 return (char*)msgid;
776}
777
778 static char *
Bram Moolenaaree695f72016-08-03 22:08:45 +0200779null_libintl_ngettext(
780 const char *msgid,
781 const char *msgid_plural,
782 unsigned long n)
783{
Bram Moolenaarc90f2ae2016-08-04 22:00:15 +0200784 return (char *)(n == 1 ? msgid : msgid_plural);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200785}
786
Bram Moolenaaree695f72016-08-03 22:08:45 +0200787 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100788null_libintl_bindtextdomain(
789 const char *domainname UNUSED,
790 const char *dirname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791{
792 return NULL;
793}
794
795 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100796null_libintl_bind_textdomain_codeset(
797 const char *domainname UNUSED,
798 const char *codeset UNUSED)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000799{
800 return NULL;
801}
802
803 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100804null_libintl_textdomain(const char *domainname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805{
806 return NULL;
807}
808
Bram Moolenaare0ab9792017-08-02 23:18:25 +0200809 static int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100810null_libintl_wputenv(const wchar_t *envstring UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100811{
812 return 0;
813}
814
Bram Moolenaar0f873732019-12-05 20:28:46 +0100815#endif // DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816
Bram Moolenaar0f873732019-12-05 20:28:46 +0100817// This symbol is not defined in older versions of the SDK or Visual C++
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818
819#ifndef VER_PLATFORM_WIN32_WINDOWS
820# define VER_PLATFORM_WIN32_WINDOWS 1
821#endif
822
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823#ifdef HAVE_ACL
Bram Moolenaar82881492012-11-20 16:53:39 +0100824# ifndef PROTO
825# include <aclapi.h>
826# endif
Bram Moolenaar27515922013-06-29 15:36:26 +0200827# ifndef PROTECTED_DACL_SECURITY_INFORMATION
828# define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L
829# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830#endif
831
Bram Moolenaar27515922013-06-29 15:36:26 +0200832#ifdef HAVE_ACL
833/*
834 * Enables or disables the specified privilege.
835 */
836 static BOOL
837win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable)
838{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100839 BOOL bResult;
840 LUID luid;
841 HANDLE hToken;
842 TOKEN_PRIVILEGES tokenPrivileges;
Bram Moolenaar27515922013-06-29 15:36:26 +0200843
844 if (!OpenProcessToken(GetCurrentProcess(),
845 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
846 return FALSE;
847
848 if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid))
849 {
850 CloseHandle(hToken);
851 return FALSE;
852 }
853
Bram Moolenaar45500912014-07-09 20:51:07 +0200854 tokenPrivileges.PrivilegeCount = 1;
Bram Moolenaar27515922013-06-29 15:36:26 +0200855 tokenPrivileges.Privileges[0].Luid = luid;
856 tokenPrivileges.Privileges[0].Attributes = bEnable ?
857 SE_PRIVILEGE_ENABLED : 0;
858
859 bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges,
860 sizeof(TOKEN_PRIVILEGES), NULL, NULL);
861
862 CloseHandle(hToken);
863
864 return bResult && GetLastError() == ERROR_SUCCESS;
865}
866#endif
867
Bram Moolenaar29d2f452020-12-04 19:42:52 +0100868#ifdef _MSC_VER
869// Suppress the deprecation warning for using GetVersionEx().
870// It is needed for implementing "windowsversion()".
871# pragma warning(push)
872# pragma warning(disable: 4996)
873#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874/*
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200875 * Set "win8_or_later" and fill in "windowsVersion" if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876 */
877 void
878PlatformId(void)
879{
880 static int done = FALSE;
881
882 if (!done)
883 {
884 OSVERSIONINFO ovi;
885
886 ovi.dwOSVersionInfoSize = sizeof(ovi);
887 GetVersionEx(&ovi);
888
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200889#ifdef FEAT_EVAL
Bram Moolenaar0c1e3742019-12-27 13:49:24 +0100890 vim_snprintf(windowsVersion, sizeof(windowsVersion), "%d.%d",
891 (int)ovi.dwMajorVersion, (int)ovi.dwMinorVersion);
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200892#endif
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100893 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2)
894 || ovi.dwMajorVersion > 6)
895 win8_or_later = TRUE;
896
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897#ifdef HAVE_ACL
Bram Moolenaar0f873732019-12-05 20:28:46 +0100898 // Enable privilege for getting or setting SACLs.
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200899 win32_enable_privilege(SE_SECURITY_NAME, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900#endif
901 done = TRUE;
902 }
903}
Bram Moolenaar29d2f452020-12-04 19:42:52 +0100904#ifdef _MSC_VER
905# pragma warning(pop)
906#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200908#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100910# define SHIFT (SHIFT_PRESSED)
911# define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)
912# define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)
913# define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914
915
Bram Moolenaar0f873732019-12-05 20:28:46 +0100916// When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode.
917// We map function keys to their ANSI terminal equivalents, as produced
918// by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any
919// ANSI key with a value >= '\300' is nonstandard, but provided anyway
920// so that the user can have access to all SHIFT-, CTRL-, and ALT-
921// combinations of function/arrow/etc keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922
Bram Moolenaard6f676d2005-06-01 21:51:55 +0000923static const struct
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924{
925 WORD wVirtKey;
926 BOOL fAnsiKey;
927 int chAlone;
928 int chShift;
929 int chCtrl;
930 int chAlt;
931} VirtKeyMap[] =
932{
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200933// Key ANSI alone shift ctrl alt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, },
935
936 { VK_F1, TRUE, ';', 'T', '^', 'h', },
937 { VK_F2, TRUE, '<', 'U', '_', 'i', },
938 { VK_F3, TRUE, '=', 'V', '`', 'j', },
939 { VK_F4, TRUE, '>', 'W', 'a', 'k', },
940 { VK_F5, TRUE, '?', 'X', 'b', 'l', },
941 { VK_F6, TRUE, '@', 'Y', 'c', 'm', },
942 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', },
943 { VK_F8, TRUE, 'B', '[', 'e', 'o', },
944 { VK_F9, TRUE, 'C', '\\', 'f', 'p', },
945 { VK_F10, TRUE, 'D', ']', 'g', 'q', },
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200946 { VK_F11, TRUE, '\205', '\207', '\211', '\213', },
947 { VK_F12, TRUE, '\206', '\210', '\212', '\214', },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200949 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', },
950 { VK_UP, TRUE, 'H', '\304', '\305', '\306', },
951 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, // PgUp
952 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', },
953 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', },
954 { VK_END, TRUE, 'O', '\315', 'u', '\316', },
955 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', },
956 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, // PgDn
957 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', },
958 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', },
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100959 { VK_BACK, TRUE, 'x', 'y', 'z', '{', }, // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200961 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, // PrtScrn
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100963# if 0
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200964 // Most people don't have F13-F20, but what the hell...
965 { VK_F13, TRUE, '\332', '\333', '\334', '\335', },
966 { VK_F14, TRUE, '\336', '\337', '\340', '\341', },
967 { VK_F15, TRUE, '\342', '\343', '\344', '\345', },
968 { VK_F16, TRUE, '\346', '\347', '\350', '\351', },
969 { VK_F17, TRUE, '\352', '\353', '\354', '\355', },
970 { VK_F18, TRUE, '\356', '\357', '\360', '\361', },
971 { VK_F19, TRUE, '\362', '\363', '\364', '\365', },
972 { VK_F20, TRUE, '\366', '\367', '\370', '\371', },
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100973# endif
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200974 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, // keyp '+'
975 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, // keyp '-'
976 // { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, // keyp '/'
977 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, // keyp '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200979 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', },
980 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', },
981 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', },
982 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', },
983 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', },
984 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', },
985 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', },
986 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', },
987 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', },
988 // Sorry, out of number space! <negri>
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100989 { VK_NUMPAD9,TRUE, '\376', '\377', '|', '}', },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990};
991
992
Bram Moolenaar0f873732019-12-05 20:28:46 +0100993/*
994 * The return code indicates key code size.
995 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997win32_kbd_patch_key(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000998 KEY_EVENT_RECORD *pker)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999{
1000 UINT uMods = pker->dwControlKeyState;
1001 static int s_iIsDead = 0;
1002 static WORD awAnsiCode[2];
1003 static BYTE abKeystate[256];
1004
1005
1006 if (s_iIsDead == 2)
1007 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001008 pker->UChar = (WCHAR) awAnsiCode[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 s_iIsDead = 0;
1010 return 1;
1011 }
1012
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001013 if (pker->UChar != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 return 1;
1015
Bram Moolenaara80faa82020-04-12 19:37:17 +02001016 CLEAR_FIELD(abKeystate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017
Bram Moolenaar0f873732019-12-05 20:28:46 +01001018 // Clear any pending dead keys
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001019 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020
1021 if (uMods & SHIFT_PRESSED)
1022 abKeystate[VK_SHIFT] = 0x80;
1023 if (uMods & CAPSLOCK_ON)
1024 abKeystate[VK_CAPITAL] = 1;
1025
1026 if ((uMods & ALT_GR) == ALT_GR)
1027 {
1028 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] =
1029 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80;
1030 }
1031
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001032 s_iIsDead = ToUnicode(pker->wVirtualKeyCode, pker->wVirtualScanCode,
1033 abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034
1035 if (s_iIsDead > 0)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001036 pker->UChar = (WCHAR) awAnsiCode[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037
1038 return s_iIsDead;
1039}
1040
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041static BOOL g_fJustGotFocus = FALSE;
1042
1043/*
1044 * Decode a KEY_EVENT into one or two keystrokes
1045 */
1046 static BOOL
1047decode_key_event(
1048 KEY_EVENT_RECORD *pker,
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001049 WCHAR *pch,
1050 WCHAR *pch2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 int *pmodifiers,
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02001052 BOOL fDoPost UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053{
1054 int i;
1055 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL);
1056
1057 *pch = *pch2 = NUL;
1058 g_fJustGotFocus = FALSE;
1059
Bram Moolenaar0f873732019-12-05 20:28:46 +01001060 // ignore key up events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 if (!pker->bKeyDown)
1062 return FALSE;
1063
Bram Moolenaar0f873732019-12-05 20:28:46 +01001064 // ignore some keystrokes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 switch (pker->wVirtualKeyCode)
1066 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001067 // modifiers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 case VK_SHIFT:
1069 case VK_CONTROL:
Bram Moolenaar0f873732019-12-05 20:28:46 +01001070 case VK_MENU: // Alt key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 return FALSE;
1072
1073 default:
1074 break;
1075 }
1076
Bram Moolenaar0f873732019-12-05 20:28:46 +01001077 // special cases
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001078 if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001080 // Ctrl-6 is Ctrl-^
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 if (pker->wVirtualKeyCode == '6')
1082 {
1083 *pch = Ctrl_HAT;
1084 return TRUE;
1085 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001086 // Ctrl-2 is Ctrl-@
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 else if (pker->wVirtualKeyCode == '2')
1088 {
1089 *pch = NUL;
1090 return TRUE;
1091 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001092 // Ctrl-- is Ctrl-_
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 else if (pker->wVirtualKeyCode == 0xBD)
1094 {
1095 *pch = Ctrl__;
1096 return TRUE;
1097 }
1098 }
1099
Bram Moolenaar0f873732019-12-05 20:28:46 +01001100 // Shift-TAB
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED))
1102 {
1103 *pch = K_NUL;
1104 *pch2 = '\017';
1105 return TRUE;
1106 }
1107
K.Takataeeec2542021-06-02 13:28:16 +02001108 for (i = ARRAY_LENGTH(VirtKeyMap); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 {
1110 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode)
1111 {
1112 if (nModifs == 0)
1113 *pch = VirtKeyMap[i].chAlone;
1114 else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0)
1115 *pch = VirtKeyMap[i].chShift;
1116 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0)
1117 *pch = VirtKeyMap[i].chCtrl;
1118 else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0)
1119 *pch = VirtKeyMap[i].chAlt;
1120
1121 if (*pch != 0)
1122 {
1123 if (VirtKeyMap[i].fAnsiKey)
1124 {
1125 *pch2 = *pch;
1126 *pch = K_NUL;
1127 }
1128
1129 return TRUE;
1130 }
1131 }
1132 }
1133
1134 i = win32_kbd_patch_key(pker);
1135
1136 if (i < 0)
1137 *pch = NUL;
1138 else
1139 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001140 *pch = (i > 0) ? pker->UChar : NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141
1142 if (pmodifiers != NULL)
1143 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001144 // Pass on the ALT key as a modifier, but only when not combined
1145 // with CTRL (which is ALTGR).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0)
1147 *pmodifiers |= MOD_MASK_ALT;
1148
Bram Moolenaar0f873732019-12-05 20:28:46 +01001149 // Pass on SHIFT only for special keys, because we don't know when
1150 // it's already included with the character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 if ((nModifs & SHIFT) != 0 && *pch <= 0x20)
1152 *pmodifiers |= MOD_MASK_SHIFT;
1153
Bram Moolenaar0f873732019-12-05 20:28:46 +01001154 // Pass on CTRL only for non-special keys, because we don't know
1155 // when it's already included with the character. And not when
1156 // combined with ALT (which is ALTGR).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0
1158 && *pch >= 0x20 && *pch < 0x80)
1159 *pmodifiers |= MOD_MASK_CTRL;
1160 }
1161 }
1162
1163 return (*pch != NUL);
1164}
1165
Bram Moolenaar0f873732019-12-05 20:28:46 +01001166#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167
1168
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169/*
1170 * For the GUI the mouse handling is in gui_w32.c.
1171 */
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001172#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001174mch_setmouse(int on UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175{
1176}
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001177#else
Bram Moolenaar0f873732019-12-05 20:28:46 +01001178static int g_fMouseAvail = FALSE; // mouse present
1179static int g_fMouseActive = FALSE; // mouse enabled
1180static int g_nMouseClick = -1; // mouse status
1181static int g_xMouse; // mouse x coordinate
1182static int g_yMouse; // mouse y coordinate
Wez Furlong6ef5ab52021-05-30 19:29:41 +02001183static DWORD g_cmodein = 0; // Original console input mode
1184static DWORD g_cmodeout = 0; // Original console output mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185
1186/*
1187 * Enable or disable mouse input
1188 */
1189 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001190mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191{
1192 DWORD cmodein;
1193
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001194# ifdef VIMDLL
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001195 if (gui.in_use)
1196 return;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001197# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 if (!g_fMouseAvail)
1199 return;
1200
1201 g_fMouseActive = on;
1202 GetConsoleMode(g_hConIn, &cmodein);
1203
1204 if (g_fMouseActive)
Wez Furlong6ef5ab52021-05-30 19:29:41 +02001205 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 cmodein |= ENABLE_MOUSE_INPUT;
Wez Furlong6ef5ab52021-05-30 19:29:41 +02001207 cmodein &= ~ENABLE_QUICK_EDIT_MODE;
1208 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 else
Wez Furlong6ef5ab52021-05-30 19:29:41 +02001210 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 cmodein &= ~ENABLE_MOUSE_INPUT;
Wez Furlong6ef5ab52021-05-30 19:29:41 +02001212 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
1213 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214
Wez Furlong6ef5ab52021-05-30 19:29:41 +02001215 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216}
1217
Bram Moolenaar157d8132018-03-06 17:09:20 +01001218
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001219# if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar157d8132018-03-06 17:09:20 +01001220/*
1221 * Called when 'balloonevalterm' changed.
1222 */
1223 void
1224mch_bevalterm_changed(void)
1225{
1226 mch_setmouse(g_fMouseActive);
1227}
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001228# endif
Bram Moolenaar157d8132018-03-06 17:09:20 +01001229
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230/*
1231 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT,
1232 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse
1233 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG
1234 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type,
1235 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick,
1236 * and we return the mouse position in g_xMouse and g_yMouse.
1237 *
1238 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more
1239 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only
1240 * by MOUSE_LEFT, _MIDDLE, or _RIGHT.
1241 *
1242 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE,
1243 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, ....
1244 *
1245 * Windows will send us MOUSE_MOVED notifications whenever the mouse
1246 * moves, even if it stays within the same character cell. We ignore
1247 * all MOUSE_MOVED messages if the position hasn't really changed, and
1248 * we ignore all MOUSE_MOVED messages where no button is held down (i.e.,
1249 * we're only interested in MOUSE_DRAG).
1250 *
1251 * All of this is complicated by the code that fakes MOUSE_MIDDLE on
1252 * 2-button mouses by pressing the left & right buttons simultaneously.
1253 * In practice, it's almost impossible to click both at the same time,
1254 * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE
1255 * in such cases, if the user is clicking quickly.
1256 */
1257 static BOOL
1258decode_mouse_event(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001259 MOUSE_EVENT_RECORD *pmer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260{
1261 static int s_nOldButton = -1;
1262 static int s_nOldMouseClick = -1;
1263 static int s_xOldMouse = -1;
1264 static int s_yOldMouse = -1;
1265 static linenr_T s_old_topline = 0;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001266# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 static int s_old_topfill = 0;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001268# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 static int s_cClicks = 1;
1270 static BOOL s_fReleased = TRUE;
1271 static DWORD s_dwLastClickTime = 0;
1272 static BOOL s_fNextIsMiddle = FALSE;
1273
Bram Moolenaar0f873732019-12-05 20:28:46 +01001274 static DWORD cButtons = 0; // number of buttons supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275
1276 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED;
1277 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED;
1278 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED;
1279 const DWORD LEFT_RIGHT = LEFT | RIGHT;
1280
1281 int nButton;
1282
1283 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons))
1284 cButtons = 2;
1285
1286 if (!g_fMouseAvail || !g_fMouseActive)
1287 {
1288 g_nMouseClick = -1;
1289 return FALSE;
1290 }
1291
Bram Moolenaar0f873732019-12-05 20:28:46 +01001292 // get a spurious MOUSE_EVENT immediately after receiving focus; ignore
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 if (g_fJustGotFocus)
1294 {
1295 g_fJustGotFocus = FALSE;
1296 return FALSE;
1297 }
1298
Bram Moolenaar0f873732019-12-05 20:28:46 +01001299 // unprocessed mouse click?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 if (g_nMouseClick != -1)
1301 return TRUE;
1302
1303 nButton = -1;
1304 g_xMouse = pmer->dwMousePosition.X;
1305 g_yMouse = pmer->dwMousePosition.Y;
1306
1307 if (pmer->dwEventFlags == MOUSE_MOVED)
1308 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001309 // Ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these
1310 // events even when the mouse moves only within a char cell.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse)
1312 return FALSE;
1313 }
1314
Bram Moolenaar0f873732019-12-05 20:28:46 +01001315 // If no buttons are pressed...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0)
1317 {
Bram Moolenaar157d8132018-03-06 17:09:20 +01001318 nButton = MOUSE_RELEASE;
1319
Bram Moolenaar0f873732019-12-05 20:28:46 +01001320 // If the last thing returned was MOUSE_RELEASE, ignore this
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 if (s_fReleased)
Bram Moolenaar157d8132018-03-06 17:09:20 +01001322 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001323# ifdef FEAT_BEVAL_TERM
Bram Moolenaar0f873732019-12-05 20:28:46 +01001324 // do return mouse move events when we want them
Bram Moolenaar157d8132018-03-06 17:09:20 +01001325 if (p_bevalterm)
1326 nButton = MOUSE_DRAG;
1327 else
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001328# endif
Bram Moolenaar157d8132018-03-06 17:09:20 +01001329 return FALSE;
1330 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 s_fReleased = TRUE;
1333 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001334 else // one or more buttons pressed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001336 // on a 2-button mouse, hold down left and right buttons
1337 // simultaneously to get MIDDLE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
1339 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG)
1340 {
1341 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT);
1342
Bram Moolenaar0f873732019-12-05 20:28:46 +01001343 // if either left or right button only is pressed, see if the
1344 // next mouse event has both of them pressed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 if (dwLR == LEFT || dwLR == RIGHT)
1346 {
1347 for (;;)
1348 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001349 // wait a short time for next input event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 if (WaitForSingleObject(g_hConIn, p_mouset / 3)
1351 != WAIT_OBJECT_0)
1352 break;
1353 else
1354 {
1355 DWORD cRecords = 0;
1356 INPUT_RECORD ir;
1357 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent;
1358
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001359 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360
1361 if (cRecords == 0 || ir.EventType != MOUSE_EVENT
1362 || !(pmer2->dwButtonState & LEFT_RIGHT))
1363 break;
1364 else
1365 {
1366 if (pmer2->dwEventFlags != MOUSE_MOVED)
1367 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001368 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369
1370 return decode_mouse_event(pmer2);
1371 }
1372 else if (s_xOldMouse == pmer2->dwMousePosition.X &&
1373 s_yOldMouse == pmer2->dwMousePosition.Y)
1374 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001375 // throw away spurious mouse move
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001376 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377
Bram Moolenaar0f873732019-12-05 20:28:46 +01001378 // are there any more mouse events in queue?
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001379 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380
1381 if (cRecords==0 || ir.EventType != MOUSE_EVENT)
1382 break;
1383 }
1384 else
1385 break;
1386 }
1387 }
1388 }
1389 }
1390 }
1391
1392 if (s_fNextIsMiddle)
1393 {
1394 nButton = (pmer->dwEventFlags == MOUSE_MOVED)
1395 ? MOUSE_DRAG : MOUSE_MIDDLE;
1396 s_fNextIsMiddle = FALSE;
1397 }
1398 else if (cButtons == 2 &&
1399 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT))
1400 {
1401 nButton = MOUSE_MIDDLE;
1402
1403 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED)
1404 {
1405 s_fNextIsMiddle = TRUE;
1406 nButton = MOUSE_RELEASE;
1407 }
1408 }
1409 else if ((pmer->dwButtonState & LEFT) == LEFT)
1410 nButton = MOUSE_LEFT;
1411 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE)
1412 nButton = MOUSE_MIDDLE;
1413 else if ((pmer->dwButtonState & RIGHT) == RIGHT)
1414 nButton = MOUSE_RIGHT;
1415
1416 if (! s_fReleased && ! s_fNextIsMiddle
1417 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG)
1418 return FALSE;
1419
1420 s_fReleased = s_fNextIsMiddle;
1421 }
1422
1423 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK)
1424 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001425 // button pressed or released, without mouse moving
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426 if (nButton != -1 && nButton != MOUSE_RELEASE)
1427 {
1428 DWORD dwCurrentTime = GetTickCount();
1429
1430 if (s_xOldMouse != g_xMouse
1431 || s_yOldMouse != g_yMouse
1432 || s_nOldButton != nButton
1433 || s_old_topline != curwin->w_topline
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001434# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 || s_old_topfill != curwin->w_topfill
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001436# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset)
1438 {
1439 s_cClicks = 1;
1440 }
1441 else if (++s_cClicks > 4)
1442 {
1443 s_cClicks = 1;
1444 }
1445
1446 s_dwLastClickTime = dwCurrentTime;
1447 }
1448 }
1449 else if (pmer->dwEventFlags == MOUSE_MOVED)
1450 {
1451 if (nButton != -1 && nButton != MOUSE_RELEASE)
1452 nButton = MOUSE_DRAG;
1453
1454 s_cClicks = 1;
1455 }
1456
1457 if (nButton == -1)
1458 return FALSE;
1459
1460 if (nButton != MOUSE_RELEASE)
1461 s_nOldButton = nButton;
1462
1463 g_nMouseClick = nButton;
1464
1465 if (pmer->dwControlKeyState & SHIFT_PRESSED)
1466 g_nMouseClick |= MOUSE_SHIFT;
1467 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
1468 g_nMouseClick |= MOUSE_CTRL;
1469 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
1470 g_nMouseClick |= MOUSE_ALT;
1471
1472 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE)
1473 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks);
1474
Bram Moolenaar0f873732019-12-05 20:28:46 +01001475 // only pass on interesting (i.e., different) mouse events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476 if (s_xOldMouse == g_xMouse
1477 && s_yOldMouse == g_yMouse
1478 && s_nOldMouseClick == g_nMouseClick)
1479 {
1480 g_nMouseClick = -1;
1481 return FALSE;
1482 }
1483
1484 s_xOldMouse = g_xMouse;
1485 s_yOldMouse = g_yMouse;
1486 s_old_topline = curwin->w_topline;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001487# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 s_old_topfill = curwin->w_topfill;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001489# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 s_nOldMouseClick = g_nMouseClick;
1491
1492 return TRUE;
1493}
1494
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001495#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496
1497
1498#ifdef MCH_CURSOR_SHAPE
1499/*
1500 * Set the shape of the cursor.
1501 * 'thickness' can be from 1 (thin) to 99 (block)
1502 */
1503 static void
1504mch_set_cursor_shape(int thickness)
1505{
1506 CONSOLE_CURSOR_INFO ConsoleCursorInfo;
1507 ConsoleCursorInfo.dwSize = thickness;
1508 ConsoleCursorInfo.bVisible = s_cursor_visible;
1509
1510 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
1511 if (s_cursor_visible)
1512 SetConsoleCursorPosition(g_hConOut, g_coord);
1513}
1514
1515 void
1516mch_update_cursor(void)
1517{
1518 int idx;
1519 int thickness;
1520
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001521# ifdef VIMDLL
1522 if (gui.in_use)
1523 return;
1524# endif
1525
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 /*
1527 * How the cursor is drawn depends on the current mode.
1528 */
1529 idx = get_shape_idx(FALSE);
1530
1531 if (shape_table[idx].shape == SHAPE_BLOCK)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001532 thickness = 99; // 100 doesn't work on W95
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 else
1534 thickness = shape_table[idx].percentage;
1535 mch_set_cursor_shape(thickness);
1536}
1537#endif
1538
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001539#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540/*
1541 * Handle FOCUS_EVENT.
1542 */
1543 static void
1544handle_focus_event(INPUT_RECORD ir)
1545{
1546 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus;
1547 ui_focus_change((int)g_fJustGotFocus);
1548}
1549
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001550static void ResizeConBuf(HANDLE hConsole, COORD coordScreen);
1551
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552/*
1553 * Wait until console input from keyboard or mouse is available,
1554 * or the time is up.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001555 * When "ignore_input" is TRUE even wait when input is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 * Return TRUE if something is available FALSE if not.
1557 */
1558 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001559WaitForChar(long msec, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560{
1561 DWORD dwNow = 0, dwEndTime = 0;
1562 INPUT_RECORD ir;
1563 DWORD cRecords;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001564 WCHAR ch, ch2;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001565# ifdef FEAT_TIMERS
Bram Moolenaar40b1b542016-04-20 20:18:23 +02001566 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001567# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568
1569 if (msec > 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001570 // Wait until the specified time has elapsed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 dwEndTime = GetTickCount() + msec;
1572 else if (msec < 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001573 // Wait forever.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 dwEndTime = INFINITE;
1575
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01001576 // We need to loop until the end of the time period, because
1577 // we might get multiple unusable mouse events in that time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 for (;;)
1579 {
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001580 // Only process messages when waiting.
1581 if (msec != 0)
1582 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001583# ifdef MESSAGE_QUEUE
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001584 parse_queued_messages();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001585# endif
1586# ifdef FEAT_MZSCHEME
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001587 mzvim_check_threads();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001588# endif
1589# ifdef FEAT_CLIENTSERVER
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001590 serverProcessPendingMessages();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001591# endif
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001592 }
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001593
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001594 if (g_nMouseClick != -1
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001595# ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001596 || (!ignore_input && input_available())
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001597# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 )
1599 return TRUE;
1600
1601 if (msec > 0)
1602 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001603 // If the specified wait time has passed, return. Beware that
1604 // GetTickCount() may wrap around (overflow).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 dwNow = GetTickCount();
Bram Moolenaarb7512b72013-08-10 12:45:09 +02001606 if ((int)(dwNow - dwEndTime) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607 break;
1608 }
1609 if (msec != 0)
1610 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001611 DWORD dwWaitTime = dwEndTime - dwNow;
1612
Bram Moolenaarc478ee32020-12-01 21:27:51 +01001613 // Don't wait for more than 11 msec to avoid dropping characters,
1614 // check channel while waiting for input and handle a callback from
1615 // 'balloonexpr'.
1616 if (dwWaitTime > 11)
1617 dwWaitTime = 11;
1618
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001619# ifdef FEAT_MZSCHEME
Bram Moolenaarc478ee32020-12-01 21:27:51 +01001620 if (mzthreads_allowed() && p_mzq > 0 && (long)dwWaitTime > p_mzq)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001621 dwWaitTime = p_mzq; // don't wait longer than 'mzquantum'
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001622# endif
1623# ifdef FEAT_TIMERS
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001624 // When waiting very briefly don't trigger timers.
1625 if (dwWaitTime > 10)
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001626 {
1627 long due_time;
1628
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001629 // Trigger timers and then get the time in msec until the next
1630 // one is due. Wait up to that time.
1631 due_time = check_due_timer();
1632 if (typebuf.tb_change_cnt != tb_change_cnt)
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001633 {
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001634 // timer may have used feedkeys().
1635 return FALSE;
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001636 }
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001637 if (due_time > 0 && dwWaitTime > (DWORD)due_time)
1638 dwWaitTime = due_time;
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001639 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001640# endif
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001641 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001642# ifdef FEAT_CLIENTSERVER
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001643 // Wait for either an event on the console input or a
1644 // message in the client-server window.
1645 msg_wait_for_multiple_objects(1, &g_hConIn, FALSE,
1646 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001647# else
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001648 wait_for_single_object(g_hConIn, dwWaitTime)
1649 != WAIT_OBJECT_0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001650# endif
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001651 )
1652 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 }
1654
1655 cRecords = 0;
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001656 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001658# ifdef FEAT_MBYTE_IME
matveyt4eb19142021-05-20 11:54:10 +02001659 // May have to redraw if the cursor ends up in the wrong place.
1660 // Only when not peeking.
1661 if (State & CMDLINE && msg_row == Rows - 1 && msec != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 {
1663 CONSOLE_SCREEN_BUFFER_INFO csbi;
1664
1665 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
1666 {
1667 if (csbi.dwCursorPosition.Y != msg_row)
1668 {
matveyte08795e2021-05-07 15:00:17 +02001669 // The screen is now messed up, must redraw the command
1670 // line and later all the windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 redraw_all_later(CLEAR);
matveyte08795e2021-05-07 15:00:17 +02001672 compute_cmdrow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 redrawcmd();
1674 }
1675 }
1676 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001677# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678
1679 if (cRecords > 0)
1680 {
1681 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown)
1682 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001683# ifdef FEAT_MBYTE_IME
Bram Moolenaar0f873732019-12-05 20:28:46 +01001684 // Windows IME sends two '\n's with only one 'ENTER'. First:
1685 // wVirtualKeyCode == 13. second: wVirtualKeyCode == 0
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001686 if (ir.Event.KeyEvent.UChar == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 && ir.Event.KeyEvent.wVirtualKeyCode == 13)
1688 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001689 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 continue;
1691 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001692# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2,
1694 NULL, FALSE))
1695 return TRUE;
1696 }
1697
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001698 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699
1700 if (ir.EventType == FOCUS_EVENT)
1701 handle_focus_event(ir);
1702 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
Bram Moolenaarc33ecb22018-02-11 16:40:45 +01001703 {
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001704 COORD dwSize = ir.Event.WindowBufferSizeEvent.dwSize;
1705
Bram Moolenaar36698e32019-12-11 22:57:40 +01001706 // Only call shell_resized() when the size actually changed to
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001707 // avoid the screen is cleared.
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001708 if (dwSize.X != Columns || dwSize.Y != Rows)
1709 {
1710 CONSOLE_SCREEN_BUFFER_INFO csbi;
1711 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
Bram Moolenaar36698e32019-12-11 22:57:40 +01001712 dwSize.X = csbi.srWindow.Right - csbi.srWindow.Left + 1;
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001713 dwSize.Y = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
Bram Moolenaar36698e32019-12-11 22:57:40 +01001714 if (dwSize.X != Columns || dwSize.Y != Rows)
1715 {
1716 ResizeConBuf(g_hConOut, dwSize);
1717 shell_resized();
1718 }
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001719 }
Bram Moolenaarc33ecb22018-02-11 16:40:45 +01001720 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 else if (ir.EventType == MOUSE_EVENT
1722 && decode_mouse_event(&ir.Event.MouseEvent))
1723 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 }
1725 else if (msec == 0)
1726 break;
1727 }
1728
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001729# ifdef FEAT_CLIENTSERVER
Bram Moolenaar0f873732019-12-05 20:28:46 +01001730 // Something might have been received while we were waiting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 if (input_available())
1732 return TRUE;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001733# endif
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001734
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 return FALSE;
1736}
1737
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738/*
1739 * return non-zero if a character is available
1740 */
1741 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001742mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001744# ifdef VIMDLL
1745 if (gui.in_use)
1746 return TRUE;
1747# endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001748 return WaitForChar(0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001750
1751# if defined(FEAT_TERMINAL) || defined(PROTO)
1752/*
1753 * Check for any pending input or messages.
1754 */
1755 int
1756mch_check_messages(void)
1757{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001758# ifdef VIMDLL
1759 if (gui.in_use)
1760 return TRUE;
1761# endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001762 return WaitForChar(0L, TRUE);
1763}
1764# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765
1766/*
1767 * Create the console input. Used when reading stdin doesn't work.
1768 */
1769 static void
1770create_conin(void)
1771{
1772 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE,
1773 FILE_SHARE_READ|FILE_SHARE_WRITE,
1774 (LPSECURITY_ATTRIBUTES) NULL,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001775 OPEN_EXISTING, 0, (HANDLE)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 did_create_conin = TRUE;
1777}
1778
1779/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001780 * Get a keystroke or a mouse event, use a blocking wait.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001782 static WCHAR
1783tgetch(int *pmodifiers, WCHAR *pch2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784{
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001785 WCHAR ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786
1787 for (;;)
1788 {
1789 INPUT_RECORD ir;
1790 DWORD cRecords = 0;
1791
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001792# ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001793 (void)WaitForChar(-1L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794 if (input_available())
1795 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796 if (g_nMouseClick != -1)
1797 return 0;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001798# endif
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001799 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 {
1801 if (did_create_conin)
1802 read_error_exit();
1803 create_conin();
1804 continue;
1805 }
1806
1807 if (ir.EventType == KEY_EVENT)
1808 {
1809 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2,
1810 pmodifiers, TRUE))
1811 return ch;
1812 }
1813 else if (ir.EventType == FOCUS_EVENT)
1814 handle_focus_event(ir);
1815 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
1816 shell_resized();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 else if (ir.EventType == MOUSE_EVENT)
1818 {
1819 if (decode_mouse_event(&ir.Event.MouseEvent))
1820 return 0;
1821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 }
1823}
Bram Moolenaar0f873732019-12-05 20:28:46 +01001824#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825
1826
1827/*
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02001828 * mch_inchar(): low-level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 * Get one or more characters from the keyboard or the mouse.
1830 * If time == 0, do not wait for characters.
1831 * If time == n, wait a short time for characters.
1832 * If time == -1, wait forever for characters.
1833 * Returns the number of characters read into buf.
1834 */
1835 int
1836mch_inchar(
Bram Moolenaar1266d672017-02-01 13:43:36 +01001837 char_u *buf UNUSED,
1838 int maxlen UNUSED,
1839 long time UNUSED,
1840 int tb_change_cnt UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001842#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843
1844 int len;
1845 int c;
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001846# ifdef VIMDLL
1847// Extra space for maximum three CSIs. E.g. U+1B6DB -> 0xF0 0x9B 0x9B 0x9B.
1848# define TYPEAHEADSPACE 6
1849# else
1850# define TYPEAHEADSPACE 0
1851# endif
1852# define TYPEAHEADLEN (20 + TYPEAHEADSPACE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001853 static char_u typeahead[TYPEAHEADLEN]; // previously typed bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 static int typeaheadlen = 0;
1855
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001856# ifdef VIMDLL
1857 if (gui.in_use)
1858 return 0;
1859# endif
1860
Bram Moolenaar0f873732019-12-05 20:28:46 +01001861 // First use any typeahead that was kept because "buf" was too small.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 if (typeaheadlen > 0)
1863 goto theend;
1864
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 if (time >= 0)
1866 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001867 if (!WaitForChar(time, FALSE)) // no character available
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001870 else // time == -1, wait forever
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001872 mch_set_winsize_now(); // Allow winsize changes from now on
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873
Bram Moolenaar3918c952005-03-15 22:34:55 +00001874 /*
1875 * If there is no character available within 2 seconds (default)
1876 * write the autoscript file to disk. Or cause the CursorHold event
1877 * to be triggered.
1878 */
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001879 if (!WaitForChar(p_ut, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 {
Bram Moolenaard35f9712005-12-18 22:02:33 +00001881 if (trigger_cursorhold() && maxlen >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 {
Bram Moolenaar3918c952005-03-15 22:34:55 +00001883 buf[0] = K_SPECIAL;
1884 buf[1] = KS_EXTRA;
1885 buf[2] = (int)KE_CURSORHOLD;
1886 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 }
Bram Moolenaar702517d2005-06-27 22:34:07 +00001888 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 }
1890 }
1891
1892 /*
1893 * Try to read as many characters as there are, until the buffer is full.
1894 */
1895
Bram Moolenaar0f873732019-12-05 20:28:46 +01001896 // we will get at least one key. Get more if they are available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 g_fCBrkPressed = FALSE;
1898
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001899# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 if (fdDump)
1901 fputc('[', fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001902# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903
Bram Moolenaar0f873732019-12-05 20:28:46 +01001904 // Keep looping until there is something in the typeahead buffer and more
1905 // to get and still room in the buffer (up to two bytes for a char and
1906 // three bytes for a modifier).
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001907 while ((typeaheadlen == 0 || WaitForChar(0L, FALSE))
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001908 && typeaheadlen + 5 + TYPEAHEADSPACE <= TYPEAHEADLEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 {
1910 if (typebuf_changed(tb_change_cnt))
1911 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001912 // "buf" may be invalid now if a client put something in the
1913 // typeahead buffer and "buf" is in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 typeaheadlen = 0;
1915 break;
1916 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 if (g_nMouseClick != -1)
1918 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001919# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 if (fdDump)
1921 fprintf(fdDump, "{%02x @ %d, %d}",
1922 g_nMouseClick, g_xMouse, g_yMouse);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001923# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 typeahead[typeaheadlen++] = ESC + 128;
1925 typeahead[typeaheadlen++] = 'M';
1926 typeahead[typeaheadlen++] = g_nMouseClick;
1927 typeahead[typeaheadlen++] = g_xMouse + '!';
1928 typeahead[typeaheadlen++] = g_yMouse + '!';
1929 g_nMouseClick = -1;
1930 }
1931 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001933 WCHAR ch2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 int modifiers = 0;
1935
1936 c = tgetch(&modifiers, &ch2);
1937
1938 if (typebuf_changed(tb_change_cnt))
1939 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001940 // "buf" may be invalid now if a client put something in the
1941 // typeahead buffer and "buf" is in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 typeaheadlen = 0;
1943 break;
1944 }
1945
1946 if (c == Ctrl_C && ctrl_c_interrupts)
1947 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001948# if defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 trash_input_buf();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001950# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 got_int = TRUE;
1952 }
1953
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 if (g_nMouseClick == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 {
1956 int n = 1;
1957
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001958 if (ch2 == NUL)
1959 {
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001960 int i, j;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001961 char_u *p;
1962 WCHAR ch[2];
1963
1964 ch[0] = c;
Bram Moolenaar0f873732019-12-05 20:28:46 +01001965 if (c >= 0xD800 && c <= 0xDBFF) // High surrogate
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001966 {
1967 ch[1] = tgetch(&modifiers, &ch2);
1968 n++;
1969 }
1970 p = utf16_to_enc(ch, &n);
1971 if (p != NULL)
1972 {
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001973 for (i = 0, j = 0; i < n; i++)
1974 {
1975 typeahead[typeaheadlen + j++] = p[i];
1976# ifdef VIMDLL
1977 if (p[i] == CSI)
1978 {
1979 typeahead[typeaheadlen + j++] = KS_EXTRA;
1980 typeahead[typeaheadlen + j++] = KE_CSI;
1981 }
1982# endif
1983 }
1984 n = j;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001985 vim_free(p);
1986 }
1987 }
1988 else
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001989 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001990 typeahead[typeaheadlen] = c;
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001991# ifdef VIMDLL
1992 if (c == CSI)
1993 {
1994 typeahead[typeaheadlen + 1] = KS_EXTRA;
1995 typeahead[typeaheadlen + 2] = KE_CSI;
1996 n = 3;
1997 }
1998# endif
1999 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 if (ch2 != NUL)
2001 {
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +02002002 if (c == K_NUL)
Bram Moolenaarfeeb4d02017-12-05 15:14:46 +01002003 {
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +02002004 switch (ch2)
2005 {
2006 case (WCHAR)'\324': // SHIFT+Insert
2007 case (WCHAR)'\325': // CTRL+Insert
2008 case (WCHAR)'\327': // SHIFT+Delete
2009 case (WCHAR)'\330': // CTRL+Delete
2010 typeahead[typeaheadlen + n] = (char_u)ch2;
2011 n++;
2012 break;
2013
2014 default:
2015 typeahead[typeaheadlen + n] = 3;
2016 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
2017 n += 2;
2018 break;
2019 }
Bram Moolenaarfeeb4d02017-12-05 15:14:46 +01002020 }
2021 else
2022 {
2023 typeahead[typeaheadlen + n] = 3;
2024 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
2025 n += 2;
2026 }
Bram Moolenaar45500912014-07-09 20:51:07 +02002027 }
2028
Bram Moolenaar0f873732019-12-05 20:28:46 +01002029 // Use the ALT key to set the 8th bit of the character
2030 // when it's one byte, the 8th bit isn't set yet and not
2031 // using a double-byte encoding (would become a lead
2032 // byte).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 if ((modifiers & MOD_MASK_ALT)
2034 && n == 1
2035 && (typeahead[typeaheadlen] & 0x80) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 )
2038 {
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00002039 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
2040 typeahead + typeaheadlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 modifiers &= ~MOD_MASK_ALT;
2042 }
2043
2044 if (modifiers != 0)
2045 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002046 // Prepend modifiers to the character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 mch_memmove(typeahead + typeaheadlen + 3,
2048 typeahead + typeaheadlen, n);
2049 typeahead[typeaheadlen++] = K_SPECIAL;
2050 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
2051 typeahead[typeaheadlen++] = modifiers;
2052 }
2053
2054 typeaheadlen += n;
2055
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002056# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 if (fdDump)
2058 fputc(c, fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002059# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 }
2061 }
2062 }
2063
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002064# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 if (fdDump)
2066 {
2067 fputs("]\n", fdDump);
2068 fflush(fdDump);
2069 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002070# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072theend:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002073 // Move typeahead to "buf", as much as fits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 len = 0;
2075 while (len < maxlen && typeaheadlen > 0)
2076 {
2077 buf[len++] = typeahead[0];
2078 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
2079 }
K.Takata6e1d31e2022-02-03 13:05:32 +00002080# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar7ca86fe2020-09-03 19:25:11 +02002081 if (len > 0)
2082 {
2083 buf[len] = NUL;
2084 ch_log(NULL, "raw key input: \"%s\"", buf);
2085 }
K.Takata6e1d31e2022-02-03 13:05:32 +00002086# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 return len;
2088
Bram Moolenaar0f873732019-12-05 20:28:46 +01002089#else // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 return 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002091#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092}
2093
Bram Moolenaar82881492012-11-20 16:53:39 +01002094#ifndef PROTO
2095# ifndef __MINGW32__
Bram Moolenaar0f873732019-12-05 20:28:46 +01002096# include <shellapi.h> // required for FindExecutable()
Bram Moolenaar82881492012-11-20 16:53:39 +01002097# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098#endif
2099
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002100/*
Bram Moolenaar95da1362020-05-30 18:37:55 +02002101 * Return TRUE if "name" is an executable file, FALSE if not or it doesn't exist.
Bram Moolenaar43663192017-03-05 14:29:12 +01002102 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2103 * the allocated memory.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002104 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002105 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106 static int
Bram Moolenaar95da1362020-05-30 18:37:55 +02002107executable_file(char *name, char_u **path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108{
Bram Moolenaar95da1362020-05-30 18:37:55 +02002109 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name))
Bram Moolenaar43663192017-03-05 14:29:12 +01002110 {
Bram Moolenaar95da1362020-05-30 18:37:55 +02002111 if (path != NULL)
2112 *path = FullName_save((char_u *)name, FALSE);
2113 return TRUE;
2114 }
2115 return FALSE;
2116}
2117
2118/*
2119 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
2120 * If "use_path" is FALSE: Return TRUE if "name" exists.
2121 * If "use_pathext" is TRUE search "name" with extensions in $PATHEXT.
2122 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2123 * the allocated memory.
2124 */
2125 static int
2126executable_exists(char *name, char_u **path, int use_path, int use_pathext)
2127{
2128 // WinNT and later can use _MAX_PATH wide characters for a pathname, which
2129 // means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
2130 // UTF-8.
2131 char_u buf[_MAX_PATH * 3];
2132 size_t len = STRLEN(name);
2133 size_t tmplen;
2134 char_u *p, *e, *e2;
2135 char_u *pathbuf = NULL;
2136 char_u *pathext = NULL;
2137 char_u *pathextbuf = NULL;
Mike Williamsa3d1b292021-06-30 20:56:00 +02002138 char_u *shname = NULL;
Bram Moolenaar95da1362020-05-30 18:37:55 +02002139 int noext = FALSE;
2140 int retval = FALSE;
2141
2142 if (len >= sizeof(buf)) // safety check
Bram Moolenaar43663192017-03-05 14:29:12 +01002143 return FALSE;
Bram Moolenaar95da1362020-05-30 18:37:55 +02002144
2145 // Using the name directly when a Unix-shell like 'shell'.
Mike Williamsa3d1b292021-06-30 20:56:00 +02002146 shname = gettail(p_sh);
2147 if (strstr((char *)shname, "sh") != NULL &&
2148 !(strstr((char *)shname, "powershell") != NULL
2149 || strstr((char *)shname, "pwsh") != NULL))
Bram Moolenaar95da1362020-05-30 18:37:55 +02002150 noext = TRUE;
2151
2152 if (use_pathext)
2153 {
2154 pathext = mch_getenv("PATHEXT");
2155 if (pathext == NULL)
2156 pathext = (char_u *)".com;.exe;.bat;.cmd";
2157
2158 if (noext == FALSE)
2159 {
2160 /*
2161 * Loop over all extensions in $PATHEXT.
2162 * Check "name" ends with extension.
2163 */
2164 p = pathext;
2165 while (*p)
2166 {
2167 if (p[0] == ';'
2168 || (p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2169 {
2170 // Skip empty or single ".".
2171 ++p;
2172 continue;
2173 }
2174 e = vim_strchr(p, ';');
2175 if (e == NULL)
2176 e = p + STRLEN(p);
2177 tmplen = e - p;
2178
2179 if (_strnicoll(name + len - tmplen, (char *)p, tmplen) == 0)
2180 {
2181 noext = TRUE;
2182 break;
2183 }
2184
2185 p = e;
2186 }
2187 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002188 }
2189
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00002190 // Prepend single "." to pathext, it means no extension added.
Bram Moolenaar95da1362020-05-30 18:37:55 +02002191 if (pathext == NULL)
2192 pathext = (char_u *)".";
2193 else if (noext == TRUE)
2194 {
2195 if (pathextbuf == NULL)
2196 pathextbuf = alloc(STRLEN(pathext) + 3);
2197 if (pathextbuf == NULL)
2198 {
2199 retval = FALSE;
2200 goto theend;
2201 }
2202 STRCPY(pathextbuf, ".;");
2203 STRCAT(pathextbuf, pathext);
2204 pathext = pathextbuf;
2205 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02002206
Bram Moolenaar95da1362020-05-30 18:37:55 +02002207 // Use $PATH when "use_path" is TRUE and "name" is basename.
2208 if (use_path && gettail((char_u *)name) == (char_u *)name)
2209 {
2210 p = mch_getenv("PATH");
2211 if (p != NULL)
2212 {
2213 pathbuf = alloc(STRLEN(p) + 3);
2214 if (pathbuf == NULL)
2215 {
2216 retval = FALSE;
2217 goto theend;
2218 }
2219 STRCPY(pathbuf, ".;");
2220 STRCAT(pathbuf, p);
2221 }
2222 }
2223
2224 /*
2225 * Walk through all entries in $PATH to check if "name" exists there and
2226 * is an executable file.
2227 */
2228 p = (pathbuf != NULL) ? pathbuf : (char_u *)".";
2229 while (*p)
2230 {
2231 if (*p == ';') // Skip empty entry
2232 {
2233 ++p;
2234 continue;
2235 }
2236 e = vim_strchr(p, ';');
2237 if (e == NULL)
2238 e = p + STRLEN(p);
2239
2240 if (e - p + len + 2 > sizeof(buf))
2241 {
2242 retval = FALSE;
2243 goto theend;
2244 }
2245 // A single "." that means current dir.
2246 if (e - p == 1 && *p == '.')
2247 STRCPY(buf, name);
2248 else
2249 {
2250 vim_strncpy(buf, p, e - p);
2251 add_pathsep(buf);
2252 STRCAT(buf, name);
2253 }
2254 tmplen = STRLEN(buf);
2255
2256 /*
2257 * Loop over all extensions in $PATHEXT.
2258 * Check "name" with extension added.
2259 */
2260 p = pathext;
2261 while (*p)
2262 {
2263 if (*p == ';')
2264 {
2265 // Skip empty entry
2266 ++p;
2267 continue;
2268 }
2269 e2 = vim_strchr(p, (int)';');
2270 if (e2 == NULL)
2271 e2 = p + STRLEN(p);
2272
2273 if (!(p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2274 {
2275 // Not a single "." that means no extension is added.
2276 if (e2 - p + tmplen + 1 > sizeof(buf))
2277 {
2278 retval = FALSE;
2279 goto theend;
2280 }
2281 vim_strncpy(buf + tmplen, p, e2 - p);
2282 }
2283 if (executable_file((char *)buf, path))
2284 {
2285 retval = TRUE;
2286 goto theend;
2287 }
2288
2289 p = e2;
2290 }
2291
2292 p = e;
2293 }
2294
2295theend:
2296 free(pathextbuf);
2297 free(pathbuf);
2298 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299}
2300
Bram Moolenaar1eed5322019-02-26 17:03:54 +01002301#if (defined(__MINGW32__) && __MSVCRT_VERSION__ >= 0x800) || \
2302 (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002303/*
2304 * Bad parameter handler.
2305 *
2306 * Certain MS CRT functions will intentionally crash when passed invalid
2307 * parameters to highlight possible security holes. Setting this function as
2308 * the bad parameter handler will prevent the crash.
2309 *
2310 * In debug builds the parameters contain CRT information that might help track
2311 * down the source of a problem, but in non-debug builds the arguments are all
2312 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
2313 * worth allowing these to make debugging of issues easier.
2314 */
2315 static void
2316bad_param_handler(const wchar_t *expression,
2317 const wchar_t *function,
2318 const wchar_t *file,
2319 unsigned int line,
2320 uintptr_t pReserved)
2321{
2322}
2323
2324# define SET_INVALID_PARAM_HANDLER \
2325 ((void)_set_invalid_parameter_handler(bad_param_handler))
2326#else
2327# define SET_INVALID_PARAM_HANDLER
2328#endif
2329
Bram Moolenaar4f974752019-02-17 17:44:42 +01002330#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331
2332/*
2333 * GUI version of mch_init().
2334 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002335 static void
2336mch_init_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002338# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002340# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341
Bram Moolenaar0f873732019-12-05 20:28:46 +01002342 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002343 SET_INVALID_PARAM_HANDLER;
2344
Bram Moolenaar0f873732019-12-05 20:28:46 +01002345 // Let critical errors result in a failure, not in a dialog box. Required
2346 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 SetErrorMode(SEM_FAILCRITICALERRORS);
2348
Bram Moolenaar0f873732019-12-05 20:28:46 +01002349 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350
Bram Moolenaar0f873732019-12-05 20:28:46 +01002351 // Specify window size. Is there a place to get the default from?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 Rows = 25;
2353 Columns = 80;
2354
Bram Moolenaar0f873732019-12-05 20:28:46 +01002355 // Look for 'vimrun'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 {
2357 char_u vimrun_location[_MAX_PATH + 4];
2358
Bram Moolenaar0f873732019-12-05 20:28:46 +01002359 // First try in same directory as gvim.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 STRCPY(vimrun_location, exe_name);
2361 STRCPY(gettail(vimrun_location), "vimrun.exe");
2362 if (mch_getperm(vimrun_location) >= 0)
2363 {
2364 if (*skiptowhite(vimrun_location) != NUL)
2365 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002366 // Enclose path with white space in double quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 mch_memmove(vimrun_location + 1, vimrun_location,
2368 STRLEN(vimrun_location) + 1);
2369 *vimrun_location = '"';
2370 STRCPY(gettail(vimrun_location), "vimrun\" ");
2371 }
2372 else
2373 STRCPY(gettail(vimrun_location), "vimrun ");
2374
2375 vimrun_path = (char *)vim_strsave(vimrun_location);
2376 s_dont_use_vimrun = FALSE;
2377 }
Bram Moolenaar95da1362020-05-30 18:37:55 +02002378 else if (executable_exists("vimrun.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379 s_dont_use_vimrun = FALSE;
2380
Bram Moolenaar0f873732019-12-05 20:28:46 +01002381 // Don't give the warning for a missing vimrun.exe right now, but only
2382 // when vimrun was supposed to be used. Don't bother people that do
2383 // not need vimrun.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 if (s_dont_use_vimrun)
2385 need_vimrun_warning = TRUE;
2386 }
2387
2388 /*
2389 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2390 * Otherwise the default "findstr /n" is used.
2391 */
Bram Moolenaar95da1362020-05-30 18:37:55 +02002392 if (!executable_exists("findstr.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2394
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002395# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002396 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002397# endif
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01002398
2399 vtp_flag_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400}
2401
2402
Bram Moolenaar0f873732019-12-05 20:28:46 +01002403#endif // FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002404
2405#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002407# define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2408# define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409
2410/*
2411 * ClearConsoleBuffer()
2412 * Description:
2413 * Clears the entire contents of the console screen buffer, using the
2414 * specified attribute.
2415 * Returns:
2416 * TRUE on success
2417 */
2418 static BOOL
2419ClearConsoleBuffer(WORD wAttribute)
2420{
2421 CONSOLE_SCREEN_BUFFER_INFO csbi;
2422 COORD coord;
2423 DWORD NumCells, dummy;
2424
2425 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2426 return FALSE;
2427
2428 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2429 coord.X = 0;
2430 coord.Y = 0;
2431 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2432 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2435 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437
2438 return TRUE;
2439}
2440
2441/*
2442 * FitConsoleWindow()
2443 * Description:
2444 * Checks if the console window will fit within given buffer dimensions.
2445 * Also, if requested, will shrink the window to fit.
2446 * Returns:
2447 * TRUE on success
2448 */
2449 static BOOL
2450FitConsoleWindow(
2451 COORD dwBufferSize,
2452 BOOL WantAdjust)
2453{
2454 CONSOLE_SCREEN_BUFFER_INFO csbi;
2455 COORD dwWindowSize;
2456 BOOL NeedAdjust = FALSE;
2457
2458 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2459 {
2460 /*
2461 * A buffer resize will fail if the current console window does
2462 * not lie completely within that buffer. To avoid this, we might
2463 * have to move and possibly shrink the window.
2464 */
2465 if (csbi.srWindow.Right >= dwBufferSize.X)
2466 {
2467 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2468 if (dwWindowSize.X > dwBufferSize.X)
2469 dwWindowSize.X = dwBufferSize.X;
2470 csbi.srWindow.Right = dwBufferSize.X - 1;
2471 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2472 NeedAdjust = TRUE;
2473 }
2474 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2475 {
2476 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2477 if (dwWindowSize.Y > dwBufferSize.Y)
2478 dwWindowSize.Y = dwBufferSize.Y;
2479 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2480 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2481 NeedAdjust = TRUE;
2482 }
2483 if (NeedAdjust && WantAdjust)
2484 {
2485 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2486 return FALSE;
2487 }
2488 return TRUE;
2489 }
2490
2491 return FALSE;
2492}
2493
2494typedef struct ConsoleBufferStruct
2495{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002496 BOOL IsValid;
2497 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002498 PCHAR_INFO Buffer;
2499 COORD BufferSize;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002500 PSMALL_RECT Regions;
2501 int NumRegions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502} ConsoleBuffer;
2503
2504/*
2505 * SaveConsoleBuffer()
2506 * Description:
2507 * Saves important information about the console buffer, including the
2508 * actual buffer contents. The saved information is suitable for later
2509 * restoration by RestoreConsoleBuffer().
2510 * Returns:
2511 * TRUE if all information was saved; FALSE otherwise
2512 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2513 */
2514 static BOOL
2515SaveConsoleBuffer(
2516 ConsoleBuffer *cb)
2517{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002518 DWORD NumCells;
2519 COORD BufferCoord;
2520 SMALL_RECT ReadRegion;
2521 WORD Y, Y_incr;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002522 int i, numregions;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002523
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 if (cb == NULL)
2525 return FALSE;
2526
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002527 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 {
2529 cb->IsValid = FALSE;
2530 return FALSE;
2531 }
2532 cb->IsValid = TRUE;
2533
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002534 /*
2535 * Allocate a buffer large enough to hold the entire console screen
2536 * buffer. If this ConsoleBuffer structure has already been initialized
2537 * with a buffer of the correct size, then just use that one.
2538 */
2539 if (!cb->IsValid || cb->Buffer == NULL ||
2540 cb->BufferSize.X != cb->Info.dwSize.X ||
2541 cb->BufferSize.Y != cb->Info.dwSize.Y)
2542 {
2543 cb->BufferSize.X = cb->Info.dwSize.X;
2544 cb->BufferSize.Y = cb->Info.dwSize.Y;
2545 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2546 vim_free(cb->Buffer);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002547 cb->Buffer = ALLOC_MULT(CHAR_INFO, NumCells);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002548 if (cb->Buffer == NULL)
2549 return FALSE;
2550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551
2552 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002553 * We will now copy the console screen buffer into our buffer.
2554 * ReadConsoleOutput() seems to be limited as far as how much you
2555 * can read at a time. Empirically, this number seems to be about
2556 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2557 * in chunks until it is all copied. The chunks will all have the
2558 * same horizontal characteristics, so initialize them now. The
2559 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002561 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002562 ReadRegion.Left = 0;
2563 ReadRegion.Right = cb->Info.dwSize.X - 1;
2564 Y_incr = 12000 / cb->Info.dwSize.X;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002565
2566 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr;
2567 if (cb->Regions == NULL || numregions != cb->NumRegions)
2568 {
2569 cb->NumRegions = numregions;
2570 vim_free(cb->Regions);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002571 cb->Regions = ALLOC_MULT(SMALL_RECT, cb->NumRegions);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002572 if (cb->Regions == NULL)
2573 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002574 VIM_CLEAR(cb->Buffer);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002575 return FALSE;
2576 }
2577 }
2578
2579 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002581 /*
2582 * Read into position (0, Y) in our buffer.
2583 */
2584 BufferCoord.Y = Y;
2585 /*
2586 * Read the region whose top left corner is (0, Y) and whose bottom
2587 * right corner is (width - 1, Y + Y_incr - 1). This should define
2588 * a region of size width by Y_incr. Don't worry if this region is
2589 * too large for the remaining buffer; it will be cropped.
2590 */
2591 ReadRegion.Top = Y;
2592 ReadRegion.Bottom = Y + Y_incr - 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002593 if (!ReadConsoleOutputW(g_hConOut, // output handle
2594 cb->Buffer, // our buffer
2595 cb->BufferSize, // dimensions of our buffer
2596 BufferCoord, // offset in our buffer
2597 &ReadRegion)) // region to save
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002598 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002599 VIM_CLEAR(cb->Buffer);
2600 VIM_CLEAR(cb->Regions);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002601 return FALSE;
2602 }
Bram Moolenaar444fda22017-08-11 20:37:00 +02002603 cb->Regions[i] = ReadRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 }
2605
2606 return TRUE;
2607}
2608
2609/*
2610 * RestoreConsoleBuffer()
2611 * Description:
2612 * Restores important information about the console buffer, including the
2613 * actual buffer contents, if desired. The information to restore is in
2614 * the same format used by SaveConsoleBuffer().
2615 * Returns:
2616 * TRUE on success
2617 */
2618 static BOOL
2619RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002620 ConsoleBuffer *cb,
2621 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002623 COORD BufferCoord;
2624 SMALL_RECT WriteRegion;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002625 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626
2627 if (cb == NULL || !cb->IsValid)
2628 return FALSE;
2629
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002630 /*
2631 * Before restoring the buffer contents, clear the current buffer, and
2632 * restore the cursor position and window information. Doing this now
2633 * prevents old buffer contents from "flashing" onto the screen.
2634 */
2635 if (RestoreScreen)
2636 ClearConsoleBuffer(cb->Info.wAttributes);
2637
2638 FitConsoleWindow(cb->Info.dwSize, TRUE);
2639 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2640 return FALSE;
2641 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2642 return FALSE;
2643
2644 if (!RestoreScreen)
2645 {
2646 /*
2647 * No need to restore the screen buffer contents, so we're done.
2648 */
2649 return TRUE;
2650 }
2651
2652 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2653 return FALSE;
2654 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2655 return FALSE;
2656
2657 /*
2658 * Restore the screen buffer contents.
2659 */
2660 if (cb->Buffer != NULL)
2661 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002662 for (i = 0; i < cb->NumRegions; i++)
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002663 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002664 BufferCoord.X = cb->Regions[i].Left;
2665 BufferCoord.Y = cb->Regions[i].Top;
2666 WriteRegion = cb->Regions[i];
Bram Moolenaar0f873732019-12-05 20:28:46 +01002667 if (!WriteConsoleOutputW(g_hConOut, // output handle
2668 cb->Buffer, // our buffer
2669 cb->BufferSize, // dimensions of our buffer
2670 BufferCoord, // offset in our buffer
2671 &WriteRegion)) // region to restore
Bram Moolenaar444fda22017-08-11 20:37:00 +02002672 return FALSE;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002673 }
2674 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675
2676 return TRUE;
2677}
2678
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002679# define FEAT_RESTORE_ORIG_SCREEN
2680# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002681static ConsoleBuffer g_cbOrig = { 0 };
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002682# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683static ConsoleBuffer g_cbNonTermcap = { 0 };
2684static ConsoleBuffer g_cbTermcap = { 0 };
2685
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686char g_szOrigTitle[256] = { 0 };
Bram Moolenaar0f873732019-12-05 20:28:46 +01002687HWND g_hWnd = NULL; // also used in os_mswin.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688static HICON g_hOrigIconSmall = NULL;
2689static HICON g_hOrigIcon = NULL;
2690static HICON g_hVimIcon = NULL;
2691static BOOL g_fCanChangeIcon = FALSE;
2692
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693/*
2694 * GetConsoleIcon()
2695 * Description:
2696 * Attempts to retrieve the small icon and/or the big icon currently in
2697 * use by a given window.
2698 * Returns:
2699 * TRUE on success
2700 */
2701 static BOOL
2702GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002703 HWND hWnd,
2704 HICON *phIconSmall,
2705 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706{
2707 if (hWnd == NULL)
2708 return FALSE;
2709
2710 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002711 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2712 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002714 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2715 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002716 return TRUE;
2717}
2718
2719/*
2720 * SetConsoleIcon()
2721 * Description:
2722 * Attempts to change the small icon and/or the big icon currently in
2723 * use by a given window.
2724 * Returns:
2725 * TRUE on success
2726 */
2727 static BOOL
2728SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002729 HWND hWnd,
2730 HICON hIconSmall,
2731 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 if (hWnd == NULL)
2734 return FALSE;
2735
2736 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002737 SendMessage(hWnd, WM_SETICON,
2738 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002740 SendMessage(hWnd, WM_SETICON,
2741 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 return TRUE;
2743}
2744
2745/*
2746 * SaveConsoleTitleAndIcon()
2747 * Description:
2748 * Saves the current console window title in g_szOrigTitle, for later
2749 * restoration. Also, attempts to obtain a handle to the console window,
2750 * and use it to save the small and big icons currently in use by the
2751 * console window. This is not always possible on some versions of Windows;
2752 * nor is it possible when running Vim remotely using Telnet (since the
2753 * console window the user sees is owned by a remote process).
2754 */
2755 static void
2756SaveConsoleTitleAndIcon(void)
2757{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002758 // Save the original title.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2760 return;
2761
2762 /*
2763 * Obtain a handle to the console window using GetConsoleWindow() from
2764 * KERNEL32.DLL; we need to handle in order to change the window icon.
2765 * This function only exists on NT-based Windows, starting with Windows
2766 * 2000. On older operating systems, we can't change the window icon
2767 * anyway.
2768 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002769 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 if (g_hWnd == NULL)
2771 return;
2772
Bram Moolenaar0f873732019-12-05 20:28:46 +01002773 // Save the original console window icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2775 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2776 return;
2777
Bram Moolenaar0f873732019-12-05 20:28:46 +01002778 // Extract the first icon contained in the Vim executable.
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002779 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002780 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 if (g_hVimIcon != NULL)
2782 g_fCanChangeIcon = TRUE;
2783}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784
2785static int g_fWindInitCalled = FALSE;
2786static int g_fTermcapMode = FALSE;
2787static CONSOLE_CURSOR_INFO g_cci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788
2789/*
2790 * non-GUI version of mch_init().
2791 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002792 static void
2793mch_init_c(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002795# ifndef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002796 CONSOLE_SCREEN_BUFFER_INFO csbi;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002797# endif
2798# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002800# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801
Bram Moolenaar0f873732019-12-05 20:28:46 +01002802 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002803 SET_INVALID_PARAM_HANDLER;
2804
Bram Moolenaar0f873732019-12-05 20:28:46 +01002805 // Let critical errors result in a failure, not in a dialog box. Required
2806 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 SetErrorMode(SEM_FAILCRITICALERRORS);
2808
Bram Moolenaar0f873732019-12-05 20:28:46 +01002809 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810 out_flush();
2811
Bram Moolenaar0f873732019-12-05 20:28:46 +01002812 // Obtain handles for the standard Console I/O devices
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 if (read_cmd_fd == 0)
2814 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2815 else
2816 create_conin();
2817 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2818
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002819# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar0f873732019-12-05 20:28:46 +01002820 // Save the initial console buffer for later restoration
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002821 SaveConsoleBuffer(&g_cbOrig);
2822 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002823# else
Bram Moolenaar0f873732019-12-05 20:28:46 +01002824 // Get current text attributes
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002825 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2826 g_attrCurrent = g_attrDefault = csbi.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002827# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 if (cterm_normal_fg_color == 0)
2829 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2830 if (cterm_normal_bg_color == 0)
2831 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2832
Bram Moolenaarbdace832019-03-02 10:13:42 +01002833 // Fg and Bg color index number at startup
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02002834 g_color_index_fg = g_attrDefault & 0xf;
2835 g_color_index_bg = (g_attrDefault >> 4) & 0xf;
2836
Bram Moolenaar0f873732019-12-05 20:28:46 +01002837 // set termcap codes to current text attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 update_tcap(g_attrCurrent);
2839
2840 GetConsoleCursorInfo(g_hConOut, &g_cci);
2841 GetConsoleMode(g_hConIn, &g_cmodein);
2842 GetConsoleMode(g_hConOut, &g_cmodeout);
2843
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 SaveConsoleTitleAndIcon();
2845 /*
2846 * Set both the small and big icons of the console window to Vim's icon.
2847 * Note that Vim presently only has one size of icon (32x32), but it
2848 * automatically gets scaled down to 16x16 when setting the small icon.
2849 */
2850 if (g_fCanChangeIcon)
2851 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852
2853 ui_get_shellsize();
2854
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002855# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856 fdDump = fopen("dump", "wt");
2857
2858 if (fdDump)
2859 {
2860 time_t t;
2861
2862 time(&t);
2863 fputs(ctime(&t), fdDump);
2864 fflush(fdDump);
2865 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002866# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867
2868 g_fWindInitCalled = TRUE;
2869
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002872# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002873 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002874# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002875
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02002876 vtp_flag_init();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002877 vtp_init();
Bram Moolenaar06b7b582020-05-30 17:49:25 +02002878 wt_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879}
2880
2881/*
2882 * non-GUI version of mch_exit().
2883 * Shut down and exit with status `r'
2884 * Careful: mch_exit() may be called before mch_init()!
2885 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002886 static void
2887mch_exit_c(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002889 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002891 vtp_exit();
2892
Bram Moolenaar955f1982017-02-05 15:10:51 +01002893 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 if (g_fWindInitCalled)
2895 settmode(TMODE_COOK);
2896
Bram Moolenaar0f873732019-12-05 20:28:46 +01002897 ml_close_all(TRUE); // remove all memfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898
2899 if (g_fWindInitCalled)
2900 {
Bram Moolenaar40385db2018-08-07 22:31:44 +02002901 mch_restore_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 /*
2903 * Restore both the small and big icons of the console window to
2904 * what they were at startup. Don't do this when the window is
2905 * closed, Vim would hang here.
2906 */
2907 if (g_fCanChangeIcon && !g_fForceExit)
2908 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002910# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 if (fdDump)
2912 {
2913 time_t t;
2914
2915 time(&t);
2916 fputs(ctime(&t), fdDump);
2917 fclose(fdDump);
2918 }
2919 fdDump = NULL;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002920# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 }
2922
2923 SetConsoleCursorInfo(g_hConOut, &g_cci);
Wez Furlong6ef5ab52021-05-30 19:29:41 +02002924 SetConsoleMode(g_hConIn, g_cmodein | ENABLE_EXTENDED_FLAGS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 SetConsoleMode(g_hConOut, g_cmodeout);
2926
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002927# ifdef DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928 dyn_libintl_end();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002929# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930
2931 exit(r);
2932}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002933#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002935 void
2936mch_init(void)
2937{
2938#ifdef VIMDLL
2939 if (gui.starting)
2940 mch_init_g();
2941 else
2942 mch_init_c();
2943#elif defined(FEAT_GUI_MSWIN)
2944 mch_init_g();
2945#else
2946 mch_init_c();
2947#endif
2948}
2949
2950 void
2951mch_exit(int r)
2952{
Bram Moolenaar173d8412020-04-19 14:02:26 +02002953#ifdef FEAT_NETBEANS_INTG
2954 netbeans_send_disconnect();
2955#endif
2956
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002957#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02002958 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002959 mch_exit_g(r);
2960 else
2961 mch_exit_c(r);
2962#elif defined(FEAT_GUI_MSWIN)
2963 mch_exit_g(r);
2964#else
2965 mch_exit_c(r);
2966#endif
2967}
2968
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969/*
2970 * Do we have an interactive window?
2971 */
2972 int
2973mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002974 int argc UNUSED,
2975 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976{
2977 get_exe_name();
2978
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002979#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002980 return OK; // GUI always has a tty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981#else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002982# ifdef VIMDLL
2983 if (gui.in_use)
2984 return OK;
2985# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 if (isatty(1))
2987 return OK;
2988 return FAIL;
2989#endif
2990}
2991
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002992/*
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01002993 * Set the case of the file name, if it already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 * When "len" is > 0, also expand short to long filenames.
2995 */
2996 void
2997fname_case(
2998 char_u *name,
2999 int len)
3000{
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003001 int flen;
3002 WCHAR *p;
3003 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00003005 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003006 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 return;
3008
3009 slash_adjust(name);
3010
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003011 p = enc_to_utf16(name, NULL);
3012 if (p == NULL)
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003013 return;
3014
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003015 if (GetLongPathNameW(p, buf, _MAX_PATH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003017 char_u *q = utf16_to_enc(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003019 if (q != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003021 if (len > 0 || flen >= (int)STRLEN(q))
3022 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
3023 vim_free(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 }
3025 }
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003026 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027}
3028
3029
3030/*
3031 * Insert user name in s[len].
3032 */
3033 int
3034mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003035 char_u *s,
3036 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003038 WCHAR wszUserName[256 + 1]; // UNLEN is 256
K.Takataeeec2542021-06-02 13:28:16 +02003039 DWORD wcch = ARRAY_LENGTH(wszUserName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003041 if (GetUserNameW(wszUserName, &wcch))
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003042 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003043 char_u *p = utf16_to_enc(wszUserName, NULL);
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003044
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003045 if (p != NULL)
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003046 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003047 vim_strncpy(s, p, len - 1);
3048 vim_free(p);
3049 return OK;
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003050 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003051 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 s[0] = NUL;
3053 return FAIL;
3054}
3055
3056
3057/*
3058 * Insert host name in s[len].
3059 */
3060 void
3061mch_get_host_name(
3062 char_u *s,
3063 int len)
3064{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003065 WCHAR wszHostName[256 + 1];
K.Takataeeec2542021-06-02 13:28:16 +02003066 DWORD wcch = ARRAY_LENGTH(wszHostName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003068 if (GetComputerNameW(wszHostName, &wcch))
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003069 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003070 char_u *p = utf16_to_enc(wszHostName, NULL);
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003071
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003072 if (p != NULL)
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003073 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003074 vim_strncpy(s, p, len - 1);
3075 vim_free(p);
3076 return;
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003077 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079}
3080
3081
3082/*
3083 * return process ID
3084 */
3085 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003086mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087{
3088 return (long)GetCurrentProcessId();
3089}
3090
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003091/*
3092 * return TRUE if process "pid" is still running
3093 */
3094 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02003095mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003096{
3097 HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, 0, (DWORD)pid);
3098 DWORD status = 0;
3099 int ret = FALSE;
3100
3101 if (hProcess == NULL)
3102 return FALSE; // might not have access
3103 if (GetExitCodeProcess(hProcess, &status) )
3104 ret = status == STILL_ACTIVE;
3105 CloseHandle(hProcess);
3106 return ret;
3107}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108
3109/*
3110 * Get name of current directory into buffer 'buf' of length 'len' bytes.
3111 * Return OK for success, FAIL for failure.
3112 */
3113 int
3114mch_dirname(
3115 char_u *buf,
3116 int len)
3117{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003118 WCHAR wbuf[_MAX_PATH + 1];
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003119
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 /*
3121 * Originally this was:
3122 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3123 * But the Win32s known bug list says that getcwd() doesn't work
3124 * so use the Win32 system call instead. <Negri>
3125 */
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003126 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003128 WCHAR wcbuf[_MAX_PATH + 1];
3129 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003131 if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003133 p = utf16_to_enc(wcbuf, NULL);
3134 if (STRLEN(p) >= (size_t)len)
Bram Moolenaarcea1f9e2018-08-19 14:38:42 +02003135 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003136 // long path name is too long, fall back to short one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003138 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 }
3140 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003141 if (p == NULL)
3142 p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003143
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003144 if (p != NULL)
3145 {
3146 vim_strncpy(buf, p, len - 1);
3147 vim_free(p);
3148 return OK;
3149 }
3150 }
3151 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152}
3153
3154/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003155 * Get file permissions for "name".
3156 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 */
3158 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003159mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003161 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003162 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003164 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003165 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166}
3167
3168
3169/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003170 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003171 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003172 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 */
3174 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003175mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003177 long n;
3178 WCHAR *p;
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003179
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003180 p = enc_to_utf16(name, NULL);
3181 if (p == NULL)
3182 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003184 n = _wchmod(p, perm);
3185 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003186 if (n == -1)
3187 return FAIL;
3188
3189 win32_set_archive(name);
3190
3191 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192}
3193
3194/*
3195 * Set hidden flag for "name".
3196 */
3197 void
3198mch_hide(char_u *name)
3199{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003200 int attrs = win32_getattrs(name);
3201 if (attrs == -1)
3202 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003204 attrs |= FILE_ATTRIBUTE_HIDDEN;
3205 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003206}
3207
3208/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003209 * Return TRUE if file "name" exists and is hidden.
3210 */
3211 int
3212mch_ishidden(char_u *name)
3213{
3214 int f = win32_getattrs(name);
3215
3216 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003217 return FALSE; // file does not exist at all
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003218
3219 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3220}
3221
3222/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 * return TRUE if "name" is a directory
3224 * return FALSE if "name" is not a directory or upon error
3225 */
3226 int
3227mch_isdir(char_u *name)
3228{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003229 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230
3231 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003232 return FALSE; // file does not exist at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233
3234 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3235}
3236
3237/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003238 * return TRUE if "name" is a directory, NOT a symlink to a directory
3239 * return FALSE if "name" is not a directory
3240 * return FALSE for error
3241 */
3242 int
3243mch_isrealdir(char_u *name)
3244{
3245 return mch_isdir(name) && !mch_is_symbolic_link(name);
3246}
3247
3248/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003249 * Create directory "name".
3250 * Return 0 on success, -1 on error.
3251 */
3252 int
3253mch_mkdir(char_u *name)
3254{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003255 WCHAR *p;
3256 int retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003257
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003258 p = enc_to_utf16(name, NULL);
3259 if (p == NULL)
3260 return -1;
3261 retval = _wmkdir(p);
3262 vim_free(p);
3263 return retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003264}
3265
3266/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003267 * Delete directory "name".
3268 * Return 0 on success, -1 on error.
3269 */
3270 int
3271mch_rmdir(char_u *name)
3272{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003273 WCHAR *p;
3274 int retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003275
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003276 p = enc_to_utf16(name, NULL);
3277 if (p == NULL)
3278 return -1;
3279 retval = _wrmdir(p);
3280 vim_free(p);
3281 return retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003282}
3283
3284/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003285 * Return TRUE if file "fname" has more than one link.
3286 */
3287 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003288mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003289{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003290 BY_HANDLE_FILE_INFORMATION info;
3291
3292 return win32_fileinfo(fname, &info) == FILEINFO_OK
3293 && info.nNumberOfLinks > 1;
3294}
3295
3296/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003297 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003298 */
3299 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003300mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003301{
3302 HANDLE hFind;
3303 int res = FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003304 DWORD fileFlags = 0, reparseTag = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003305 WCHAR *wn;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003306 WIN32_FIND_DATAW findDataW;
3307
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003308 wn = enc_to_utf16(name, NULL);
3309 if (wn == NULL)
3310 return FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003311
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003312 hFind = FindFirstFileW(wn, &findDataW);
3313 vim_free(wn);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003314 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003315 {
3316 fileFlags = findDataW.dwFileAttributes;
3317 reparseTag = findDataW.dwReserved0;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003318 FindClose(hFind);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003319 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003320
3321 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003322 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3323 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003324 res = TRUE;
3325
3326 return res;
3327}
3328
3329/*
3330 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3331 * link.
3332 */
3333 int
3334mch_is_linked(char_u *fname)
3335{
3336 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3337 return TRUE;
3338 return FALSE;
3339}
3340
3341/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003342 * Get the by-handle-file-information for "fname".
3343 * Returns FILEINFO_OK when OK.
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003344 * Returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003345 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3346 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3347 */
3348 int
3349win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3350{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003351 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003352 int res = FILEINFO_READ_FAIL;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003353 WCHAR *wn;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003354
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003355 wn = enc_to_utf16(fname, NULL);
3356 if (wn == NULL)
3357 return FILEINFO_ENC_FAIL;
3358
3359 hFile = CreateFileW(wn, // file name
3360 GENERIC_READ, // access mode
3361 FILE_SHARE_READ | FILE_SHARE_WRITE, // share mode
3362 NULL, // security descriptor
3363 OPEN_EXISTING, // creation disposition
3364 FILE_FLAG_BACKUP_SEMANTICS, // file attributes
3365 NULL); // handle to template file
3366 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003367
3368 if (hFile != INVALID_HANDLE_VALUE)
3369 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003370 if (GetFileInformationByHandle(hFile, info) != 0)
3371 res = FILEINFO_OK;
3372 else
3373 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003374 CloseHandle(hFile);
3375 }
3376
Bram Moolenaar03f48552006-02-28 23:52:23 +00003377 return res;
3378}
3379
3380/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003381 * get file attributes for `name'
3382 * -1 : error
3383 * else FILE_ATTRIBUTE_* defined in winnt.h
3384 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003385 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003386win32_getattrs(char_u *name)
3387{
3388 int attr;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003389 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003390
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003391 p = enc_to_utf16(name, NULL);
3392 if (p == NULL)
3393 return INVALID_FILE_ATTRIBUTES;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003394
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003395 attr = GetFileAttributesW(p);
3396 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003397
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003398 return attr;
3399}
3400
3401/*
3402 * set file attributes for `name' to `attrs'
3403 *
3404 * return -1 for failure, 0 otherwise
3405 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003406 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003407win32_setattrs(char_u *name, int attrs)
3408{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003409 int res;
3410 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003411
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003412 p = enc_to_utf16(name, NULL);
3413 if (p == NULL)
3414 return -1;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003415
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003416 res = SetFileAttributesW(p, attrs);
3417 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003418
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003419 return res ? 0 : -1;
3420}
3421
3422/*
3423 * Set archive flag for "name".
3424 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003425 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003426win32_set_archive(char_u *name)
3427{
3428 int attrs = win32_getattrs(name);
3429 if (attrs == -1)
3430 return -1;
3431
3432 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3433 return win32_setattrs(name, attrs);
3434}
3435
3436/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 * Return TRUE if file or directory "name" is writable (not readonly).
3438 * Strange semantics of Win32: a readonly directory is writable, but you can't
3439 * delete a file. Let's say this means it is writable.
3440 */
3441 int
3442mch_writable(char_u *name)
3443{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003444 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003446 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3447 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448}
3449
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003451 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003452 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003453 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3454 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 */
3456 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003457mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458{
Bram Moolenaar95da1362020-05-30 18:37:55 +02003459 return executable_exists((char *)name, path, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461
3462/*
3463 * Check what "name" is:
3464 * NODE_NORMAL: file or directory (or doesn't exist)
3465 * NODE_WRITABLE: writable device, socket, fifo, etc.
3466 * NODE_OTHER: non-writable things
3467 */
3468 int
3469mch_nodetype(char_u *name)
3470{
3471 HANDLE hFile;
3472 int type;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003473 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474
Bram Moolenaar0f873732019-12-05 20:28:46 +01003475 // We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3476 // read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3477 // here.
Bram Moolenaar043545e2006-10-10 16:44:07 +00003478 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3479 return NODE_WRITABLE;
3480
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003481 wn = enc_to_utf16(name, NULL);
3482 if (wn == NULL)
3483 return NODE_NORMAL;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003484
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003485 hFile = CreateFileW(wn, // file name
3486 GENERIC_WRITE, // access mode
3487 0, // share mode
3488 NULL, // security descriptor
3489 OPEN_EXISTING, // creation disposition
3490 0, // file attributes
3491 NULL); // handle to template file
3492 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 if (hFile == INVALID_HANDLE_VALUE)
3494 return NODE_NORMAL;
3495
3496 type = GetFileType(hFile);
3497 CloseHandle(hFile);
3498 if (type == FILE_TYPE_CHAR)
3499 return NODE_WRITABLE;
3500 if (type == FILE_TYPE_DISK)
3501 return NODE_NORMAL;
3502 return NODE_OTHER;
3503}
3504
3505#ifdef HAVE_ACL
3506struct my_acl
3507{
3508 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3509 PSID pSidOwner;
3510 PSID pSidGroup;
3511 PACL pDacl;
3512 PACL pSacl;
3513};
3514#endif
3515
3516/*
3517 * Return a pointer to the ACL of file "fname" in allocated memory.
3518 * Return NULL if the ACL is not available for whatever reason.
3519 */
3520 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003521mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522{
3523#ifndef HAVE_ACL
3524 return (vim_acl_T)NULL;
3525#else
3526 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003527 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003529 p = ALLOC_CLEAR_ONE(struct my_acl);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003530 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003532 WCHAR *wn;
Bram Moolenaar27515922013-06-29 15:36:26 +02003533
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003534 wn = enc_to_utf16(fname, NULL);
3535 if (wn == NULL)
Bram Moolenaarbbf9f342020-11-10 22:03:40 +01003536 {
3537 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003538 return NULL;
Bram Moolenaarbbf9f342020-11-10 22:03:40 +01003539 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003540
3541 // Try to retrieve the entire security descriptor.
3542 err = GetNamedSecurityInfoW(
3543 wn, // Abstract filename
3544 SE_FILE_OBJECT, // File Object
3545 OWNER_SECURITY_INFORMATION |
3546 GROUP_SECURITY_INFORMATION |
3547 DACL_SECURITY_INFORMATION |
3548 SACL_SECURITY_INFORMATION,
3549 &p->pSidOwner, // Ownership information.
3550 &p->pSidGroup, // Group membership.
3551 &p->pDacl, // Discretionary information.
3552 &p->pSacl, // For auditing purposes.
3553 &p->pSecurityDescriptor);
3554 if (err == ERROR_ACCESS_DENIED ||
3555 err == ERROR_PRIVILEGE_NOT_HELD)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003556 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003557 // Retrieve only DACL.
3558 (void)GetNamedSecurityInfoW(
3559 wn,
3560 SE_FILE_OBJECT,
3561 DACL_SECURITY_INFORMATION,
3562 NULL,
3563 NULL,
3564 &p->pDacl,
3565 NULL,
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003566 &p->pSecurityDescriptor);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003567 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003568 if (p->pSecurityDescriptor == NULL)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003569 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003570 mch_free_acl((vim_acl_T)p);
3571 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003573 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 }
3575
3576 return (vim_acl_T)p;
3577#endif
3578}
3579
Bram Moolenaar27515922013-06-29 15:36:26 +02003580#ifdef HAVE_ACL
3581/*
3582 * Check if "acl" contains inherited ACE.
3583 */
3584 static BOOL
3585is_acl_inherited(PACL acl)
3586{
3587 DWORD i;
3588 ACL_SIZE_INFORMATION acl_info;
3589 PACCESS_ALLOWED_ACE ace;
3590
3591 acl_info.AceCount = 0;
3592 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3593 for (i = 0; i < acl_info.AceCount; i++)
3594 {
3595 GetAce(acl, i, (LPVOID *)&ace);
3596 if (ace->Header.AceFlags & INHERITED_ACE)
3597 return TRUE;
3598 }
3599 return FALSE;
3600}
3601#endif
3602
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603/*
3604 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3605 * Errors are ignored.
3606 * This must only be called with "acl" equal to what mch_get_acl() returned.
3607 */
3608 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003609mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610{
3611#ifdef HAVE_ACL
3612 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003613 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003614 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003616 if (p == NULL)
3617 return;
3618
3619 wn = enc_to_utf16(fname, NULL);
3620 if (wn == NULL)
3621 return;
3622
3623 // Set security flags
3624 if (p->pSidOwner)
3625 sec_info |= OWNER_SECURITY_INFORMATION;
3626 if (p->pSidGroup)
3627 sec_info |= GROUP_SECURITY_INFORMATION;
3628 if (p->pDacl)
Bram Moolenaar27515922013-06-29 15:36:26 +02003629 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003630 sec_info |= DACL_SECURITY_INFORMATION;
3631 // Do not inherit its parent's DACL.
3632 // If the DACL is inherited, Cygwin permissions would be changed.
3633 if (!is_acl_inherited(p->pDacl))
3634 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
Bram Moolenaar27515922013-06-29 15:36:26 +02003635 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003636 if (p->pSacl)
3637 sec_info |= SACL_SECURITY_INFORMATION;
3638
3639 (void)SetNamedSecurityInfoW(
3640 wn, // Abstract filename
3641 SE_FILE_OBJECT, // File Object
3642 sec_info,
3643 p->pSidOwner, // Ownership information.
3644 p->pSidGroup, // Group membership.
3645 p->pDacl, // Discretionary information.
3646 p->pSacl // For auditing purposes.
3647 );
3648 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649#endif
3650}
3651
3652 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003653mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654{
3655#ifdef HAVE_ACL
3656 struct my_acl *p = (struct my_acl *)acl;
3657
3658 if (p != NULL)
3659 {
3660 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3661 vim_free(p);
3662 }
3663#endif
3664}
3665
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003666#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667
3668/*
3669 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3670 */
3671 static BOOL WINAPI
3672handler_routine(
3673 DWORD dwCtrlType)
3674{
Bram Moolenaar589b1102017-08-12 16:39:05 +02003675 INPUT_RECORD ir;
3676 DWORD out;
3677
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 switch (dwCtrlType)
3679 {
3680 case CTRL_C_EVENT:
3681 if (ctrl_c_interrupts)
3682 g_fCtrlCPressed = TRUE;
3683 return TRUE;
3684
3685 case CTRL_BREAK_EVENT:
3686 g_fCBrkPressed = TRUE;
Bram Moolenaar589b1102017-08-12 16:39:05 +02003687 ctrl_break_was_pressed = TRUE;
Bram Moolenaar0f873732019-12-05 20:28:46 +01003688 // ReadConsoleInput is blocking, send a key event to continue.
Bram Moolenaar589b1102017-08-12 16:39:05 +02003689 ir.EventType = KEY_EVENT;
3690 ir.Event.KeyEvent.bKeyDown = TRUE;
3691 ir.Event.KeyEvent.wRepeatCount = 1;
3692 ir.Event.KeyEvent.wVirtualKeyCode = VK_CANCEL;
3693 ir.Event.KeyEvent.wVirtualScanCode = 0;
3694 ir.Event.KeyEvent.dwControlKeyState = 0;
3695 ir.Event.KeyEvent.uChar.UnicodeChar = 0;
3696 WriteConsoleInput(g_hConIn, &ir, 1, &out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 return TRUE;
3698
Bram Moolenaar0f873732019-12-05 20:28:46 +01003699 // fatal events: shut down gracefully
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 case CTRL_CLOSE_EVENT:
3701 case CTRL_LOGOFF_EVENT:
3702 case CTRL_SHUTDOWN_EVENT:
3703 windgoto((int)Rows - 1, 0);
3704 g_fForceExit = TRUE;
3705
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003706 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 (dwCtrlType == CTRL_CLOSE_EVENT
3708 ? _("close")
3709 : dwCtrlType == CTRL_LOGOFF_EVENT
3710 ? _("logoff")
3711 : _("shutdown")));
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003712# ifdef DEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 OutputDebugString(IObuff);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003714# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715
Bram Moolenaar0f873732019-12-05 20:28:46 +01003716 preserve_exit(); // output IObuff, preserve files and exit
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717
Bram Moolenaar0f873732019-12-05 20:28:46 +01003718 return TRUE; // not reached
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719
3720 default:
3721 return FALSE;
3722 }
3723}
3724
3725
3726/*
3727 * set the tty in (raw) ? "raw" : "cooked" mode
3728 */
3729 void
Bram Moolenaar26e86442020-05-17 14:06:16 +02003730mch_settmode(tmode_T tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731{
3732 DWORD cmodein;
3733 DWORD cmodeout;
3734 BOOL bEnableHandler;
3735
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003736# ifdef VIMDLL
3737 if (gui.in_use)
3738 return;
3739# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 GetConsoleMode(g_hConIn, &cmodein);
3741 GetConsoleMode(g_hConOut, &cmodeout);
3742 if (tmode == TMODE_RAW)
3743 {
3744 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3745 ENABLE_ECHO_INPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 if (g_fMouseActive)
Wez Furlong6ef5ab52021-05-30 19:29:41 +02003747 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 cmodein |= ENABLE_MOUSE_INPUT;
Wez Furlong6ef5ab52021-05-30 19:29:41 +02003749 cmodein &= ~ENABLE_QUICK_EDIT_MODE;
3750 }
3751 else
3752 {
3753 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
3754 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003755 cmodeout &= ~(
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003756# ifdef FEAT_TERMGUICOLORS
Bram Moolenaar0f873732019-12-05 20:28:46 +01003757 // Do not turn off the ENABLE_PROCESSED_OUTPUT flag when using
3758 // VTP.
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003759 ((vtp_working) ? 0 : ENABLE_PROCESSED_OUTPUT) |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003760# else
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003761 ENABLE_PROCESSED_OUTPUT |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003762# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003763 ENABLE_WRAP_AT_EOL_OUTPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 bEnableHandler = TRUE;
3765 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01003766 else // cooked
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 {
3768 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3769 ENABLE_ECHO_INPUT);
3770 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3771 bEnableHandler = FALSE;
3772 }
Wez Furlong6ef5ab52021-05-30 19:29:41 +02003773 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 SetConsoleMode(g_hConOut, cmodeout);
3775 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3776
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003777# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 if (fdDump)
3779 {
3780 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3781 tmode == TMODE_RAW ? "raw" :
3782 tmode == TMODE_COOK ? "cooked" : "normal",
3783 cmodein, cmodeout);
3784 fflush(fdDump);
3785 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003786# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787}
3788
3789
3790/*
3791 * Get the size of the current window in `Rows' and `Columns'
3792 * Return OK when size could be determined, FAIL otherwise.
3793 */
3794 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003795mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796{
3797 CONSOLE_SCREEN_BUFFER_INFO csbi;
3798
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003799# ifdef VIMDLL
3800 if (gui.in_use)
3801 return OK;
3802# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3804 {
3805 /*
3806 * For some reason, we are trying to get the screen dimensions
3807 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3808 * variables are really intended to mean the size of Vim screen
3809 * while in termcap mode.
3810 */
3811 Rows = g_cbTermcap.Info.dwSize.Y;
3812 Columns = g_cbTermcap.Info.dwSize.X;
3813 }
3814 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3815 {
3816 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3817 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3818 }
3819 else
3820 {
3821 Rows = 25;
3822 Columns = 80;
3823 }
3824 return OK;
3825}
3826
3827/*
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003828 * Resize console buffer to 'COORD'
3829 */
3830 static void
3831ResizeConBuf(
3832 HANDLE hConsole,
3833 COORD coordScreen)
3834{
3835 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3836 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003837# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003838 if (fdDump)
3839 {
3840 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3841 GetLastError());
3842 fflush(fdDump);
3843 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003844# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003845 }
3846}
3847
3848/*
3849 * Resize console window size to 'srWindowRect'
3850 */
3851 static void
3852ResizeWindow(
3853 HANDLE hConsole,
3854 SMALL_RECT srWindowRect)
3855{
3856 if (!SetConsoleWindowInfo(hConsole, TRUE, &srWindowRect))
3857 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003858# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003859 if (fdDump)
3860 {
3861 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3862 GetLastError());
3863 fflush(fdDump);
3864 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003865# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003866 }
3867}
3868
3869/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 * Set a console window to `xSize' * `ySize'
3871 */
3872 static void
3873ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003874 HANDLE hConsole,
3875 int xSize,
3876 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003878 CONSOLE_SCREEN_BUFFER_INFO csbi; // hold current console buffer info
3879 SMALL_RECT srWindowRect; // hold the new console size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880 COORD coordScreen;
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003881 COORD cursor;
Bram Moolenaar2551c032018-08-23 22:38:31 +02003882 static int resized = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003884# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 if (fdDump)
3886 {
3887 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3888 fflush(fdDump);
3889 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003890# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891
Bram Moolenaar0f873732019-12-05 20:28:46 +01003892 // get the largest size we can size the console window to
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 coordScreen = GetLargestConsoleWindowSize(hConsole);
3894
Bram Moolenaar0f873732019-12-05 20:28:46 +01003895 // define the new console window size and scroll position
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3897 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3898 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3899
3900 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3901 {
3902 int sx, sy;
3903
3904 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3905 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3906 if (sy < ySize || sx < xSize)
3907 {
3908 /*
3909 * Increasing number of lines/columns, do buffer first.
3910 * Use the maximal size in x and y direction.
3911 */
3912 if (sy < ySize)
3913 coordScreen.Y = ySize;
3914 else
3915 coordScreen.Y = sy;
3916 if (sx < xSize)
3917 coordScreen.X = xSize;
3918 else
3919 coordScreen.X = sx;
3920 SetConsoleScreenBufferSize(hConsole, coordScreen);
3921 }
3922 }
3923
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003924 // define the new console buffer size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 coordScreen.X = xSize;
3926 coordScreen.Y = ySize;
3927
Bram Moolenaar2551c032018-08-23 22:38:31 +02003928 // In the new console call API, only the first time in reverse order
3929 if (!vtp_working || resized)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 {
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003931 ResizeWindow(hConsole, srWindowRect);
3932 ResizeConBuf(hConsole, coordScreen);
3933 }
3934 else
3935 {
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003936 // Workaround for a Windows 10 bug
3937 cursor.X = srWindowRect.Left;
3938 cursor.Y = srWindowRect.Top;
3939 SetConsoleCursorPosition(hConsole, cursor);
3940
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003941 ResizeConBuf(hConsole, coordScreen);
3942 ResizeWindow(hConsole, srWindowRect);
Bram Moolenaar2551c032018-08-23 22:38:31 +02003943 resized = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 }
3945}
3946
3947
3948/*
3949 * Set the console window to `Rows' * `Columns'
3950 */
3951 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003952mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953{
3954 COORD coordScreen;
3955
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003956# ifdef VIMDLL
3957 if (gui.in_use)
3958 return;
3959# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01003960 // Don't change window size while still starting up
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 if (suppress_winsize != 0)
3962 {
3963 suppress_winsize = 2;
3964 return;
3965 }
3966
3967 if (term_console)
3968 {
3969 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3970
Bram Moolenaar0f873732019-12-05 20:28:46 +01003971 // Clamp Rows and Columns to reasonable values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 if (Rows > coordScreen.Y)
3973 Rows = coordScreen.Y;
3974 if (Columns > coordScreen.X)
3975 Columns = coordScreen.X;
3976
3977 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3978 }
3979}
3980
3981/*
3982 * Rows and/or Columns has changed.
3983 */
3984 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003985mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003987# ifdef VIMDLL
3988 if (gui.in_use)
3989 return;
3990# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003991 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3992}
3993
3994
3995/*
3996 * Called when started up, to set the winsize that was delayed.
3997 */
3998 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003999mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000{
4001 if (suppress_winsize == 2)
4002 {
4003 suppress_winsize = 0;
4004 mch_set_shellsize();
4005 shell_resized();
4006 }
4007 suppress_winsize = 0;
4008}
Bram Moolenaar0f873732019-12-05 20:28:46 +01004009#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004011 static BOOL
4012vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01004013 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004014 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01004015 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004016 STARTUPINFO *si,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004017 PROCESS_INFORMATION *pi,
4018 LPVOID *env,
4019 char *cwd)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004020{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004021 BOOL ret = FALSE;
4022 WCHAR *wcmd, *wcwd = NULL;
4023
4024 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4025 if (wcmd == NULL)
4026 return FALSE;
4027 if (cwd != NULL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004028 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004029 wcwd = enc_to_utf16((char_u *)cwd, NULL);
4030 if (wcwd == NULL)
4031 goto theend;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004032 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004033
4034 ret = CreateProcessW(
4035 NULL, // Executable name
4036 wcmd, // Command to execute
4037 NULL, // Process security attributes
4038 NULL, // Thread security attributes
4039 inherit_handles, // Inherit handles
4040 flags, // Creation flags
4041 env, // Environment
4042 wcwd, // Current directory
4043 (LPSTARTUPINFOW)si, // Startup information
4044 pi); // Process information
4045theend:
4046 vim_free(wcmd);
4047 vim_free(wcwd);
4048 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004049}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050
4051
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004052 static HINSTANCE
4053vim_shell_execute(
4054 char *cmd,
4055 INT n_show_cmd)
4056{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004057 HINSTANCE ret;
4058 WCHAR *wcmd;
4059
4060 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4061 if (wcmd == NULL)
4062 return (HINSTANCE) 0;
4063
4064 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd);
4065 vim_free(wcmd);
4066 return ret;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004067}
4068
4069
Bram Moolenaar4f974752019-02-17 17:44:42 +01004070#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071
4072/*
4073 * Specialised version of system() for Win32 GUI mode.
4074 * This version proceeds as follows:
4075 * 1. Create a console window for use by the subprocess
4076 * 2. Run the subprocess (it gets the allocated console by default)
4077 * 3. Wait for the subprocess to terminate and get its exit code
4078 * 4. Prompt the user to press a key to close the console window
4079 */
4080 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004081mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082{
4083 STARTUPINFO si;
4084 PROCESS_INFORMATION pi;
4085 DWORD ret = 0;
4086 HWND hwnd = GetFocus();
4087
4088 si.cb = sizeof(si);
4089 si.lpReserved = NULL;
4090 si.lpDesktop = NULL;
4091 si.lpTitle = NULL;
4092 si.dwFlags = STARTF_USESHOWWINDOW;
4093 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004094 * It's nicer to run a filter command in a minimized window.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004095 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004097 if (options & SHELL_DOOUT)
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004098 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 else
4100 si.wShowWindow = SW_SHOWNORMAL;
4101 si.cbReserved2 = 0;
4102 si.lpReserved2 = NULL;
4103
Bram Moolenaar0f873732019-12-05 20:28:46 +01004104 // Now, run the command
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004105 vim_create_process(cmd, FALSE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004106 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE,
4107 &si, &pi, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108
Bram Moolenaar0f873732019-12-05 20:28:46 +01004109 // Wait for the command to terminate before continuing
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004111# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 int delay = 1;
4113
Bram Moolenaar0f873732019-12-05 20:28:46 +01004114 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 for (;;)
4116 {
4117 MSG msg;
4118
K.Takatab7057bd2022-01-21 11:37:07 +00004119 if (PeekMessageW(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 {
4121 TranslateMessage(&msg);
K.Takatab7057bd2022-01-21 11:37:07 +00004122 DispatchMessageW(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004123 delay = 1;
4124 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 }
4126 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4127 break;
4128
Bram Moolenaar0f873732019-12-05 20:28:46 +01004129 // We start waiting for a very short time and then increase it, so
4130 // that we respond quickly when the process is quick, and don't
4131 // consume too much overhead when it's slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 if (delay < 50)
4133 delay += 10;
4134 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004135# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 WaitForSingleObject(pi.hProcess, INFINITE);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004137# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138
Bram Moolenaar0f873732019-12-05 20:28:46 +01004139 // Get the command exit code
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140 GetExitCodeProcess(pi.hProcess, &ret);
4141 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142
Bram Moolenaar0f873732019-12-05 20:28:46 +01004143 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 CloseHandle(pi.hThread);
4145 CloseHandle(pi.hProcess);
4146
Bram Moolenaar0f873732019-12-05 20:28:46 +01004147 // Try to get input focus back. Doesn't always work though.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4149
4150 return ret;
4151}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004152
4153/*
4154 * Thread launched by the gui to send the current buffer data to the
4155 * process. This way avoid to hang up vim totally if the children
4156 * process take a long time to process the lines.
4157 */
Bram Moolenaar4c38d662016-08-03 20:54:57 +02004158 static unsigned int __stdcall
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004159sub_process_writer(LPVOID param)
4160{
4161 HANDLE g_hChildStd_IN_Wr = param;
4162 linenr_T lnum = curbuf->b_op_start.lnum;
4163 DWORD len = 0;
4164 DWORD l;
4165 char_u *lp = ml_get(lnum);
4166 char_u *s;
4167 int written = 0;
4168
4169 for (;;)
4170 {
4171 l = (DWORD)STRLEN(lp + written);
4172 if (l == 0)
4173 len = 0;
4174 else if (lp[written] == NL)
4175 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004176 // NL -> NUL translation
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004177 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4178 }
4179 else
4180 {
4181 s = vim_strchr(lp + written, NL);
4182 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4183 s == NULL ? l : (DWORD)(s - (lp + written)),
4184 &len, NULL);
4185 }
4186 if (len == (int)l)
4187 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004188 // Finished a line, add a NL, unless this line should not have
4189 // one.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004190 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004191 || (!curbuf->b_p_bin
4192 && curbuf->b_p_fixeol)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004193 || (lnum != curbuf->b_no_eol_lnum
4194 && (lnum != curbuf->b_ml.ml_line_count
4195 || curbuf->b_p_eol)))
4196 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02004197 WriteFile(g_hChildStd_IN_Wr, "\n", 1,
4198 (LPDWORD)&vim_ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004199 }
4200
4201 ++lnum;
4202 if (lnum > curbuf->b_op_end.lnum)
4203 break;
4204
4205 lp = ml_get(lnum);
4206 written = 0;
4207 }
4208 else if (len > 0)
4209 written += len;
4210 }
4211
Bram Moolenaar0f873732019-12-05 20:28:46 +01004212 // finished all the lines, close pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004213 CloseHandle(g_hChildStd_IN_Wr);
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004214 return 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004215}
4216
4217
Bram Moolenaar0f873732019-12-05 20:28:46 +01004218# define BUFLEN 100 // length for buffer, stolen from unix version
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004219
4220/*
4221 * This function read from the children's stdout and write the
4222 * data on screen or in the buffer accordingly.
4223 */
4224 static void
4225dump_pipe(int options,
4226 HANDLE g_hChildStd_OUT_Rd,
4227 garray_T *ga,
4228 char_u buffer[],
4229 DWORD *buffer_off)
4230{
4231 DWORD availableBytes = 0;
4232 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004233 int ret;
4234 DWORD len;
4235 DWORD toRead;
4236 int repeatCount;
4237
Bram Moolenaar0f873732019-12-05 20:28:46 +01004238 // we query the pipe to see if there is any data to read
4239 // to avoid to perform a blocking read
4240 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, // pipe to query
4241 NULL, // optional buffer
4242 0, // buffer size
4243 NULL, // number of read bytes
4244 &availableBytes, // available bytes total
4245 NULL); // byteLeft
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004246
4247 repeatCount = 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004248 // We got real data in the pipe, read it
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004249 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004250 {
4251 repeatCount++;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004252 toRead = (DWORD)(BUFLEN - *buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004253 toRead = availableBytes < toRead ? availableBytes : toRead;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004254 ReadFile(g_hChildStd_OUT_Rd, buffer + *buffer_off, toRead , &len, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004255
Bram Moolenaar0f873732019-12-05 20:28:46 +01004256 // If we haven't read anything, there is a problem
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004257 if (len == 0)
4258 break;
4259
4260 availableBytes -= len;
4261
4262 if (options & SHELL_READ)
4263 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004264 // Do NUL -> NL translation, append NL separated
4265 // lines to the current buffer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004266 for (i = 0; i < len; ++i)
4267 {
4268 if (buffer[i] == NL)
4269 append_ga_line(ga);
4270 else if (buffer[i] == NUL)
4271 ga_append(ga, NL);
4272 else
4273 ga_append(ga, buffer[i]);
4274 }
4275 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004276 else if (has_mbyte)
4277 {
4278 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004279 int c;
4280 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004281
4282 len += *buffer_off;
4283 buffer[len] = NUL;
4284
Bram Moolenaar0f873732019-12-05 20:28:46 +01004285 // Check if the last character in buffer[] is
4286 // incomplete, keep these bytes for the next
4287 // round.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004288 for (p = buffer; p < buffer + len; p += l)
4289 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004290 l = MB_CPTR2LEN(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004291 if (l == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004292 l = 1; // NUL byte?
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004293 else if (MB_BYTE2LEN(*p) != l)
4294 break;
4295 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004296 if (p == buffer) // no complete character
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004297 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004298 // avoid getting stuck at an illegal byte
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004299 if (len >= 12)
4300 ++p;
4301 else
4302 {
4303 *buffer_off = len;
4304 return;
4305 }
4306 }
4307 c = *p;
4308 *p = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004309 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004310 if (p < buffer + len)
4311 {
4312 *p = c;
4313 *buffer_off = (DWORD)((buffer + len) - p);
4314 mch_memmove(buffer, p, *buffer_off);
4315 return;
4316 }
4317 *buffer_off = 0;
4318 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004319 else
4320 {
4321 buffer[len] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004322 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004323 }
4324
4325 windgoto(msg_row, msg_col);
4326 cursor_on();
4327 out_flush();
4328 }
4329}
4330
4331/*
4332 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4333 * for communication and doesn't open any new window.
4334 */
4335 static int
4336mch_system_piped(char *cmd, int options)
4337{
4338 STARTUPINFO si;
4339 PROCESS_INFORMATION pi;
4340 DWORD ret = 0;
4341
4342 HANDLE g_hChildStd_IN_Rd = NULL;
4343 HANDLE g_hChildStd_IN_Wr = NULL;
4344 HANDLE g_hChildStd_OUT_Rd = NULL;
4345 HANDLE g_hChildStd_OUT_Wr = NULL;
4346
Bram Moolenaar0f873732019-12-05 20:28:46 +01004347 char_u buffer[BUFLEN + 1]; // reading buffer + size
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004348 DWORD len;
4349
Bram Moolenaar0f873732019-12-05 20:28:46 +01004350 // buffer used to receive keys
4351 char_u ta_buf[BUFLEN + 1]; // TypeAHead
4352 int ta_len = 0; // valid bytes in ta_buf[]
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004353
4354 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004355 int noread_cnt = 0;
4356 garray_T ga;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004357 int delay = 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004358 DWORD buffer_off = 0; // valid bytes in buffer[]
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004359 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004360
4361 SECURITY_ATTRIBUTES saAttr;
4362
Bram Moolenaar0f873732019-12-05 20:28:46 +01004363 // Set the bInheritHandle flag so pipe handles are inherited.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004364 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4365 saAttr.bInheritHandle = TRUE;
4366 saAttr.lpSecurityDescriptor = NULL;
4367
4368 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004369 // Ensure the read handle to the pipe for STDOUT is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004370 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004371 // Create a pipe for the child process's STDIN.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004372 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004373 // Ensure the write handle to the pipe for STDIN is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004374 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004375 {
4376 CloseHandle(g_hChildStd_IN_Rd);
4377 CloseHandle(g_hChildStd_IN_Wr);
4378 CloseHandle(g_hChildStd_OUT_Rd);
4379 CloseHandle(g_hChildStd_OUT_Wr);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004380 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004381 }
4382
4383 si.cb = sizeof(si);
4384 si.lpReserved = NULL;
4385 si.lpDesktop = NULL;
4386 si.lpTitle = NULL;
4387 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4388
Bram Moolenaar0f873732019-12-05 20:28:46 +01004389 // set-up our file redirection
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004390 si.hStdError = g_hChildStd_OUT_Wr;
4391 si.hStdOutput = g_hChildStd_OUT_Wr;
4392 si.hStdInput = g_hChildStd_IN_Rd;
4393 si.wShowWindow = SW_HIDE;
4394 si.cbReserved2 = 0;
4395 si.lpReserved2 = NULL;
4396
4397 if (options & SHELL_READ)
4398 ga_init2(&ga, 1, BUFLEN);
4399
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004400 if (cmd != NULL)
4401 {
4402 p = (char *)vim_strsave((char_u *)cmd);
4403 if (p != NULL)
4404 unescape_shellxquote((char_u *)p, p_sxe);
4405 else
4406 p = cmd;
4407 }
4408
Bram Moolenaar0f873732019-12-05 20:28:46 +01004409 // Now, run the command.
4410 // About "Inherit handles" being TRUE: this command can be litigious,
4411 // handle inheritance was deactivated for pending temp file, but, if we
4412 // deactivate it, the pipes don't work for some reason.
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004413 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE,
4414 &si, &pi, NULL, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004415
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004416 if (p != cmd)
4417 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004418
Bram Moolenaar0f873732019-12-05 20:28:46 +01004419 // Close our unused side of the pipes
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004420 CloseHandle(g_hChildStd_IN_Rd);
4421 CloseHandle(g_hChildStd_OUT_Wr);
4422
4423 if (options & SHELL_WRITE)
4424 {
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004425 HANDLE thread = (HANDLE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004426 _beginthreadex(NULL, // security attributes
4427 0, // default stack size
4428 sub_process_writer, // function to be executed
4429 g_hChildStd_IN_Wr, // parameter
4430 0, // creation flag, start immediately
4431 NULL); // we don't care about thread id
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004432 CloseHandle(thread);
4433 g_hChildStd_IN_Wr = NULL;
4434 }
4435
Bram Moolenaar0f873732019-12-05 20:28:46 +01004436 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004437 for (;;)
4438 {
4439 MSG msg;
4440
K.Takatab7057bd2022-01-21 11:37:07 +00004441 if (PeekMessageW(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004442 {
4443 TranslateMessage(&msg);
K.Takatab7057bd2022-01-21 11:37:07 +00004444 DispatchMessageW(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004445 }
4446
Bram Moolenaar0f873732019-12-05 20:28:46 +01004447 // write pipe information in the window
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004448 if ((options & (SHELL_READ|SHELL_WRITE))
4449# ifdef FEAT_GUI
4450 || gui.in_use
4451# endif
4452 )
4453 {
4454 len = 0;
4455 if (!(options & SHELL_EXPAND)
4456 && ((options &
4457 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4458 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4459# ifdef FEAT_GUI
4460 || gui.in_use
4461# endif
4462 )
4463 && (ta_len > 0 || noread_cnt > 4))
4464 {
4465 if (ta_len == 0)
4466 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004467 // Get extra characters when we don't have any. Reset the
4468 // counter and timer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004469 noread_cnt = 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004470 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4471 }
4472 if (ta_len > 0 || len > 0)
4473 {
4474 /*
4475 * For pipes: Check for CTRL-C: send interrupt signal to
4476 * child. Check for CTRL-D: EOF, close pipe to child.
4477 */
4478 if (len == 1 && cmd != NULL)
4479 {
4480 if (ta_buf[ta_len] == Ctrl_C)
4481 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004482 // Learn what exit code is expected, for
4483 // now put 9 as SIGKILL
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004484 TerminateProcess(pi.hProcess, 9);
4485 }
4486 if (ta_buf[ta_len] == Ctrl_D)
4487 {
4488 CloseHandle(g_hChildStd_IN_Wr);
4489 g_hChildStd_IN_Wr = NULL;
4490 }
4491 }
4492
Bram Moolenaarf4140482020-02-15 23:06:45 +01004493 term_replace_bs_del_keycode(ta_buf, ta_len, len);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004494
4495 /*
4496 * For pipes: echo the typed characters. For a pty this
4497 * does not seem to work.
4498 */
4499 for (i = ta_len; i < ta_len + len; ++i)
4500 {
4501 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4502 msg_putchar(ta_buf[i]);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004503 else if (has_mbyte)
4504 {
4505 int l = (*mb_ptr2len)(ta_buf + i);
4506
4507 msg_outtrans_len(ta_buf + i, l);
4508 i += l - 1;
4509 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004510 else
4511 msg_outtrans_len(ta_buf + i, 1);
4512 }
4513 windgoto(msg_row, msg_col);
4514 out_flush();
4515
4516 ta_len += len;
4517
4518 /*
4519 * Write the characters to the child, unless EOF has been
4520 * typed for pipes. Write one character at a time, to
4521 * avoid losing too much typeahead. When writing buffer
4522 * lines, drop the typed characters (only check for
4523 * CTRL-C).
4524 */
4525 if (options & SHELL_WRITE)
4526 ta_len = 0;
4527 else if (g_hChildStd_IN_Wr != NULL)
4528 {
4529 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4530 1, &len, NULL);
4531 // if we are typing in, we want to keep things reactive
4532 delay = 1;
4533 if (len > 0)
4534 {
4535 ta_len -= len;
4536 mch_memmove(ta_buf, ta_buf + len, ta_len);
4537 }
4538 }
4539 }
4540 }
4541 }
4542
4543 if (ta_len)
4544 ui_inchar_undo(ta_buf, ta_len);
4545
4546 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4547 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004548 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004549 break;
4550 }
4551
4552 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004553 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004554
Bram Moolenaar0f873732019-12-05 20:28:46 +01004555 // We start waiting for a very short time and then increase it, so
4556 // that we respond quickly when the process is quick, and don't
4557 // consume too much overhead when it's slow.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004558 if (delay < 50)
4559 delay += 10;
4560 }
4561
Bram Moolenaar0f873732019-12-05 20:28:46 +01004562 // Close the pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004563 CloseHandle(g_hChildStd_OUT_Rd);
4564 if (g_hChildStd_IN_Wr != NULL)
4565 CloseHandle(g_hChildStd_IN_Wr);
4566
4567 WaitForSingleObject(pi.hProcess, INFINITE);
4568
Bram Moolenaar0f873732019-12-05 20:28:46 +01004569 // Get the command exit code
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004570 GetExitCodeProcess(pi.hProcess, &ret);
4571
4572 if (options & SHELL_READ)
4573 {
4574 if (ga.ga_len > 0)
4575 {
4576 append_ga_line(&ga);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004577 // remember that the NL was missing
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004578 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4579 }
4580 else
4581 curbuf->b_no_eol_lnum = 0;
4582 ga_clear(&ga);
4583 }
4584
Bram Moolenaar0f873732019-12-05 20:28:46 +01004585 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004586 CloseHandle(pi.hThread);
4587 CloseHandle(pi.hProcess);
4588
4589 return ret;
4590}
4591
4592 static int
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004593mch_system_g(char *cmd, int options)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004594{
Bram Moolenaar0f873732019-12-05 20:28:46 +01004595 // if we can pipe and the shelltemp option is off
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004596 if (!p_stmp)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004597 return mch_system_piped(cmd, options);
4598 else
4599 return mch_system_classic(cmd, options);
4600}
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004601#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004603#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004604 static int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02004605mch_system_c(char *cmd, int options UNUSED)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004606{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004607 int ret;
4608 WCHAR *wcmd;
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004609 char_u *buf;
4610 size_t len;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004611
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004612 // If the command starts and ends with double quotes, enclose the command
4613 // in parentheses.
4614 len = STRLEN(cmd);
4615 if (len >= 2 && cmd[0] == '"' && cmd[len - 1] == '"')
4616 {
4617 len += 3;
4618 buf = alloc(len);
4619 if (buf == NULL)
4620 return -1;
4621 vim_snprintf((char *)buf, len, "(%s)", cmd);
4622 wcmd = enc_to_utf16(buf, NULL);
4623 free(buf);
4624 }
4625 else
4626 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4627
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004628 if (wcmd == NULL)
4629 return -1;
4630
4631 ret = _wsystem(wcmd);
4632 vim_free(wcmd);
4633 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004634}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635
4636#endif
4637
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004638 static int
4639mch_system(char *cmd, int options)
4640{
4641#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004642 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004643 return mch_system_g(cmd, options);
4644 else
4645 return mch_system_c(cmd, options);
4646#elif defined(FEAT_GUI_MSWIN)
4647 return mch_system_g(cmd, options);
4648#else
4649 return mch_system_c(cmd, options);
4650#endif
4651}
4652
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004653#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4654/*
4655 * Use a terminal window to run a shell command in.
4656 */
4657 static int
4658mch_call_shell_terminal(
4659 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004660 int options UNUSED) // SHELL_*, see vim.h
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004661{
4662 jobopt_T opt;
4663 char_u *newcmd = NULL;
4664 typval_T argvar[2];
4665 long_u cmdlen;
4666 int retval = -1;
4667 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004668 job_T *job;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004669 aco_save_T aco;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004670 oparg_T oa; // operator arguments
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004671
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004672 if (cmd == NULL)
4673 cmdlen = STRLEN(p_sh) + 1;
4674 else
4675 cmdlen = STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004676 newcmd = alloc(cmdlen);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004677 if (newcmd == NULL)
4678 return 255;
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004679 if (cmd == NULL)
4680 {
4681 STRCPY(newcmd, p_sh);
4682 ch_log(NULL, "starting terminal to run a shell");
4683 }
4684 else
4685 {
4686 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", p_sh, p_shcf, cmd);
4687 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4688 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004689
4690 init_job_options(&opt);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004691
4692 argvar[0].v_type = VAR_STRING;
4693 argvar[0].vval.v_string = newcmd;
4694 argvar[1].v_type = VAR_UNKNOWN;
4695 buf = term_start(argvar, NULL, &opt, TERM_START_SYSTEM);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004696 if (buf == NULL)
Bram Moolenaar9029b912019-03-21 19:58:00 +01004697 {
4698 vim_free(newcmd);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004699 return 255;
Bram Moolenaar9029b912019-03-21 19:58:00 +01004700 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004701
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004702 job = term_getjob(buf->b_term);
4703 ++job->jv_refcount;
4704
Bram Moolenaar0f873732019-12-05 20:28:46 +01004705 // Find a window to make "buf" curbuf.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004706 aucmd_prepbuf(&aco, buf);
4707
4708 clear_oparg(&oa);
4709 while (term_use_loop())
4710 {
4711 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4712 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004713 // If terminal_loop() returns OK we got a key that is handled
4714 // in Normal model. We don't do redrawing anyway.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004715 if (terminal_loop(TRUE) == OK)
4716 normal_cmd(&oa, TRUE);
4717 }
4718 else
4719 normal_cmd(&oa, TRUE);
4720 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004721 retval = job->jv_exitval;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004722 ch_log(NULL, "system command finished");
4723
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004724 job_unref(job);
4725
Bram Moolenaar0f873732019-12-05 20:28:46 +01004726 // restore curwin/curbuf and a few other things
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004727 aucmd_restbuf(&aco);
4728
4729 wait_return(TRUE);
4730 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4731
4732 vim_free(newcmd);
4733 return retval;
4734}
4735#endif
4736
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737/*
4738 * Either execute a command by calling the shell or start a new shell
4739 */
4740 int
4741mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004742 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004743 int options) // SHELL_*, see vim.h
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744{
4745 int x = 0;
4746 int tmode = cur_tmode;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004747 WCHAR szShellTitle[512];
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004748
Bram Moolenaar0f873732019-12-05 20:28:46 +01004749 // Change the title to reflect that we are in a subshell.
K.Takataeeec2542021-06-02 13:28:16 +02004750 if (GetConsoleTitleW(szShellTitle, ARRAY_LENGTH(szShellTitle) - 4) > 0)
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004751 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004752 if (cmd == NULL)
4753 wcscat(szShellTitle, L" :sh");
4754 else
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004755 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004756 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004757
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004758 if (wn != NULL)
4759 {
4760 wcscat(szShellTitle, L" - !");
4761 if ((wcslen(szShellTitle) + wcslen(wn) <
K.Takataeeec2542021-06-02 13:28:16 +02004762 ARRAY_LENGTH(szShellTitle)))
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004763 wcscat(szShellTitle, wn);
4764 SetConsoleTitleW(szShellTitle);
4765 vim_free(wn);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004766 }
4767 }
4768 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769
4770 out_flush();
4771
4772#ifdef MCH_WRITE_DUMP
4773 if (fdDump)
4774 {
4775 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4776 fflush(fdDump);
4777 }
4778#endif
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004779#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004780 // TODO: make the terminal window work with input or output redirected.
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004781 if (
4782# ifdef VIMDLL
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004783 gui.in_use &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004784# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004785 vim_strchr(p_go, GO_TERMINAL) != NULL
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004786 && (options & (SHELL_FILTER|SHELL_DOOUT|SHELL_WRITE|SHELL_READ)) == 0)
4787 {
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004788 char_u *cmdbase = cmd;
4789
Bram Moolenaar4d5c1262019-09-20 17:20:02 +02004790 if (cmdbase != NULL)
4791 // Skip a leading quote and (.
4792 while (*cmdbase == '"' || *cmdbase == '(')
4793 ++cmdbase;
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004794
4795 // Check the command does not begin with "start "
Bram Moolenaar36e7a822019-11-13 21:49:24 +01004796 if (cmdbase == NULL || STRNICMP(cmdbase, "start", 5) != 0
4797 || !VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004798 {
4799 // Use a terminal window to run the command in.
4800 x = mch_call_shell_terminal(cmd, options);
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004801 resettitle();
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004802 return x;
4803 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004804 }
4805#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806
4807 /*
4808 * Catch all deadly signals while running the external command, because a
4809 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4810 */
4811 signal(SIGINT, SIG_IGN);
4812#if defined(__GNUC__) && !defined(__MINGW32__)
4813 signal(SIGKILL, SIG_IGN);
4814#else
4815 signal(SIGBREAK, SIG_IGN);
4816#endif
4817 signal(SIGILL, SIG_IGN);
4818 signal(SIGFPE, SIG_IGN);
4819 signal(SIGSEGV, SIG_IGN);
4820 signal(SIGTERM, SIG_IGN);
4821 signal(SIGABRT, SIG_IGN);
4822
4823 if (options & SHELL_COOKED)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004824 settmode(TMODE_COOK); // set to normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825
4826 if (cmd == NULL)
4827 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004828 x = mch_system((char *)p_sh, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 }
4830 else
4831 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004832 // we use "command" or "cmd" to start the shell; slow but easy
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004833 char_u *newcmd = NULL;
4834 char_u *cmdbase = cmd;
4835 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004836
Bram Moolenaar0f873732019-12-05 20:28:46 +01004837 // Skip a leading ", ( and "(.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004838 if (*cmdbase == '"' )
4839 ++cmdbase;
4840 if (*cmdbase == '(')
4841 ++cmdbase;
4842
Bram Moolenaar1c465442017-03-12 20:10:05 +01004843 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004844 {
4845 STARTUPINFO si;
4846 PROCESS_INFORMATION pi;
4847 DWORD flags = CREATE_NEW_CONSOLE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004848 INT n_show_cmd = SW_SHOWNORMAL;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004849 char_u *p;
4850
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004851 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004852 si.cb = sizeof(si);
4853 si.lpReserved = NULL;
4854 si.lpDesktop = NULL;
4855 si.lpTitle = NULL;
4856 si.dwFlags = 0;
4857 si.cbReserved2 = 0;
4858 si.lpReserved2 = NULL;
4859
4860 cmdbase = skipwhite(cmdbase + 5);
4861 if ((STRNICMP(cmdbase, "/min", 4) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004862 && VIM_ISWHITE(cmdbase[4]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004863 {
4864 cmdbase = skipwhite(cmdbase + 4);
4865 si.dwFlags = STARTF_USESHOWWINDOW;
4866 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004867 n_show_cmd = SW_SHOWMINNOACTIVE;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004868 }
4869 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004870 && VIM_ISWHITE(cmdbase[2]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004871 {
4872 cmdbase = skipwhite(cmdbase + 2);
4873 flags = CREATE_NO_WINDOW;
4874 si.dwFlags = STARTF_USESTDHANDLES;
4875 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004876 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004877 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004878 NULL, // Security att.
4879 OPEN_EXISTING, // Open flags
4880 FILE_ATTRIBUTE_NORMAL, // File att.
4881 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004882 si.hStdOutput = si.hStdInput;
4883 si.hStdError = si.hStdInput;
4884 }
4885
Bram Moolenaar0f873732019-12-05 20:28:46 +01004886 // Remove a trailing ", ) and )" if they have a match
4887 // at the start of the command.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004888 if (cmdbase > cmd)
4889 {
4890 p = cmdbase + STRLEN(cmdbase);
4891 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4892 *--p = NUL;
4893 if (p > cmdbase && p[-1] == ')'
4894 && (*cmd =='(' || cmd[1] == '('))
4895 *--p = NUL;
4896 }
4897
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004898 newcmd = cmdbase;
4899 unescape_shellxquote(cmdbase, p_sxe);
4900
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004901 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004902 * If creating new console, arguments are passed to the
4903 * 'cmd.exe' as-is. If it's not, arguments are not treated
4904 * correctly for current 'cmd.exe'. So unescape characters in
4905 * shellxescape except '|' for avoiding to be treated as
4906 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004907 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004908 if (flags != CREATE_NEW_CONSOLE)
4909 {
4910 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004911 char_u *cmd_shell = mch_getenv("COMSPEC");
4912
4913 if (cmd_shell == NULL || *cmd_shell == NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004914 cmd_shell = (char_u *)default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004915
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004916 subcmd = vim_strsave_escaped_ext(cmdbase,
4917 (char_u *)"|", '^', FALSE);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004918 if (subcmd != NULL)
4919 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004920 // make "cmd.exe /c arguments"
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004921 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004922 newcmd = alloc(cmdlen);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004923 if (newcmd != NULL)
4924 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004925 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004926 else
4927 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004928 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004929 }
4930 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004931
4932 /*
4933 * Now, start the command as a process, so that it doesn't
4934 * inherit our handles which causes unpleasant dangling swap
4935 * files if we exit before the spawned process
4936 */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004937 if (vim_create_process((char *)newcmd, FALSE, flags,
4938 &si, &pi, NULL, NULL))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004939 x = 0;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004940 else if (vim_shell_execute((char *)newcmd, n_show_cmd)
4941 > (HINSTANCE)32)
4942 x = 0;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004943 else
4944 {
4945 x = -1;
Bram Moolenaar4f974752019-02-17 17:44:42 +01004946#ifdef FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004947# ifdef VIMDLL
4948 if (gui.in_use)
4949# endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00004950 emsg(_(e_command_not_found));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004951#endif
4952 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004953
4954 if (newcmd != cmdbase)
4955 vim_free(newcmd);
4956
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004957 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004958 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004959 // Close the handle to \\.\NUL created above.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004960 CloseHandle(si.hStdInput);
4961 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004962 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004963 CloseHandle(pi.hThread);
4964 CloseHandle(pi.hProcess);
4965 }
4966 else
4967 {
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004968 cmdlen =
Bram Moolenaar4f974752019-02-17 17:44:42 +01004969#ifdef FEAT_GUI_MSWIN
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004970 ((gui.in_use || gui.starting) ?
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004971 (!s_dont_use_vimrun && p_stmp ?
4972 STRLEN(vimrun_path) : STRLEN(p_sh) + STRLEN(p_shcf))
4973 : 0) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974#endif
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004975 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004976
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004977 newcmd = alloc(cmdlen);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004978 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01004980#if defined(FEAT_GUI_MSWIN)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004981 if (
4982# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004983 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004984# endif
4985 need_vimrun_warning)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 {
Bram Moolenaar63e43442016-11-19 17:28:44 +01004987 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
4988 "External commands will not pause after completion.\n"
4989 "See :help win32-vimrun for more information.");
4990 char *title = _("Vim Warning");
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004991 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
4992 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
Bram Moolenaar63e43442016-11-19 17:28:44 +01004993
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004994 if (wmsg != NULL && wtitle != NULL)
4995 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
4996 vim_free(wmsg);
4997 vim_free(wtitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 need_vimrun_warning = FALSE;
4999 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005000 if (
5001# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02005002 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005003# endif
5004 !s_dont_use_vimrun && p_stmp)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005005 // Use vimrun to execute the command. It opens a console
5006 // window, which can be closed without killing Vim.
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005007 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 vimrun_path,
5009 (msg_silent != 0 || (options & SHELL_DOOUT))
5010 ? "-s " : "",
5011 p_sh, p_shcf, cmd);
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005012 else if (
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005013# ifdef VIMDLL
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005014 (gui.in_use || gui.starting) &&
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005015# endif
Bram Moolenaar0e6bfb92019-07-31 20:53:56 +02005016 s_dont_use_vimrun && STRCMP(p_shcf, "/c") == 0)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005017 // workaround for the case that "vimrun" does not exist
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005018 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s %s %s",
5019 p_sh, p_shcf, p_sh, p_shcf, cmd);
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005020 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005022 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00005023 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01005025 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 }
5028 }
5029
5030 if (tmode == TMODE_RAW)
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005031 {
5032 // The shell may have messed with the mode, always set it.
5033 cur_tmode = TMODE_UNKNOWN;
Bram Moolenaar0f873732019-12-05 20:28:46 +01005034 settmode(TMODE_RAW); // set to raw mode
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005035 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036
Bram Moolenaar0f873732019-12-05 20:28:46 +01005037 // Print the return value, unless "vimrun" was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
Bram Moolenaar4f974752019-02-17 17:44:42 +01005039#if defined(FEAT_GUI_MSWIN)
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02005040 && ((gui.in_use || gui.starting) ?
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005041 ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp) : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042#endif
5043 )
5044 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005045 smsg(_("shell returned %d"), x);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 msg_putchar('\n');
5047 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 resettitle();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049
5050 signal(SIGINT, SIG_DFL);
5051#if defined(__GNUC__) && !defined(__MINGW32__)
5052 signal(SIGKILL, SIG_DFL);
5053#else
5054 signal(SIGBREAK, SIG_DFL);
5055#endif
5056 signal(SIGILL, SIG_DFL);
5057 signal(SIGFPE, SIG_DFL);
5058 signal(SIGSEGV, SIG_DFL);
5059 signal(SIGTERM, SIG_DFL);
5060 signal(SIGABRT, SIG_DFL);
5061
5062 return x;
5063}
5064
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005065#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005066 static HANDLE
5067job_io_file_open(
Bram Moolenaar972c3b82017-01-12 21:44:49 +01005068 char_u *fname,
5069 DWORD dwDesiredAccess,
5070 DWORD dwShareMode,
5071 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
5072 DWORD dwCreationDisposition,
5073 DWORD dwFlagsAndAttributes)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005074{
5075 HANDLE h;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005076 WCHAR *wn;
Bram Moolenaara12a1612019-01-24 16:39:02 +01005077
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005078 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005079 if (wn == NULL)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005080 return INVALID_HANDLE_VALUE;
5081
5082 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
5083 lpSecurityAttributes, dwCreationDisposition,
5084 dwFlagsAndAttributes, NULL);
5085 vim_free(wn);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005086 return h;
5087}
5088
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005089/*
5090 * Turn the dictionary "env" into a NUL separated list that can be used as the
5091 * environment argument of vim_create_process().
5092 */
Bram Moolenaarba6febd2017-10-30 21:56:23 +01005093 void
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005094win32_build_env(dict_T *env, garray_T *gap, int is_terminal)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005095{
5096 hashitem_T *hi;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005097 long_u todo = env != NULL ? env->dv_hashtab.ht_used : 0;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005098 LPVOID base = GetEnvironmentStringsW();
5099
Bram Moolenaar0f873732019-12-05 20:28:46 +01005100 // for last \0
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005101 if (ga_grow(gap, 1) == FAIL)
5102 return;
5103
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005104 if (env != NULL)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005105 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005106 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005107 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005108 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005109 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005110 typval_T *item = &dict_lookup(hi)->di_tv;
5111 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01005112 WCHAR *wval = enc_to_utf16(tv_get_string(item), NULL);
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005113 --todo;
5114 if (wkey != NULL && wval != NULL)
5115 {
5116 size_t n;
5117 size_t lkey = wcslen(wkey);
5118 size_t lval = wcslen(wval);
Bram Moolenaar60104f12017-08-14 23:25:04 +02005119
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005120 if (ga_grow(gap, (int)(lkey + lval + 2)) != OK)
5121 continue;
5122 for (n = 0; n < lkey; n++)
5123 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n];
5124 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'=';
5125 for (n = 0; n < lval; n++)
5126 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n];
5127 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5128 }
Bram Moolenaarbdace832019-03-02 10:13:42 +01005129 vim_free(wkey);
5130 vim_free(wval);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005131 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005132 }
5133 }
5134
Bram Moolenaar355757a2020-02-10 22:06:32 +01005135 if (base)
5136 {
5137 WCHAR *p = (WCHAR*) base;
5138
5139 // for last \0
5140 if (ga_grow(gap, 1) == FAIL)
5141 return;
5142
5143 while (*p != 0 || *(p + 1) != 0)
5144 {
5145 if (ga_grow(gap, 1) == OK)
5146 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
5147 p++;
5148 }
5149 FreeEnvironmentStrings(base);
5150 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5151 }
5152
Bram Moolenaar493359e2018-06-12 20:25:52 +02005153# if defined(FEAT_CLIENTSERVER) || defined(FEAT_TERMINAL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005154 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005155# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005156 char_u *servername = get_vim_var_str(VV_SEND_SERVER);
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005157 size_t servername_len = STRLEN(servername);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005158# endif
5159# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005160 char_u *version = get_vim_var_str(VV_VERSION);
5161 size_t version_len = STRLEN(version);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005162# endif
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005163 // size of "VIM_SERVERNAME=" and value,
5164 // plus "VIM_TERMINAL=" and value,
5165 // plus two terminating NULs
5166 size_t n = 0
Bram Moolenaar493359e2018-06-12 20:25:52 +02005167# ifdef FEAT_CLIENTSERVER
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005168 + 15 + servername_len
Bram Moolenaar493359e2018-06-12 20:25:52 +02005169# endif
5170# ifdef FEAT_TERMINAL
5171 + 13 + version_len + 2
5172# endif
5173 ;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005174
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005175 if (ga_grow(gap, (int)n) == OK)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005176 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005177# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005178 for (n = 0; n < 15; n++)
5179 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5180 (WCHAR)"VIM_SERVERNAME="[n];
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005181 for (n = 0; n < servername_len; n++)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005182 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5183 (WCHAR)servername[n];
5184 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
Bram Moolenaar493359e2018-06-12 20:25:52 +02005185# endif
5186# ifdef FEAT_TERMINAL
5187 if (is_terminal)
5188 {
5189 for (n = 0; n < 13; n++)
5190 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5191 (WCHAR)"VIM_TERMINAL="[n];
5192 for (n = 0; n < version_len; n++)
5193 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5194 (WCHAR)version[n];
5195 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5196 }
5197# endif
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005198 }
5199 }
Bram Moolenaar79c6b512018-06-12 21:11:12 +02005200# endif
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005201}
5202
Bram Moolenaarb091f302019-01-19 14:37:00 +01005203/*
5204 * Create a pair of pipes.
5205 * Return TRUE for success, FALSE for failure.
5206 */
5207 static BOOL
5208create_pipe_pair(HANDLE handles[2])
5209{
5210 static LONG s;
5211 char name[64];
5212 SECURITY_ATTRIBUTES sa;
5213
5214 sprintf(name, "\\\\?\\pipe\\vim-%08lx-%08lx",
5215 GetCurrentProcessId(),
5216 InterlockedIncrement(&s));
5217
5218 // Create named pipe. Max size of named pipe is 65535.
5219 handles[1] = CreateNamedPipe(
5220 name,
5221 PIPE_ACCESS_OUTBOUND | FILE_FLAG_OVERLAPPED,
5222 PIPE_TYPE_BYTE | PIPE_NOWAIT,
Bram Moolenaar24058382019-01-24 23:11:49 +01005223 1, MAX_NAMED_PIPE_SIZE, 0, 0, NULL);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005224
5225 if (handles[1] == INVALID_HANDLE_VALUE)
5226 return FALSE;
5227
5228 sa.nLength = sizeof(sa);
5229 sa.bInheritHandle = TRUE;
5230 sa.lpSecurityDescriptor = NULL;
5231
5232 handles[0] = CreateFile(name,
5233 FILE_GENERIC_READ,
5234 FILE_SHARE_READ, &sa,
5235 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
5236
5237 if (handles[0] == INVALID_HANDLE_VALUE)
5238 {
Bram Moolenaar6982f422019-02-16 16:48:01 +01005239 CloseHandle(handles[1]);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005240 return FALSE;
5241 }
5242
5243 return TRUE;
5244}
5245
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005246 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005247mch_job_start(char *cmd, job_T *job, jobopt_T *options)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005248{
5249 STARTUPINFO si;
5250 PROCESS_INFORMATION pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005251 HANDLE jo;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005252 SECURITY_ATTRIBUTES saAttr;
5253 channel_T *channel = NULL;
Bram Moolenaard8070362016-02-15 21:56:54 +01005254 HANDLE ifd[2];
5255 HANDLE ofd[2];
5256 HANDLE efd[2];
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005257 garray_T ga;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005258
5259 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5260 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5261 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
5262 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
5263 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5264 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
5265 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
5266
5267 if (use_out_for_err && use_null_for_out)
5268 use_null_for_err = TRUE;
Bram Moolenaard8070362016-02-15 21:56:54 +01005269
5270 ifd[0] = INVALID_HANDLE_VALUE;
5271 ifd[1] = INVALID_HANDLE_VALUE;
5272 ofd[0] = INVALID_HANDLE_VALUE;
5273 ofd[1] = INVALID_HANDLE_VALUE;
5274 efd[0] = INVALID_HANDLE_VALUE;
5275 efd[1] = INVALID_HANDLE_VALUE;
Bram Moolenaar04935fb2022-01-08 16:19:22 +00005276 ga_init2(&ga, sizeof(wchar_t), 500);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005277
Bram Moolenaar14207f42016-10-27 21:13:10 +02005278 jo = CreateJobObject(NULL, NULL);
5279 if (jo == NULL)
5280 {
5281 job->jv_status = JOB_FAILED;
5282 goto failed;
5283 }
5284
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005285 if (options->jo_env != NULL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005286 win32_build_env(options->jo_env, &ga, FALSE);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005287
Bram Moolenaar76467df2016-02-12 19:30:26 +01005288 ZeroMemory(&pi, sizeof(pi));
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005289 ZeroMemory(&si, sizeof(si));
5290 si.cb = sizeof(si);
Bram Moolenaard8070362016-02-15 21:56:54 +01005291 si.dwFlags |= STARTF_USESHOWWINDOW;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005292 si.wShowWindow = SW_HIDE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005293
Bram Moolenaard8070362016-02-15 21:56:54 +01005294 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5295 saAttr.bInheritHandle = TRUE;
5296 saAttr.lpSecurityDescriptor = NULL;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005297
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005298 if (use_file_for_in)
5299 {
5300 char_u *fname = options->jo_io_name[PART_IN];
5301
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005302 ifd[0] = job_io_file_open(fname, GENERIC_READ,
5303 FILE_SHARE_READ | FILE_SHARE_WRITE,
5304 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
5305 if (ifd[0] == INVALID_HANDLE_VALUE)
Bram Moolenaar94d01912016-03-08 13:48:51 +01005306 {
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00005307 semsg(_(e_cant_open_file_str), fname);
Bram Moolenaar94d01912016-03-08 13:48:51 +01005308 goto failed;
5309 }
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005310 }
Bram Moolenaarb091f302019-01-19 14:37:00 +01005311 else if (!use_null_for_in
5312 && (!create_pipe_pair(ifd)
5313 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005314 goto failed;
5315
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005316 if (use_file_for_out)
5317 {
5318 char_u *fname = options->jo_io_name[PART_OUT];
5319
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005320 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
5321 FILE_SHARE_READ | FILE_SHARE_WRITE,
5322 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5323 if (ofd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005324 {
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00005325 semsg(_(e_cant_open_file_str), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005326 goto failed;
5327 }
5328 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005329 else if (!use_null_for_out &&
5330 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005331 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005332 goto failed;
5333
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005334 if (use_file_for_err)
5335 {
5336 char_u *fname = options->jo_io_name[PART_ERR];
5337
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005338 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
5339 FILE_SHARE_READ | FILE_SHARE_WRITE,
5340 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5341 if (efd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005342 {
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00005343 semsg(_(e_cant_open_file_str), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005344 goto failed;
5345 }
5346 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005347 else if (!use_out_for_err && !use_null_for_err &&
5348 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005349 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaard8070362016-02-15 21:56:54 +01005350 goto failed;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005351
Bram Moolenaard8070362016-02-15 21:56:54 +01005352 si.dwFlags |= STARTF_USESTDHANDLES;
5353 si.hStdInput = ifd[0];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005354 si.hStdOutput = ofd[1];
5355 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
5356
5357 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5358 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005359 if (options->jo_set & JO_CHANNEL)
5360 {
5361 channel = options->jo_channel;
5362 if (channel != NULL)
5363 ++channel->ch_refcount;
5364 }
5365 else
5366 channel = add_channel();
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005367 if (channel == NULL)
5368 goto failed;
5369 }
Bram Moolenaard8070362016-02-15 21:56:54 +01005370
5371 if (!vim_create_process(cmd, TRUE,
Bram Moolenaar14207f42016-10-27 21:13:10 +02005372 CREATE_SUSPENDED |
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005373 CREATE_DEFAULT_ERROR_MODE |
5374 CREATE_NEW_PROCESS_GROUP |
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005375 CREATE_UNICODE_ENVIRONMENT |
Bram Moolenaar76467df2016-02-12 19:30:26 +01005376 CREATE_NEW_CONSOLE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005377 &si, &pi,
5378 ga.ga_data,
5379 (char *)options->jo_cwd))
Bram Moolenaar76467df2016-02-12 19:30:26 +01005380 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005381 CloseHandle(jo);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005382 job->jv_status = JOB_FAILED;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005383 goto failed;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005384 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005385
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005386 ga_clear(&ga);
5387
Bram Moolenaar14207f42016-10-27 21:13:10 +02005388 if (!AssignProcessToJobObject(jo, pi.hProcess))
5389 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005390 // if failing, switch the way to terminate
5391 // process with TerminateProcess.
Bram Moolenaar14207f42016-10-27 21:13:10 +02005392 CloseHandle(jo);
5393 jo = NULL;
5394 }
5395 ResumeThread(pi.hThread);
Bram Moolenaar75578a32016-03-10 16:33:31 +01005396 CloseHandle(pi.hThread);
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005397 job->jv_proc_info = pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005398 job->jv_job_object = jo;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005399 job->jv_status = JOB_STARTED;
5400
Bram Moolenaar641ad6c2016-09-01 18:32:11 +02005401 CloseHandle(ifd[0]);
5402 CloseHandle(ofd[1]);
5403 if (!use_out_for_err && !use_null_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005404 CloseHandle(efd[1]);
Bram Moolenaard8070362016-02-15 21:56:54 +01005405
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005406 job->jv_channel = channel;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005407 if (channel != NULL)
5408 {
5409 channel_set_pipes(channel,
5410 use_file_for_in || use_null_for_in
5411 ? INVALID_FD : (sock_T)ifd[1],
5412 use_file_for_out || use_null_for_out
5413 ? INVALID_FD : (sock_T)ofd[0],
5414 use_out_for_err || use_file_for_err || use_null_for_err
5415 ? INVALID_FD : (sock_T)efd[0]);
5416 channel_set_job(channel, job, options);
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005417 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005418 return;
5419
5420failed:
Bram Moolenaard8070362016-02-15 21:56:54 +01005421 CloseHandle(ifd[0]);
5422 CloseHandle(ofd[0]);
5423 CloseHandle(efd[0]);
5424 CloseHandle(ifd[1]);
5425 CloseHandle(ofd[1]);
5426 CloseHandle(efd[1]);
Bram Moolenaarde279892016-03-11 22:19:44 +01005427 channel_unref(channel);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005428 ga_clear(&ga);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005429}
5430
5431 char *
5432mch_job_status(job_T *job)
5433{
5434 DWORD dwExitCode = 0;
5435
Bram Moolenaar76467df2016-02-12 19:30:26 +01005436 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
5437 || dwExitCode != STILL_ACTIVE)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005438 {
Bram Moolenaareab089d2016-02-21 19:32:02 +01005439 job->jv_exitval = (int)dwExitCode;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005440 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005441 {
5442 ch_log(job->jv_channel, "Job ended");
5443 job->jv_status = JOB_ENDED;
5444 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005445 return "dead";
5446 }
5447 return "run";
5448}
5449
Bram Moolenaar97792de2016-10-15 18:36:49 +02005450 job_T *
5451mch_detect_ended_job(job_T *job_list)
5452{
5453 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
5454 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
5455 job_T *job = job_list;
5456
5457 while (job != NULL)
5458 {
5459 DWORD n;
5460 DWORD result;
5461
5462 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
5463 && job != NULL; job = job->jv_next)
5464 {
5465 if (job->jv_status == JOB_STARTED)
5466 {
5467 jobHandles[n] = job->jv_proc_info.hProcess;
5468 jobArray[n] = job;
5469 ++n;
5470 }
5471 }
5472 if (n == 0)
5473 continue;
5474 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
5475 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
5476 {
5477 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
5478
5479 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
5480 return wait_job;
5481 }
5482 }
5483 return NULL;
5484}
5485
Bram Moolenaarfb630902016-10-29 14:55:00 +02005486 static BOOL
5487terminate_all(HANDLE process, int code)
5488{
5489 PROCESSENTRY32 pe;
5490 HANDLE h = INVALID_HANDLE_VALUE;
5491 DWORD pid = GetProcessId(process);
5492
5493 if (pid != 0)
5494 {
5495 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5496 if (h != INVALID_HANDLE_VALUE)
5497 {
5498 pe.dwSize = sizeof(PROCESSENTRY32);
5499 if (!Process32First(h, &pe))
5500 goto theend;
5501
5502 do
5503 {
5504 if (pe.th32ParentProcessID == pid)
5505 {
5506 HANDLE ph = OpenProcess(
5507 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
5508 if (ph != NULL)
5509 {
5510 terminate_all(ph, code);
5511 CloseHandle(ph);
5512 }
5513 }
5514 } while (Process32Next(h, &pe));
5515
5516 CloseHandle(h);
5517 }
5518 }
5519
5520theend:
5521 return TerminateProcess(process, code);
5522}
5523
5524/*
5525 * Send a (deadly) signal to "job".
5526 * Return FAIL if it didn't work.
5527 */
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005528 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005529mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005530{
Bram Moolenaar923d9262016-02-25 20:56:01 +01005531 int ret;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005532
Bram Moolenaar923d9262016-02-25 20:56:01 +01005533 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
Bram Moolenaar76467df2016-02-12 19:30:26 +01005534 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005535 // deadly signal
Bram Moolenaar14207f42016-10-27 21:13:10 +02005536 if (job->jv_job_object != NULL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005537 {
5538 if (job->jv_channel != NULL && job->jv_channel->ch_anonymous_pipe)
5539 job->jv_channel->ch_killing = TRUE;
K.Takata135e1522022-01-29 15:27:58 +00005540 return TerminateJobObject(job->jv_job_object, (UINT)-1) ? OK : FAIL;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005541 }
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005542 return terminate_all(job->jv_proc_info.hProcess, -1) ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005543 }
5544
5545 if (!AttachConsole(job->jv_proc_info.dwProcessId))
5546 return FAIL;
5547 ret = GenerateConsoleCtrlEvent(
Bram Moolenaar923d9262016-02-25 20:56:01 +01005548 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
5549 job->jv_proc_info.dwProcessId)
5550 ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005551 FreeConsole();
5552 return ret;
5553}
5554
5555/*
5556 * Clear the data related to "job".
5557 */
5558 void
5559mch_clear_job(job_T *job)
5560{
5561 if (job->jv_status != JOB_FAILED)
5562 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005563 if (job->jv_job_object != NULL)
5564 CloseHandle(job->jv_job_object);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005565 CloseHandle(job->jv_proc_info.hProcess);
5566 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005567}
5568#endif
5569
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005571#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572
5573/*
5574 * Start termcap mode
5575 */
5576 static void
5577termcap_mode_start(void)
5578{
5579 DWORD cmodein;
5580
5581 if (g_fTermcapMode)
5582 return;
5583
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005584 if (!p_rs && USE_VTP)
5585 vtp_printf("\033[?1049h");
5586
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587 SaveConsoleBuffer(&g_cbNonTermcap);
5588
5589 if (g_cbTermcap.IsValid)
5590 {
5591 /*
5592 * We've been in termcap mode before. Restore certain screen
5593 * characteristics, including the buffer size and the window
5594 * size. Since we will be redrawing the screen, we don't need
5595 * to restore the actual contents of the buffer.
5596 */
5597 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005598 reset_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
5600 Rows = g_cbTermcap.Info.dwSize.Y;
5601 Columns = g_cbTermcap.Info.dwSize.X;
5602 }
5603 else
5604 {
5605 /*
5606 * This is our first time entering termcap mode. Clear the console
5607 * screen buffer, and resize the buffer to match the current window
5608 * size. We will use this as the size of our editing environment.
5609 */
5610 ClearConsoleBuffer(g_attrCurrent);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005611 set_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
5613 }
5614
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 resettitle();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616
5617 GetConsoleMode(g_hConIn, &cmodein);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 if (g_fMouseActive)
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005619 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 cmodein |= ENABLE_MOUSE_INPUT;
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005621 cmodein &= ~ENABLE_QUICK_EDIT_MODE;
5622 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 else
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005624 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625 cmodein &= ~ENABLE_MOUSE_INPUT;
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005626 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
5627 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 cmodein |= ENABLE_WINDOW_INPUT;
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005629 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630
5631 redraw_later_clear();
5632 g_fTermcapMode = TRUE;
5633}
5634
5635
5636/*
5637 * End termcap mode
5638 */
5639 static void
5640termcap_mode_end(void)
5641{
5642 DWORD cmodein;
5643 ConsoleBuffer *cb;
5644 COORD coord;
5645 DWORD dwDummy;
5646
5647 if (!g_fTermcapMode)
5648 return;
5649
5650 SaveConsoleBuffer(&g_cbTermcap);
5651
5652 GetConsoleMode(g_hConIn, &cmodein);
5653 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005654 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
5655 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005657# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005658 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005659# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 cb = &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005661# endif
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005662 RestoreConsoleBuffer(cb, p_rs);
Bram Moolenaardf543822020-01-30 11:53:59 +01005663 restore_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664 SetConsoleCursorInfo(g_hConOut, &g_cci);
5665
5666 if (p_rs || exiting)
5667 {
5668 /*
5669 * Clear anything that happens to be on the current line.
5670 */
5671 coord.X = 0;
5672 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
5673 FillConsoleOutputCharacter(g_hConOut, ' ',
5674 cb->Info.dwSize.X, coord, &dwDummy);
5675 /*
5676 * The following is just for aesthetics. If we are exiting without
5677 * restoring the screen, then we want to have a prompt string
5678 * appear at the bottom line. However, the command interpreter
5679 * seems to always advance the cursor one line before displaying
5680 * the prompt string, which causes the screen to scroll. To
5681 * counter this, move the cursor up one line before exiting.
5682 */
5683 if (exiting && !p_rs)
5684 coord.Y--;
5685 /*
5686 * Position the cursor at the leftmost column of the desired row.
5687 */
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005688 SetConsoleCursorPosition(g_hConOut, coord);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 }
5690
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005691 if (!p_rs && USE_VTP)
Bram Moolenaar0afdcf82020-04-01 18:29:10 +02005692 vtp_printf("\033[?1049l");
5693
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694 g_fTermcapMode = FALSE;
5695}
Bram Moolenaar0f873732019-12-05 20:28:46 +01005696#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697
5698
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005699#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700 void
5701mch_write(
Bram Moolenaar1266d672017-02-01 13:43:36 +01005702 char_u *s UNUSED,
5703 int len UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704{
Bram Moolenaar0f873732019-12-05 20:28:46 +01005705 // never used
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706}
5707
5708#else
5709
5710/*
5711 * clear `n' chars, starting from `coord'
5712 */
5713 static void
5714clear_chars(
5715 COORD coord,
5716 DWORD n)
5717{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005718 if (!USE_VTP)
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02005719 {
5720 DWORD dwDummy;
5721
5722 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5723 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord,
5724 &dwDummy);
5725 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005726 else
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02005727 {
5728 set_console_color_rgb();
5729 gotoxy(coord.X + 1, coord.Y + 1);
5730 vtp_printf("\033[%dX", n);
5731 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732}
5733
5734
5735/*
5736 * Clear the screen
5737 */
5738 static void
5739clear_screen(void)
5740{
5741 g_coord.X = g_coord.Y = 0;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005742
5743 if (!USE_VTP)
5744 clear_chars(g_coord, Rows * Columns);
5745 else
5746 {
5747 set_console_color_rgb();
5748 gotoxy(1, 1);
5749 vtp_printf("\033[2J");
5750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751}
5752
5753
5754/*
5755 * Clear to end of display
5756 */
5757 static void
5758clear_to_end_of_display(void)
5759{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005760 COORD save = g_coord;
5761
5762 if (!USE_VTP)
5763 clear_chars(g_coord, (Rows - g_coord.Y - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764 * Columns + (Columns - g_coord.X));
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005765 else
5766 {
5767 set_console_color_rgb();
5768 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5769 vtp_printf("\033[0J");
5770
5771 gotoxy(save.X + 1, save.Y + 1);
5772 g_coord = save;
5773 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774}
5775
5776
5777/*
5778 * Clear to end of line
5779 */
5780 static void
5781clear_to_end_of_line(void)
5782{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005783 COORD save = g_coord;
5784
5785 if (!USE_VTP)
5786 clear_chars(g_coord, Columns - g_coord.X);
5787 else
5788 {
5789 set_console_color_rgb();
5790 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5791 vtp_printf("\033[0K");
5792
5793 gotoxy(save.X + 1, save.Y + 1);
5794 g_coord = save;
5795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005796}
5797
5798
5799/*
5800 * Scroll the scroll region up by `cLines' lines
5801 */
5802 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005803scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804{
5805 COORD oldcoord = g_coord;
5806
5807 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5808 delete_lines(cLines);
5809
5810 g_coord = oldcoord;
5811}
5812
5813
5814/*
5815 * Set the scroll region
5816 */
5817 static void
5818set_scroll_region(
5819 unsigned left,
5820 unsigned top,
5821 unsigned right,
5822 unsigned bottom)
5823{
5824 if (left >= right
5825 || top >= bottom
5826 || right > (unsigned) Columns - 1
5827 || bottom > (unsigned) Rows - 1)
5828 return;
5829
5830 g_srScrollRegion.Left = left;
5831 g_srScrollRegion.Top = top;
5832 g_srScrollRegion.Right = right;
5833 g_srScrollRegion.Bottom = bottom;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005834}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005835
Bram Moolenaar6982f422019-02-16 16:48:01 +01005836 static void
5837set_scroll_region_tb(
5838 unsigned top,
5839 unsigned bottom)
5840{
5841 if (top >= bottom || bottom > (unsigned)Rows - 1)
5842 return;
5843
5844 g_srScrollRegion.Top = top;
5845 g_srScrollRegion.Bottom = bottom;
5846}
5847
5848 static void
5849set_scroll_region_lr(
5850 unsigned left,
5851 unsigned right)
5852{
5853 if (left >= right || right > (unsigned)Columns - 1)
5854 return;
5855
5856 g_srScrollRegion.Left = left;
5857 g_srScrollRegion.Right = right;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858}
5859
5860
5861/*
5862 * Insert `cLines' lines at the current cursor position
5863 */
5864 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005865insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005867 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868 COORD dest;
5869 CHAR_INFO fill;
5870
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005871 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5872
Bram Moolenaar6982f422019-02-16 16:48:01 +01005873 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 dest.Y = g_coord.Y + cLines;
5875
Bram Moolenaar6982f422019-02-16 16:48:01 +01005876 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877 source.Top = g_coord.Y;
5878 source.Right = g_srScrollRegion.Right;
5879 source.Bottom = g_srScrollRegion.Bottom - cLines;
5880
Bram Moolenaar6982f422019-02-16 16:48:01 +01005881 clip.Left = g_srScrollRegion.Left;
5882 clip.Top = g_coord.Y;
5883 clip.Right = g_srScrollRegion.Right;
5884 clip.Bottom = g_srScrollRegion.Bottom;
5885
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005886 fill.Char.AsciiChar = ' ';
5887 if (!USE_VTP)
5888 fill.Attributes = g_attrCurrent;
5889 else
5890 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005892 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005893
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005894 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5895
Bram Moolenaar6982f422019-02-16 16:48:01 +01005896 // Here we have to deal with a win32 console flake: If the scroll
5897 // region looks like abc and we scroll c to a and fill with d we get
5898 // cbd... if we scroll block c one line at a time to a, we get cdd...
5899 // vim expects cdd consistently... So we have to deal with that
5900 // here... (this also occurs scrolling the same way in the other
5901 // direction).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902
5903 if (source.Bottom < dest.Y)
5904 {
5905 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005906 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907
Bram Moolenaar6982f422019-02-16 16:48:01 +01005908 coord.X = source.Left;
5909 for (i = clip.Top; i < dest.Y; ++i)
5910 {
5911 coord.Y = i;
5912 clear_chars(coord, source.Right - source.Left + 1);
5913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005915
5916 if (USE_WT)
5917 {
5918 COORD coord;
5919 int i;
5920
5921 coord.X = source.Left;
5922 for (i = source.Top; i < dest.Y; ++i)
5923 {
5924 coord.Y = i;
5925 clear_chars(coord, source.Right - source.Left + 1);
5926 }
5927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928}
5929
5930
5931/*
5932 * Delete `cLines' lines at the current cursor position
5933 */
5934 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005935delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005937 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 COORD dest;
5939 CHAR_INFO fill;
5940 int nb;
5941
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005942 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5943
Bram Moolenaar6982f422019-02-16 16:48:01 +01005944 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945 dest.Y = g_coord.Y;
5946
Bram Moolenaar6982f422019-02-16 16:48:01 +01005947 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 source.Top = g_coord.Y + cLines;
5949 source.Right = g_srScrollRegion.Right;
5950 source.Bottom = g_srScrollRegion.Bottom;
5951
Bram Moolenaar6982f422019-02-16 16:48:01 +01005952 clip.Left = g_srScrollRegion.Left;
5953 clip.Top = g_coord.Y;
5954 clip.Right = g_srScrollRegion.Right;
5955 clip.Bottom = g_srScrollRegion.Bottom;
5956
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005957 fill.Char.AsciiChar = ' ';
5958 if (!USE_VTP)
5959 fill.Attributes = g_attrCurrent;
5960 else
5961 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005963 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005964
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005965 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5966
Bram Moolenaar6982f422019-02-16 16:48:01 +01005967 // Here we have to deal with a win32 console flake; See insert_lines()
5968 // above.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005969
5970 nb = dest.Y + (source.Bottom - source.Top) + 1;
5971
5972 if (nb < source.Top)
5973 {
5974 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005975 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976
Bram Moolenaar6982f422019-02-16 16:48:01 +01005977 coord.X = source.Left;
5978 for (i = nb; i < clip.Bottom; ++i)
5979 {
5980 coord.Y = i;
5981 clear_chars(coord, source.Right - source.Left + 1);
5982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005984
5985 if (USE_WT)
5986 {
5987 COORD coord;
5988 int i;
5989
5990 coord.X = source.Left;
5991 for (i = nb; i <= source.Bottom; ++i)
5992 {
5993 coord.Y = i;
5994 clear_chars(coord, source.Right - source.Left + 1);
5995 }
5996 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997}
5998
5999
6000/*
Bram Moolenaar2313b612019-09-27 14:14:32 +02006001 * Set the cursor position to (x,y) (1-based).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006002 */
6003 static void
6004gotoxy(
6005 unsigned x,
6006 unsigned y)
6007{
6008 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
6009 return;
6010
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006011 if (!USE_VTP)
Bram Moolenaar2313b612019-09-27 14:14:32 +02006012 {
Bram Moolenaar82e743c2020-03-26 15:39:53 +01006013 // There are reports of double-width characters not displayed
6014 // correctly. This workaround should fix it, similar to how it's done
6015 // for VTP.
6016 g_coord.X = 0;
6017 SetConsoleCursorPosition(g_hConOut, g_coord);
6018
Bram Moolenaar2313b612019-09-27 14:14:32 +02006019 // external cursor coords are 1-based; internal are 0-based
6020 g_coord.X = x - 1;
6021 g_coord.Y = y - 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006022 SetConsoleCursorPosition(g_hConOut, g_coord);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006023 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006024 else
Bram Moolenaar2313b612019-09-27 14:14:32 +02006025 {
6026 // Move the cursor to the left edge of the screen to prevent screen
Bram Moolenaara1299742019-10-10 16:36:00 +02006027 // destruction. Insider build bug. Always enabled because it's cheap
6028 // and avoids mistakes with recognizing the build.
6029 vtp_printf("\033[%d;%dH", g_coord.Y + 1, 1);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006030
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006031 vtp_printf("\033[%d;%dH", y, x);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006032
6033 g_coord.X = x - 1;
6034 g_coord.Y = y - 1;
6035 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036}
6037
6038
6039/*
6040 * Set the current text attribute = (foreground | background)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006041 * See ../runtime/doc/os_win32.txt for the numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042 */
6043 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006044textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006046 g_attrCurrent = wAttr & 0xff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047
6048 SetConsoleTextAttribute(g_hConOut, wAttr);
6049}
6050
6051
6052 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006053textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006055 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006057 if (!USE_VTP)
6058 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6059 else
6060 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061}
6062
6063
6064 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006065textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006067 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006069 if (!USE_VTP)
6070 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6071 else
6072 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073}
6074
6075
6076/*
6077 * restore the default text attribute (whatever we started with)
6078 */
6079 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006080normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006082 if (!USE_VTP)
6083 textattr(g_attrDefault);
6084 else
6085 vtp_sgr_bulk(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086}
6087
6088
6089static WORD g_attrPreStandout = 0;
6090
6091/*
6092 * Make the text standout, by brightening it
6093 */
6094 static void
6095standout(void)
6096{
6097 g_attrPreStandout = g_attrCurrent;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006098
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
6100}
6101
6102
6103/*
6104 * Turn off standout mode
6105 */
6106 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006107standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006108{
6109 if (g_attrPreStandout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006110 textattr(g_attrPreStandout);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006111
6112 g_attrPreStandout = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113}
6114
6115
6116/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00006117 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118 */
6119 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006120mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121{
6122 char_u *p;
6123 int n;
6124
6125 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
6126 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006127 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006128# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006129 !p_tgc &&
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006130# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006131 T_ME[0] == ESC && T_ME[1] == '|')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132 {
6133 p = T_ME + 2;
6134 n = getdigits(&p);
6135 if (*p == 'm' && n > 0)
6136 {
6137 cterm_normal_fg_color = (n & 0xf) + 1;
6138 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
6139 }
6140 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006141# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006142 cterm_normal_fg_gui_color = INVALCOLOR;
6143 cterm_normal_bg_gui_color = INVALCOLOR;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006144# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145}
6146
6147
6148/*
6149 * visual bell: flash the screen
6150 */
6151 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006152visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153{
6154 COORD coordOrigin = {0, 0};
6155 WORD attrFlash = ~g_attrCurrent & 0xff;
6156
6157 DWORD dwDummy;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006158 LPWORD oldattrs = ALLOC_MULT(WORD, Rows * Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159
6160 if (oldattrs == NULL)
6161 return;
6162 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
6163 coordOrigin, &dwDummy);
6164 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
6165 coordOrigin, &dwDummy);
6166
Bram Moolenaar0f873732019-12-05 20:28:46 +01006167 Sleep(15); // wait for 15 msec
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006168 if (!USE_VTP)
6169 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170 coordOrigin, &dwDummy);
6171 vim_free(oldattrs);
6172}
6173
6174
6175/*
6176 * Make the cursor visible or invisible
6177 */
6178 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006179cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180{
6181 s_cursor_visible = fVisible;
Bram Moolenaar2695de62020-04-17 21:13:01 +02006182
6183 if (USE_VTP)
6184 vtp_printf("\033[?25%c", fVisible ? 'h' : 'l');
6185
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006186# ifdef MCH_CURSOR_SHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187 mch_update_cursor();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006188# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189}
6190
6191
6192/*
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006193 * Write "cbToWrite" bytes in `pchBuf' to the screen.
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006194 * Returns the number of bytes actually written (at least one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006196 static DWORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197write_chars(
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006198 char_u *pchBuf,
6199 DWORD cbToWrite)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006201 COORD coord = g_coord;
6202 DWORD written;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006203 DWORD n, cchwritten;
6204 static DWORD cells;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006205 static WCHAR *unicodebuf = NULL;
6206 static int unibuflen = 0;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006207 static int length;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006208 int cp = enc_utf8 ? CP_UTF8 : enc_codepage;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006209 static WCHAR *utf8spbuf = NULL;
6210 static int utf8splength;
6211 static DWORD utf8spcells;
6212 static WCHAR **utf8usingbuf = &unicodebuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006214 if (cbToWrite != 1 || *pchBuf != ' ' || !enc_utf8)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006215 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006216 utf8usingbuf = &unicodebuf;
6217 do
6218 {
6219 length = MultiByteToWideChar(cp, 0, (LPCSTR)pchBuf, cbToWrite,
6220 unicodebuf, unibuflen);
6221 if (length && length <= unibuflen)
6222 break;
6223 vim_free(unicodebuf);
6224 unicodebuf = length ? LALLOC_MULT(WCHAR, length) : NULL;
6225 unibuflen = unibuflen ? 0 : length;
6226 } while(1);
6227 cells = mb_string2cells(pchBuf, cbToWrite);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006228 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006229 else // cbToWrite == 1 && *pchBuf == ' ' && enc_utf8
6230 {
6231 if (utf8usingbuf != &utf8spbuf)
6232 {
6233 if (utf8spbuf == NULL)
6234 {
6235 cells = mb_string2cells((char_u *)" ", 1);
6236 length = MultiByteToWideChar(CP_UTF8, 0, " ", 1, NULL, 0);
6237 utf8spbuf = LALLOC_MULT(WCHAR, length);
6238 if (utf8spbuf != NULL)
6239 {
6240 MultiByteToWideChar(CP_UTF8, 0, " ", 1, utf8spbuf, length);
6241 utf8usingbuf = &utf8spbuf;
6242 utf8splength = length;
6243 utf8spcells = cells;
6244 }
6245 }
6246 else
6247 {
6248 utf8usingbuf = &utf8spbuf;
6249 length = utf8splength;
6250 cells = utf8spcells;
6251 }
6252 }
6253 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006254
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006255 if (!USE_VTP)
6256 {
6257 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
6258 coord, &written);
6259 // When writing fails or didn't write a single character, pretend one
6260 // character was written, otherwise we get stuck.
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006261 if (WriteConsoleOutputCharacterW(g_hConOut, *utf8usingbuf, length,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006262 coord, &cchwritten) == 0
6263 || cchwritten == 0 || cchwritten == (DWORD)-1)
6264 cchwritten = 1;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006265 }
6266 else
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006267 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006268 if (WriteConsoleW(g_hConOut, *utf8usingbuf, length, &cchwritten,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006269 NULL) == 0 || cchwritten == 0)
6270 cchwritten = 1;
6271 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006272
K.Takata135e1522022-01-29 15:27:58 +00006273 if (cchwritten == (DWORD)length)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006274 {
6275 written = cbToWrite;
6276 g_coord.X += (SHORT)cells;
6277 }
6278 else
6279 {
6280 char_u *p = pchBuf;
6281 for (n = 0; n < cchwritten; n++)
6282 MB_CPTR_ADV(p);
6283 written = p - pchBuf;
6284 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006285 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286
6287 while (g_coord.X > g_srScrollRegion.Right)
6288 {
6289 g_coord.X -= (SHORT) Columns;
6290 if (g_coord.Y < g_srScrollRegion.Bottom)
6291 g_coord.Y++;
6292 }
6293
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006294 // Cursor under VTP is always in the correct position, no need to reset.
6295 if (!USE_VTP)
6296 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297
6298 return written;
6299}
6300
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006301 static char_u *
6302get_seq(
6303 int *args,
6304 int *count,
6305 char_u *head)
6306{
6307 int argc;
6308 char_u *p;
6309
6310 if (head == NULL || *head != '\033')
6311 return NULL;
6312
6313 argc = 0;
6314 p = head;
6315 ++p;
6316 do
6317 {
6318 ++p;
6319 args[argc] = getdigits(&p);
6320 argc += (argc < 15) ? 1 : 0;
6321 } while (*p == ';');
6322 *count = argc;
6323
6324 return p;
6325}
6326
6327 static char_u *
6328get_sgr(
6329 int *args,
6330 int *count,
6331 char_u *head)
6332{
6333 char_u *p = get_seq(args, count, head);
6334
6335 return (p && *p == 'm') ? ++p : NULL;
6336}
6337
6338/*
6339 * Pointer to next if SGR (^[[n;2;*;*;*m), NULL otherwise.
6340 */
6341 static char_u *
6342sgrn2(
6343 char_u *head,
6344 int n)
6345{
6346 int argc;
6347 int args[16];
6348 char_u *p = get_sgr(args, &argc, head);
6349
6350 return p && argc == 5 && args[0] == n && args[1] == 2 ? p : NULL;
6351}
6352
6353/*
6354 * Pointer to next if SGR(^[[nm)<space>ESC, NULL otherwise.
6355 */
6356 static char_u *
6357sgrnc(
6358 char_u *head,
6359 int n)
6360{
6361 int argc;
6362 int args[16];
6363 char_u *p = get_sgr(args, &argc, head);
6364
6365 return p && argc == 1 && args[0] == n && (p = skipwhite(p)) && *p == '\033'
6366 ? p : NULL;
6367}
6368
6369 static char_u *
6370skipblank(char_u *q)
6371{
6372 char_u *p = q;
6373
6374 while (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r')
6375 ++p;
6376 return p;
6377}
6378
6379/*
6380 * Pointer to the next if any whitespace that may follow SGR is ESC, otherwise
6381 * NULL.
6382 */
6383 static char_u *
6384sgrn2c(
6385 char_u *head,
6386 int n)
6387{
6388 char_u *p = sgrn2(head, n);
6389
6390 return p && *p != NUL && (p = skipblank(p)) && *p == '\033' ? p : NULL;
6391}
6392
6393/*
6394 * If there is only a newline between the sequence immediately following it,
6395 * a pointer to the character following the newline is returned.
6396 * Otherwise NULL.
6397 */
6398 static char_u *
6399sgrn2cn(
6400 char_u *head,
6401 int n)
6402{
6403 char_u *p = sgrn2(head, n);
6404
6405 return p && p[0] == 0x0a && p[1] == '\033' ? ++p : NULL;
6406}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407
6408/*
6409 * mch_write(): write the output buffer to the screen, translating ESC
6410 * sequences into calls to console output routines.
6411 */
6412 void
6413mch_write(
6414 char_u *s,
6415 int len)
6416{
Bram Moolenaard23f8bd2021-04-21 11:30:48 +02006417 char_u *end = s + len;
6418
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006419# ifdef VIMDLL
6420 if (gui.in_use)
6421 return;
6422# endif
6423
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424 if (!term_console)
6425 {
6426 write(1, s, (unsigned)len);
6427 return;
6428 }
6429
Bram Moolenaar0f873732019-12-05 20:28:46 +01006430 // translate ESC | sequences into faked bios calls
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431 while (len--)
6432 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006433 int prefix = -1;
6434 char_u ch;
6435
6436 // While processing a sequence, on rare occasions it seems that another
6437 // sequence may be inserted asynchronously.
6438 if (len < 0)
6439 {
6440 redraw_all_later(CLEAR);
6441 return;
6442 }
6443
Bram Moolenaard23f8bd2021-04-21 11:30:48 +02006444 while (s + ++prefix < end)
6445 {
6446 ch = s[prefix];
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006447 if (ch <= 0x1e && !(ch != '\n' && ch != '\r' && ch != '\b'
6448 && ch != '\a' && ch != '\033'))
6449 break;
Bram Moolenaard23f8bd2021-04-21 11:30:48 +02006450 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451
6452 if (p_wd)
6453 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006454 WaitForChar(p_wd, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455 if (prefix != 0)
6456 prefix = 1;
6457 }
6458
6459 if (prefix != 0)
6460 {
6461 DWORD nWritten;
6462
6463 nWritten = write_chars(s, prefix);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006464# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006465 if (fdDump)
6466 {
6467 fputc('>', fdDump);
6468 fwrite(s, sizeof(char_u), nWritten, fdDump);
6469 fputs("<\n", fdDump);
6470 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006471# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 len -= (nWritten - 1);
6473 s += nWritten;
6474 }
6475 else if (s[0] == '\n')
6476 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006477 // \n, newline: go to the beginning of the next line or scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478 if (g_coord.Y == g_srScrollRegion.Bottom)
6479 {
6480 scroll(1);
6481 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
6482 }
6483 else
6484 {
6485 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
6486 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006487# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 if (fdDump)
6489 fputs("\\n\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006490# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491 s++;
6492 }
6493 else if (s[0] == '\r')
6494 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006495 // \r, carriage return: go to beginning of line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006497# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006498 if (fdDump)
6499 fputs("\\r\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006500# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501 s++;
6502 }
6503 else if (s[0] == '\b')
6504 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006505 // \b, backspace: move cursor one position left
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 if (g_coord.X > g_srScrollRegion.Left)
6507 g_coord.X--;
6508 else if (g_coord.Y > g_srScrollRegion.Top)
6509 {
6510 g_coord.X = g_srScrollRegion.Right;
6511 g_coord.Y--;
6512 }
6513 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006514# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515 if (fdDump)
6516 fputs("\\b\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006517# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006518 s++;
6519 }
6520 else if (s[0] == '\a')
6521 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006522 // \a, bell
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523 MessageBeep(0xFFFFFFFF);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006524# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006525 if (fdDump)
6526 fputs("\\a\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006527# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528 s++;
6529 }
6530 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
6531 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006532# ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006533 char_u *old_s = s;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006534# endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006535 char_u *p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006536 int arg1 = 0, arg2 = 0, argc = 0, args[16];
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006537 char_u *sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006538
6539 switch (s[2])
6540 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541 case '0': case '1': case '2': case '3': case '4':
6542 case '5': case '6': case '7': case '8': case '9':
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006543 if (*(p = get_seq(args, &argc, s)) != 'm')
6544 goto notsgr;
6545
6546 p = s;
6547
6548 // Handling frequent optional sequences. Output to the screen
6549 // takes too long, so do not output as much as possible.
6550
6551 // If resetFG,FG,BG,<cr>,BG,FG are connected, the preceding
6552 // resetFG,FG,BG are omitted.
6553 if (sgrn2(sgrn2(sgrn2cn(sgrn2(sgrnc(p, 39), 38), 48), 48), 38))
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006554 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006555 p = sgrn2(sgrn2(sgrnc(p, 39), 38), 48);
6556 len = len + 1 - (int)(p - s);
6557 s = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558 break;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006559 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006561 // If FG,BG,BG,FG of SGR are connected, the first FG can be
6562 // omitted.
6563 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 48), 38))
6564 p = sp;
6565
6566 // If FG,BG,FG,BG of SGR are connected, the first FG can be
6567 // omitted.
6568 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 38), 48))
6569 p = sp;
6570
6571 // If BG,BG of SGR are connected, the first BG can be omitted.
6572 if (sgrn2((sp = sgrn2(p, 48)), 48))
6573 p = sp;
6574
6575 // If restoreFG and FG are connected, the restoreFG can be
6576 // omitted.
6577 if (sgrn2((sp = sgrnc(p, 39)), 38))
6578 p = sp;
6579
6580 p = get_seq(args, &argc, p);
6581
6582notsgr:
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006583 arg1 = args[0];
6584 arg2 = args[1];
6585 if (*p == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006587 if (argc == 1 && args[0] == 0)
6588 normvideo();
6589 else if (argc == 1)
6590 {
6591 if (USE_VTP)
6592 textcolor((WORD) arg1);
6593 else
6594 textattr((WORD) arg1);
6595 }
6596 else if (USE_VTP)
6597 vtp_sgr_bulks(argc, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006599 else if (argc == 2 && *p == 'H')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006601 gotoxy(arg2, arg1);
6602 }
6603 else if (argc == 2 && *p == 'r')
6604 {
6605 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
6606 }
Bram Moolenaar6982f422019-02-16 16:48:01 +01006607 else if (argc == 2 && *p == 'R')
6608 {
6609 set_scroll_region_tb(arg1, arg2);
6610 }
6611 else if (argc == 2 && *p == 'V')
6612 {
6613 set_scroll_region_lr(arg1, arg2);
6614 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006615 else if (argc == 1 && *p == 'A')
6616 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 gotoxy(g_coord.X + 1,
6618 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
6619 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006620 else if (argc == 1 && *p == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 {
6622 textbackground((WORD) arg1);
6623 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006624 else if (argc == 1 && *p == 'C')
6625 {
6626 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
6627 g_coord.Y + 1);
6628 }
6629 else if (argc == 1 && *p == 'f')
6630 {
6631 textcolor((WORD) arg1);
6632 }
6633 else if (argc == 1 && *p == 'H')
6634 {
6635 gotoxy(1, arg1);
6636 }
6637 else if (argc == 1 && *p == 'L')
6638 {
6639 insert_lines(arg1);
6640 }
6641 else if (argc == 1 && *p == 'M')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006642 {
6643 delete_lines(arg1);
6644 }
6645
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006646 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006647 s = p + 1;
6648 break;
6649
Bram Moolenaar071d4272004-06-13 20:20:40 +00006650 case 'A':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651 gotoxy(g_coord.X + 1,
6652 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
6653 goto got3;
6654
6655 case 'B':
6656 visual_bell();
6657 goto got3;
6658
6659 case 'C':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
6661 g_coord.Y + 1);
6662 goto got3;
6663
6664 case 'E':
6665 termcap_mode_end();
6666 goto got3;
6667
6668 case 'F':
6669 standout();
6670 goto got3;
6671
6672 case 'f':
6673 standend();
6674 goto got3;
6675
6676 case 'H':
6677 gotoxy(1, 1);
6678 goto got3;
6679
6680 case 'j':
6681 clear_to_end_of_display();
6682 goto got3;
6683
6684 case 'J':
6685 clear_screen();
6686 goto got3;
6687
6688 case 'K':
6689 clear_to_end_of_line();
6690 goto got3;
6691
6692 case 'L':
6693 insert_lines(1);
6694 goto got3;
6695
6696 case 'M':
6697 delete_lines(1);
6698 goto got3;
6699
6700 case 'S':
6701 termcap_mode_start();
6702 goto got3;
6703
6704 case 'V':
6705 cursor_visible(TRUE);
6706 goto got3;
6707
6708 case 'v':
6709 cursor_visible(FALSE);
6710 goto got3;
6711
6712 got3:
6713 s += 3;
6714 len -= 2;
6715 }
6716
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006717# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718 if (fdDump)
6719 {
6720 fputs("ESC | ", fdDump);
6721 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
6722 fputc('\n', fdDump);
6723 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006724# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006725 }
6726 else
6727 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006728 // Write a single character
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 DWORD nWritten;
6730
6731 nWritten = write_chars(s, 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006732# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733 if (fdDump)
6734 {
6735 fputc('>', fdDump);
6736 fwrite(s, sizeof(char_u), nWritten, fdDump);
6737 fputs("<\n", fdDump);
6738 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006739# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740
6741 len -= (nWritten - 1);
6742 s += nWritten;
6743 }
6744 }
6745
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006746# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006747 if (fdDump)
6748 fflush(fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006749# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750}
6751
Bram Moolenaar0f873732019-12-05 20:28:46 +01006752#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00006753
6754
6755/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01006756 * Delay for "msec" milliseconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006757 */
6758 void
6759mch_delay(
6760 long msec,
Bram Moolenaar0981c872020-08-23 14:28:37 +02006761 int flags UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006763#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006764 Sleep((int)msec); // never wait for input
6765#else // Console
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006766# ifdef VIMDLL
6767 if (gui.in_use)
6768 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006769 Sleep((int)msec); // never wait for input
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006770 return;
6771 }
6772# endif
Bram Moolenaar0981c872020-08-23 14:28:37 +02006773 if (flags & MCH_DELAY_IGNOREINPUT)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006774# ifdef FEAT_MZSCHEME
6775 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
6776 {
6777 int towait = p_mzq;
6778
Bram Moolenaar0f873732019-12-05 20:28:46 +01006779 // if msec is large enough, wait by portions in p_mzq
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006780 while (msec > 0)
6781 {
6782 mzvim_check_threads();
6783 if (msec < towait)
6784 towait = msec;
6785 Sleep(towait);
6786 msec -= towait;
6787 }
6788 }
6789 else
6790# endif
6791 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006793 WaitForChar(msec, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794#endif
6795}
6796
6797
6798/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01006799 * This version of remove is not scared by a readonly (backup) file.
6800 * This can also remove a symbolic link like Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006801 * Return 0 for success, -1 for failure.
6802 */
6803 int
6804mch_remove(char_u *name)
6805{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006806 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807 int n;
6808
Bram Moolenaar203258c2016-01-17 22:15:16 +01006809 /*
6810 * On Windows, deleting a directory's symbolic link is done by
6811 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
6812 */
6813 if (mch_isdir(name) && mch_is_symbolic_link(name))
6814 return mch_rmdir(name);
6815
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006816 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
6817
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006818 wn = enc_to_utf16(name, NULL);
6819 if (wn == NULL)
6820 return -1;
6821
6822 n = DeleteFileW(wn) ? 0 : -1;
6823 vim_free(wn);
6824 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825}
6826
6827
6828/*
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006829 * Check for an "interrupt signal": CTRL-break or CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006830 */
6831 void
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02006832mch_breakcheck(int force UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006834#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
6835# ifdef VIMDLL
6836 if (!gui.in_use)
6837# endif
6838 if (g_fCtrlCPressed || g_fCBrkPressed)
6839 {
6840 ctrl_break_was_pressed = g_fCBrkPressed;
6841 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6842 got_int = TRUE;
6843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006844#endif
6845}
6846
Bram Moolenaar0f873732019-12-05 20:28:46 +01006847// physical RAM to leave for the OS
Bram Moolenaaree273972016-01-02 21:11:51 +01006848#define WINNT_RESERVE_BYTES (256*1024*1024)
Bram Moolenaaree273972016-01-02 21:11:51 +01006849
6850/*
6851 * How much main memory in KiB that can be used by VIM.
6852 */
Bram Moolenaaree273972016-01-02 21:11:51 +01006853 long_u
Bram Moolenaar1266d672017-02-01 13:43:36 +01006854mch_total_mem(int special UNUSED)
Bram Moolenaaree273972016-01-02 21:11:51 +01006855{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006856 MEMORYSTATUSEX ms;
6857
Bram Moolenaar0f873732019-12-05 20:28:46 +01006858 // Need to use GlobalMemoryStatusEx() when there is more memory than
6859 // what fits in 32 bits.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006860 ms.dwLength = sizeof(MEMORYSTATUSEX);
6861 GlobalMemoryStatusEx(&ms);
6862 if (ms.ullAvailVirtual < ms.ullTotalPhys)
Bram Moolenaaree273972016-01-02 21:11:51 +01006863 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006864 // Process address space fits in physical RAM, use all of it.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006865 return (long_u)(ms.ullAvailVirtual / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006866 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006867 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
Bram Moolenaaree273972016-01-02 21:11:51 +01006868 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006869 // Catch old NT box or perverse hardware setup.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006870 return (long_u)((ms.ullTotalPhys / 2) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006871 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006872 // Use physical RAM less reserve for OS + data.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006873 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006874}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006877 * mch_wrename() works around a bug in rename (aka MoveFile) in
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
6879 * file whose short file name is "FOO.BAR" (its long file name will
6880 * be correct: "foo.bar~"). Because a file can be accessed by
6881 * either its SFN or its LFN, "foo.bar" has effectively been
6882 * renamed to "foo.bar", which is not at all what was wanted. This
6883 * seems to happen only when renaming files with three-character
6884 * extensions by appending a suffix that does not include ".".
6885 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
6886 *
6887 * There is another problem, which isn't really a bug but isn't right either:
6888 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
6889 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
6890 * service pack 6. Doesn't seem to happen on Windows 98.
6891 *
6892 * Like rename(), returns 0 upon success, non-zero upon failure.
6893 * Should probably set errno appropriately when errors occur.
6894 */
6895 int
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006896mch_wrename(WCHAR *wold, WCHAR *wnew)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006898 WCHAR *p;
6899 int i;
6900 WCHAR szTempFile[_MAX_PATH + 1];
6901 WCHAR szNewPath[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006902 HANDLE hf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006904 // No need to play tricks unless the file name contains a "~" as the
6905 // seventh character.
6906 p = wold;
6907 for (i = 0; wold[i] != NUL; ++i)
6908 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
6909 && wold[i + 1] != 0)
6910 p = wold + i + 1;
6911 if ((int)(wold + i - p) < 8 || p[6] != '~')
6912 return (MoveFileW(wold, wnew) == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006914 // Get base path of new file name. Undocumented feature: If pszNewFile is
6915 // a directory, no error is returned and pszFilePart will be NULL.
6916 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006917 return -1;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006918 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006919
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006920 // Get (and create) a unique temporary file name in directory of new file
6921 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006922 return -2;
6923
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006924 // blow the temp file away
6925 if (!DeleteFileW(szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 return -3;
6927
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006928 // rename old file to the temp file
6929 if (!MoveFileW(wold, szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 return -4;
6931
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006932 // now create an empty file called pszOldFile; this prevents the operating
6933 // system using pszOldFile as an alias (SFN) if we're renaming within the
6934 // same directory. For example, we're editing a file called
6935 // filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
6936 // to filena~1.txt~ (i.e., we're making a backup while writing it), the
6937 // SFN for filena~1.txt~ will be filena~1.txt, by default, which will
6938 // cause all sorts of problems later in buf_write(). So, we create an
6939 // empty file called filena~1.txt and the system will have to find some
6940 // other SFN for filena~1.txt~, such as filena~2.txt
6941 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6943 return -5;
6944 if (!CloseHandle(hf))
6945 return -6;
6946
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006947 // rename the temp file to the new file
6948 if (!MoveFileW(szTempFile, wnew))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006949 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006950 // Renaming failed. Rename the file back to its old name, so that it
6951 // looks like nothing happened.
6952 (void)MoveFileW(szTempFile, wold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006953 return -7;
6954 }
6955
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006956 // Seems to be left around on Novell filesystems
6957 DeleteFileW(szTempFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006959 // finally, remove the empty old file
6960 if (!DeleteFileW(wold))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961 return -8;
6962
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006963 return 0;
6964}
6965
6966
6967/*
6968 * Converts the filenames to UTF-16, then call mch_wrename().
6969 * Like rename(), returns 0 upon success, non-zero upon failure.
6970 */
6971 int
6972mch_rename(
6973 const char *pszOldFile,
6974 const char *pszNewFile)
6975{
6976 WCHAR *wold = NULL;
6977 WCHAR *wnew = NULL;
6978 int retval = -1;
6979
6980 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
6981 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
6982 if (wold != NULL && wnew != NULL)
6983 retval = mch_wrename(wold, wnew);
6984 vim_free(wold);
6985 vim_free(wnew);
6986 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987}
6988
6989/*
6990 * Get the default shell for the current hardware platform
6991 */
6992 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006993default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006995 return "cmd.exe";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996}
6997
6998/*
6999 * mch_access() extends access() to do more detailed check on network drives.
7000 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
7001 */
7002 int
7003mch_access(char *n, int p)
7004{
7005 HANDLE hFile;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007006 int retval = -1; // default: fail
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007007 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007009 wn = enc_to_utf16((char_u *)n, NULL);
7010 if (wn == NULL)
7011 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007012
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01007013 if (mch_isdir((char_u *)n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 WCHAR TempNameW[_MAX_PATH + 16] = L"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016
7017 if (p & R_OK)
7018 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007019 // Read check is performed by seeing if we can do a find file on
7020 // the directory for any file.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007021 int i;
7022 WIN32_FIND_DATAW d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007024 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
7025 TempNameW[i] = wn[i];
7026 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
7027 TempNameW[i++] = '\\';
7028 TempNameW[i++] = '*';
7029 TempNameW[i++] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007030
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007031 hFile = FindFirstFileW(TempNameW, &d);
7032 if (hFile == INVALID_HANDLE_VALUE)
7033 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007034 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035 (void)FindClose(hFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036 }
7037
7038 if (p & W_OK)
7039 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007040 // Trying to create a temporary file in the directory should catch
7041 // directories on read-only network shares. However, in
7042 // directories whose ACL allows writes but denies deletes will end
7043 // up keeping the temporary file :-(.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007044 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
7045 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007046 else
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007047 DeleteFileW(TempNameW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007048 }
7049 }
7050 else
7051 {
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007052 // Don't consider a file read-only if another process has opened it.
7053 DWORD share_mode = FILE_SHARE_READ | FILE_SHARE_WRITE;
7054
Bram Moolenaar0f873732019-12-05 20:28:46 +01007055 // Trying to open the file for the required access does ACL, read-only
7056 // network share, and file attribute checks.
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007057 DWORD access_mode = ((p & W_OK) ? GENERIC_WRITE : 0)
7058 | ((p & R_OK) ? GENERIC_READ : 0);
7059
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007060 hFile = CreateFileW(wn, access_mode, share_mode,
7061 NULL, OPEN_EXISTING, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062 if (hFile == INVALID_HANDLE_VALUE)
7063 goto getout;
7064 CloseHandle(hFile);
7065 }
7066
Bram Moolenaar0f873732019-12-05 20:28:46 +01007067 retval = 0; // success
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068getout:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007069 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070 return retval;
7071}
7072
Bram Moolenaar071d4272004-06-13 20:20:40 +00007073/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007074 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 */
7076 int
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007077mch_open(const char *name, int flags, int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078{
7079 WCHAR *wn;
7080 int f;
7081
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007082 wn = enc_to_utf16((char_u *)name, NULL);
7083 if (wn == NULL)
7084 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007086 f = _wopen(wn, flags, mode);
7087 vim_free(wn);
7088 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089}
7090
7091/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007092 * Version of fopen() that uses UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 */
7094 FILE *
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007095mch_fopen(const char *name, const char *mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007096{
7097 WCHAR *wn, *wm;
7098 FILE *f = NULL;
7099
Bram Moolenaara12a1612019-01-24 16:39:02 +01007100#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0f873732019-12-05 20:28:46 +01007101 // Work around an annoying assertion in the Microsoft debug CRT
7102 // when mode's text/binary setting doesn't match _get_fmode().
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007103 char newMode = mode[strlen(mode) - 1];
7104 int oldMode = 0;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007105
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007106 _get_fmode(&oldMode);
7107 if (newMode == 't')
7108 _set_fmode(_O_TEXT);
7109 else if (newMode == 'b')
7110 _set_fmode(_O_BINARY);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007111#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007112 wn = enc_to_utf16((char_u *)name, NULL);
7113 wm = enc_to_utf16((char_u *)mode, NULL);
7114 if (wn != NULL && wm != NULL)
7115 f = _wfopen(wn, wm);
7116 vim_free(wn);
7117 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007118
Bram Moolenaara12a1612019-01-24 16:39:02 +01007119#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007120 _set_fmode(oldMode);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007121#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007122 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007123}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124
Bram Moolenaar071d4272004-06-13 20:20:40 +00007125/*
7126 * SUB STREAM (aka info stream) handling:
7127 *
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01007128 * NTFS can have sub streams for each file. The normal contents of a file is
7129 * stored in the main stream, and extra contents (author information, title and
7130 * so on) can be stored in a sub stream. After Windows 2000, the user can
7131 * access and store this information in sub streams via an explorer's property
7132 * menu item in the right click menu. This information in sub streams was lost
7133 * when copying only the main stream. Therefore we have to copy sub streams.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134 *
7135 * Incomplete explanation:
7136 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
7137 * More useful info and an example:
7138 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
7139 */
7140
7141/*
7142 * Copy info stream data "substream". Read from the file with BackupRead(sh)
7143 * and write to stream "substream" of file "to".
7144 * Errors are ignored.
7145 */
7146 static void
7147copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
7148{
7149 HANDLE hTo;
7150 WCHAR *to_name;
7151
7152 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
7153 wcscpy(to_name, to);
7154 wcscat(to_name, substream);
7155
7156 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
7157 FILE_ATTRIBUTE_NORMAL, NULL);
7158 if (hTo != INVALID_HANDLE_VALUE)
7159 {
7160 long done;
7161 DWORD todo;
7162 DWORD readcnt, written;
7163 char buf[4096];
7164
Bram Moolenaar0f873732019-12-05 20:28:46 +01007165 // Copy block of bytes at a time. Abort when something goes wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166 for (done = 0; done < len; done += written)
7167 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007168 // (size_t) cast for Borland C 5.5
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007169 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
7170 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
7172 FALSE, FALSE, context)
7173 || readcnt != todo
7174 || !WriteFile(hTo, buf, todo, &written, NULL)
7175 || written != todo)
7176 break;
7177 }
7178 CloseHandle(hTo);
7179 }
7180
7181 free(to_name);
7182}
7183
7184/*
7185 * Copy info streams from file "from" to file "to".
7186 */
7187 static void
7188copy_infostreams(char_u *from, char_u *to)
7189{
7190 WCHAR *fromw;
7191 WCHAR *tow;
7192 HANDLE sh;
7193 WIN32_STREAM_ID sid;
7194 int headersize;
7195 WCHAR streamname[_MAX_PATH];
7196 DWORD readcount;
7197 void *context = NULL;
7198 DWORD lo, hi;
7199 int len;
7200
Bram Moolenaar0f873732019-12-05 20:28:46 +01007201 // Convert the file names to wide characters.
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007202 fromw = enc_to_utf16(from, NULL);
7203 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007204 if (fromw != NULL && tow != NULL)
7205 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007206 // Open the file for reading.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
7208 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
7209 if (sh != INVALID_HANDLE_VALUE)
7210 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007211 // Use BackupRead() to find the info streams. Repeat until we
7212 // have done them all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007213 for (;;)
7214 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007215 // Get the header to find the length of the stream name. If
7216 // the "readcount" is zero we have done all info streams.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007217 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007218 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007219 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
7220 &readcount, FALSE, FALSE, &context)
7221 || readcount == 0)
7222 break;
7223
Bram Moolenaar0f873732019-12-05 20:28:46 +01007224 // We only deal with streams that have a name. The normal
7225 // file data appears to be without a name, even though docs
7226 // suggest it is called "::$DATA".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227 if (sid.dwStreamNameSize > 0)
7228 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007229 // Read the stream name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 if (!BackupRead(sh, (LPBYTE)streamname,
7231 sid.dwStreamNameSize,
7232 &readcount, FALSE, FALSE, &context))
7233 break;
7234
Bram Moolenaar0f873732019-12-05 20:28:46 +01007235 // Copy an info stream with a name ":anything:$DATA".
7236 // Skip "::$DATA", it has no stream name (examples suggest
7237 // it might be used for the normal file contents).
7238 // Note that BackupRead() counts bytes, but the name is in
7239 // wide characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240 len = readcount / sizeof(WCHAR);
7241 streamname[len] = 0;
7242 if (len > 7 && wcsicmp(streamname + len - 6,
7243 L":$DATA") == 0)
7244 {
7245 streamname[len - 6] = 0;
7246 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007247 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007248 }
7249 }
7250
Bram Moolenaar0f873732019-12-05 20:28:46 +01007251 // Advance to the next stream. We might try seeking too far,
7252 // but BackupSeek() doesn't skip over stream borders, thus
7253 // that's OK.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007254 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007255 &lo, &hi, &context);
7256 }
7257
Bram Moolenaar0f873732019-12-05 20:28:46 +01007258 // Clear the context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007259 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
7260
7261 CloseHandle(sh);
7262 }
7263 }
7264 vim_free(fromw);
7265 vim_free(tow);
7266}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267
7268/*
Bram Moolenaare7bebc42021-02-01 20:50:37 +01007269 * ntdll.dll definitions
7270 */
7271#define FileEaInformation 7
7272#ifndef STATUS_SUCCESS
7273# define STATUS_SUCCESS ((NTSTATUS) 0x00000000L)
7274#endif
7275
7276typedef struct _FILE_FULL_EA_INFORMATION_ {
7277 ULONG NextEntryOffset;
7278 UCHAR Flags;
7279 UCHAR EaNameLength;
7280 USHORT EaValueLength;
7281 CHAR EaName[1];
7282} FILE_FULL_EA_INFORMATION_, *PFILE_FULL_EA_INFORMATION_;
7283
7284typedef struct _FILE_EA_INFORMATION_ {
7285 ULONG EaSize;
7286} FILE_EA_INFORMATION_, *PFILE_EA_INFORMATION_;
7287
7288typedef NTSTATUS (NTAPI *PfnNtOpenFile)(
7289 PHANDLE FileHandle,
7290 ACCESS_MASK DesiredAccess,
7291 POBJECT_ATTRIBUTES ObjectAttributes,
7292 PIO_STATUS_BLOCK IoStatusBlock,
7293 ULONG ShareAccess,
7294 ULONG OpenOptions);
7295typedef NTSTATUS (NTAPI *PfnNtClose)(
7296 HANDLE Handle);
7297typedef NTSTATUS (NTAPI *PfnNtSetEaFile)(
7298 HANDLE FileHandle,
7299 PIO_STATUS_BLOCK IoStatusBlock,
7300 PVOID Buffer,
7301 ULONG Length);
7302typedef NTSTATUS (NTAPI *PfnNtQueryEaFile)(
7303 HANDLE FileHandle,
7304 PIO_STATUS_BLOCK IoStatusBlock,
7305 PVOID Buffer,
7306 ULONG Length,
7307 BOOLEAN ReturnSingleEntry,
7308 PVOID EaList,
7309 ULONG EaListLength,
7310 PULONG EaIndex,
7311 BOOLEAN RestartScan);
7312typedef NTSTATUS (NTAPI *PfnNtQueryInformationFile)(
7313 HANDLE FileHandle,
7314 PIO_STATUS_BLOCK IoStatusBlock,
7315 PVOID FileInformation,
7316 ULONG Length,
7317 FILE_INFORMATION_CLASS FileInformationClass);
7318typedef VOID (NTAPI *PfnRtlInitUnicodeString)(
7319 PUNICODE_STRING DestinationString,
7320 PCWSTR SourceString);
7321
7322PfnNtOpenFile pNtOpenFile = NULL;
7323PfnNtClose pNtClose = NULL;
7324PfnNtSetEaFile pNtSetEaFile = NULL;
7325PfnNtQueryEaFile pNtQueryEaFile = NULL;
7326PfnNtQueryInformationFile pNtQueryInformationFile = NULL;
7327PfnRtlInitUnicodeString pRtlInitUnicodeString = NULL;
7328
7329/*
7330 * Load ntdll.dll functions.
7331 */
7332 static BOOL
7333load_ntdll(void)
7334{
7335 static int loaded = -1;
7336
7337 if (loaded == -1)
7338 {
7339 HMODULE hNtdll = GetModuleHandle("ntdll.dll");
7340 if (hNtdll != NULL)
7341 {
7342 pNtOpenFile = (PfnNtOpenFile) GetProcAddress(hNtdll, "NtOpenFile");
7343 pNtClose = (PfnNtClose) GetProcAddress(hNtdll, "NtClose");
7344 pNtSetEaFile = (PfnNtSetEaFile)
7345 GetProcAddress(hNtdll, "NtSetEaFile");
7346 pNtQueryEaFile = (PfnNtQueryEaFile)
7347 GetProcAddress(hNtdll, "NtQueryEaFile");
7348 pNtQueryInformationFile = (PfnNtQueryInformationFile)
7349 GetProcAddress(hNtdll, "NtQueryInformationFile");
7350 pRtlInitUnicodeString = (PfnRtlInitUnicodeString)
7351 GetProcAddress(hNtdll, "RtlInitUnicodeString");
7352 }
7353 if (pNtOpenFile == NULL
7354 || pNtClose == NULL
7355 || pNtSetEaFile == NULL
7356 || pNtQueryEaFile == NULL
7357 || pNtQueryInformationFile == NULL
7358 || pRtlInitUnicodeString == NULL)
7359 loaded = FALSE;
7360 else
7361 loaded = TRUE;
7362 }
7363 return (BOOL) loaded;
7364}
7365
7366/*
7367 * Copy extended attributes (EA) from file "from" to file "to".
7368 */
7369 static void
7370copy_extattr(char_u *from, char_u *to)
7371{
7372 char_u *fromf = NULL;
7373 char_u *tof = NULL;
7374 WCHAR *fromw = NULL;
7375 WCHAR *tow = NULL;
7376 UNICODE_STRING u;
7377 HANDLE h;
7378 OBJECT_ATTRIBUTES oa;
7379 IO_STATUS_BLOCK iosb;
7380 FILE_EA_INFORMATION_ eainfo = {0};
7381 void *ea = NULL;
7382
7383 if (!load_ntdll())
7384 return;
7385
7386 // Convert the file names to the fully qualified object names.
7387 fromf = alloc(STRLEN(from) + 5);
7388 tof = alloc(STRLEN(to) + 5);
7389 if (fromf == NULL || tof == NULL)
7390 goto theend;
7391 STRCPY(fromf, "\\??\\");
7392 STRCAT(fromf, from);
7393 STRCPY(tof, "\\??\\");
7394 STRCAT(tof, to);
7395
7396 // Convert the names to wide characters.
7397 fromw = enc_to_utf16(fromf, NULL);
7398 tow = enc_to_utf16(tof, NULL);
7399 if (fromw == NULL || tow == NULL)
7400 goto theend;
7401
7402 // Get the EA.
7403 pRtlInitUnicodeString(&u, fromw);
7404 InitializeObjectAttributes(&oa, &u, 0, NULL, NULL);
7405 if (pNtOpenFile(&h, FILE_READ_EA, &oa, &iosb, 0,
7406 FILE_NON_DIRECTORY_FILE) != STATUS_SUCCESS)
7407 goto theend;
7408 pNtQueryInformationFile(h, &iosb, &eainfo, sizeof(eainfo),
7409 FileEaInformation);
7410 if (eainfo.EaSize != 0)
7411 {
7412 ea = alloc(eainfo.EaSize);
7413 if (ea != NULL)
7414 {
7415 if (pNtQueryEaFile(h, &iosb, ea, eainfo.EaSize, FALSE,
7416 NULL, 0, NULL, TRUE) != STATUS_SUCCESS)
7417 {
7418 vim_free(ea);
7419 ea = NULL;
7420 }
7421 }
7422 }
7423 pNtClose(h);
7424
7425 // Set the EA.
7426 if (ea != NULL)
7427 {
7428 pRtlInitUnicodeString(&u, tow);
7429 InitializeObjectAttributes(&oa, &u, 0, NULL, NULL);
7430 if (pNtOpenFile(&h, FILE_WRITE_EA, &oa, &iosb, 0,
7431 FILE_NON_DIRECTORY_FILE) != STATUS_SUCCESS)
7432 goto theend;
7433
7434 pNtSetEaFile(h, &iosb, ea, eainfo.EaSize);
7435 pNtClose(h);
7436 }
7437
7438theend:
7439 vim_free(fromf);
7440 vim_free(tof);
7441 vim_free(fromw);
7442 vim_free(tow);
7443 vim_free(ea);
7444}
7445
7446/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007447 * Copy file attributes from file "from" to file "to".
7448 * For Windows NT and later we copy info streams.
7449 * Always returns zero, errors are ignored.
7450 */
7451 int
7452mch_copy_file_attribute(char_u *from, char_u *to)
7453{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007454 // File streams only work on Windows NT and later.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007455 copy_infostreams(from, to);
Bram Moolenaare7bebc42021-02-01 20:50:37 +01007456 copy_extattr(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007457 return 0;
7458}
7459
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007460
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007461/*
K.Takatadc73b4b2021-06-08 18:32:36 +02007462 * The command line arguments in UTF-16
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007463 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007464static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007465static LPWSTR *ArglistW = NULL;
7466static int global_argc = 0;
7467static char **global_argv;
7468
Bram Moolenaar0f873732019-12-05 20:28:46 +01007469static int used_file_argc = 0; // last argument in global_argv[] used
7470 // for the argument list.
7471static int *used_file_indexes = NULL; // indexes in global_argv[] for
7472 // command line arguments added to
7473 // the argument list
7474static int used_file_count = 0; // nr of entries in used_file_indexes
7475static int used_file_literal = FALSE; // take file names literally
7476static int used_file_full_path = FALSE; // file name was full path
7477static int used_file_diff_mode = FALSE; // file name was with diff mode
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007478static int used_alist_count = 0;
7479
7480
7481/*
7482 * Get the command line arguments. Unicode version.
7483 * Returns argc. Zero when something fails.
7484 */
7485 int
7486get_cmd_argsW(char ***argvp)
7487{
7488 char **argv = NULL;
7489 int argc = 0;
7490 int i;
7491
Bram Moolenaar14993322014-09-09 12:25:33 +02007492 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007493 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
7494 if (ArglistW != NULL)
7495 {
7496 argv = malloc((nArgsW + 1) * sizeof(char *));
7497 if (argv != NULL)
7498 {
7499 argc = nArgsW;
7500 argv[argc] = NULL;
7501 for (i = 0; i < argc; ++i)
7502 {
7503 int len;
7504
K.Takatadc73b4b2021-06-08 18:32:36 +02007505 // Convert each Unicode argument to UTF-8.
7506 WideCharToMultiByte_alloc(CP_UTF8, 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007507 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007508 (LPSTR *)&argv[i], &len, 0, 0);
7509 if (argv[i] == NULL)
7510 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007511 // Out of memory, clear everything.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007512 while (i > 0)
7513 free(argv[--i]);
7514 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01007515 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007516 argc = 0;
7517 }
7518 }
7519 }
7520 }
7521
7522 global_argc = argc;
7523 global_argv = argv;
7524 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02007525 {
7526 if (used_file_indexes != NULL)
7527 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007528 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02007529 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007530
7531 if (argvp != NULL)
7532 *argvp = argv;
7533 return argc;
7534}
7535
7536 void
7537free_cmd_argsW(void)
7538{
7539 if (ArglistW != NULL)
7540 {
7541 GlobalFree(ArglistW);
7542 ArglistW = NULL;
7543 }
7544}
7545
7546/*
7547 * Remember "name" is an argument that was added to the argument list.
7548 * This avoids that we have to re-parse the argument list when fix_arg_enc()
7549 * is called.
7550 */
7551 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007552used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007553{
7554 int i;
7555
7556 if (used_file_indexes == NULL)
7557 return;
7558 for (i = used_file_argc + 1; i < global_argc; ++i)
7559 if (STRCMP(global_argv[i], name) == 0)
7560 {
7561 used_file_argc = i;
7562 used_file_indexes[used_file_count++] = i;
7563 break;
7564 }
7565 used_file_literal = literal;
7566 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007567 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007568}
7569
7570/*
7571 * Remember the length of the argument list as it was. If it changes then we
7572 * leave it alone when 'encoding' is set.
7573 */
7574 void
7575set_alist_count(void)
7576{
7577 used_alist_count = GARGCOUNT;
7578}
7579
7580/*
7581 * Fix the encoding of the command line arguments. Invoked when 'encoding'
K.Takatadc73b4b2021-06-08 18:32:36 +02007582 * has been changed while starting up. Use the UTF-16 command line arguments
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007583 * and convert them to 'encoding'.
7584 */
7585 void
7586fix_arg_enc(void)
7587{
7588 int i;
7589 int idx;
7590 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007591 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007592
Bram Moolenaar0f873732019-12-05 20:28:46 +01007593 // Safety checks:
7594 // - if argument count differs between the wide and non-wide argument
7595 // list, something must be wrong.
7596 // - the file name arguments must have been located.
7597 // - the length of the argument list wasn't changed by the user.
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007598 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007599 || ArglistW == NULL
7600 || used_file_indexes == NULL
7601 || used_file_count == 0
7602 || used_alist_count != GARGCOUNT)
7603 return;
7604
Bram Moolenaar0f873732019-12-05 20:28:46 +01007605 // Remember the buffer numbers for the arguments.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02007606 fnum_list = ALLOC_MULT(int, GARGCOUNT);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007607 if (fnum_list == NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007608 return; // out of memory
Bram Moolenaar86b68352004-12-27 21:59:20 +00007609 for (i = 0; i < GARGCOUNT; ++i)
7610 fnum_list[i] = GARGLIST[i].ae_fnum;
7611
Bram Moolenaar0f873732019-12-05 20:28:46 +01007612 // Clear the argument list. Make room for the new arguments.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007613 alist_clear(&global_alist);
7614 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007615 return; // out of memory
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007616
7617 for (i = 0; i < used_file_count; ++i)
7618 {
7619 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007620 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007621 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007622 {
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007623 int literal = used_file_literal;
7624
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007625#ifdef FEAT_DIFF
Bram Moolenaar0f873732019-12-05 20:28:46 +01007626 // When using diff mode may need to concatenate file name to
7627 // directory name. Just like it's done in main().
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007628 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
7629 && !mch_isdir(alist_name(&GARGLIST[0])))
7630 {
7631 char_u *r;
7632
7633 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
7634 if (r != NULL)
7635 {
7636 vim_free(str);
7637 str = r;
7638 }
7639 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007640#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007641 // Re-use the old buffer by renaming it. When not using literal
7642 // names it's done by alist_expand() below.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007643 if (used_file_literal)
7644 buf_set_name(fnum_list[i], str);
7645
Bram Moolenaar0f873732019-12-05 20:28:46 +01007646 // Check backtick literal. backtick literal is already expanded in
7647 // main.c, so this part add str as literal.
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007648 if (literal == FALSE)
7649 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02007650 size_t len = STRLEN(str);
7651
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007652 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
7653 literal = TRUE;
7654 }
7655 alist_add(&global_alist, str, literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007656 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007657 }
7658
7659 if (!used_file_literal)
7660 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007661 // Now expand wildcards in the arguments.
7662 // Temporarily add '(' and ')' to 'isfname'. These are valid
7663 // filename characters but are excluded from 'isfname' to make
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00007664 // "gf" work on a file name in parentheses (e.g.: see vim.h).
Bram Moolenaar0f873732019-12-05 20:28:46 +01007665 // Also, unset wildignore to not be influenced by this option.
7666 // The arguments specified in command-line should be kept even if
7667 // encoding options were changed.
Christian Brabandtfd916d62021-11-01 22:44:33 +00007668 // Use :legacy so that it also works when in Vim9 script.
7669 do_cmdline_cmd((char_u *)":legacy let g:SaVe_ISF = &isf|set isf+=(,)");
7670 do_cmdline_cmd((char_u *)":legacy let g:SaVe_WIG = &wig|set wig=");
Bram Moolenaar86b68352004-12-27 21:59:20 +00007671 alist_expand(fnum_list, used_alist_count);
Christian Brabandtfd916d62021-11-01 22:44:33 +00007672 do_cmdline_cmd(
7673 (char_u *)":legacy let &isf = g:SaVe_ISF|unlet g:SaVe_ISF");
7674 do_cmdline_cmd(
7675 (char_u *)":legacy let &wig = g:SaVe_WIG|unlet g:SaVe_WIG");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007676 }
7677
Bram Moolenaar0f873732019-12-05 20:28:46 +01007678 // If wildcard expansion failed, we are editing the first file of the
7679 // arglist and there is no file name: Edit the first argument now.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007680 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7681 {
7682 do_cmdline_cmd((char_u *)":rewind");
Bram Moolenaar05268152021-11-18 18:53:45 +00007683 if (GARGCOUNT == 1 && used_file_full_path
7684 && vim_chdirfile(alist_name(&GARGLIST[0]), "drop") == OK)
7685 last_chdir_reason = "drop";
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007686 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007687
7688 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007689}
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007690
7691 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02007692mch_setenv(char *var, char *value, int x UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007693{
7694 char_u *envbuf;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007695 WCHAR *p;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007696
Bram Moolenaar964b3742019-05-24 18:54:09 +02007697 envbuf = alloc(STRLEN(var) + STRLEN(value) + 2);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007698 if (envbuf == NULL)
7699 return -1;
7700
7701 sprintf((char *)envbuf, "%s=%s", var, value);
7702
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007703 p = enc_to_utf16(envbuf, NULL);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007704
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007705 vim_free(envbuf);
7706 if (p == NULL)
7707 return -1;
7708 _wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007709#ifdef libintl_wputenv
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007710 libintl_wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007711#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007712 // Unlike Un*x systems, we can free the string for _wputenv().
7713 vim_free(p);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007714
7715 return 0;
7716}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007717
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007718/*
7719 * Support for 256 colors and 24-bit colors was added in Windows 10
7720 * version 1703 (Creators update).
7721 */
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007722#define VTP_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 15063)
7723
7724/*
7725 * Support for pseudo-console (ConPTY) was added in windows 10
Bram Moolenaar57da6982019-09-13 22:30:11 +02007726 * version 1809 (October 2018 update).
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007727 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007728#define CONPTY_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 17763)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007729
7730/*
7731 * ConPTY differences between versions, need different logic.
7732 * version 1903 (May 2019 update).
7733 */
7734#define CONPTY_1903_BUILD MAKE_VER(10, 0, 18362)
7735
7736/*
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007737 * version 1909 (November 2019 update).
7738 */
7739#define CONPTY_1909_BUILD MAKE_VER(10, 0, 18363)
7740
7741/*
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007742 * Stay ahead of the next update, and when it's done, fix this.
7743 * version ? (2020 update, temporarily use the build number of insider preview)
7744 */
7745#define CONPTY_NEXT_UPDATE_BUILD MAKE_VER(10, 0, 19587)
7746
7747/*
Bram Moolenaar57da6982019-09-13 22:30:11 +02007748 * Confirm until this version. Also the logic changes.
7749 * insider preview.
7750 */
Bram Moolenaar4c063dd2019-10-04 21:29:12 +02007751#define CONPTY_INSIDER_BUILD MAKE_VER(10, 0, 18995)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007752
7753/*
7754 * Not stable now.
7755 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007756#define CONPTY_STABLE_BUILD MAKE_VER(10, 0, 32767) // T.B.D.
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007757
7758 static void
7759vtp_flag_init(void)
7760{
7761 DWORD ver = get_build_number();
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007762#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007763 DWORD mode;
7764 HANDLE out;
7765
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007766# ifdef VIMDLL
7767 if (!gui.in_use)
7768# endif
7769 {
7770 out = GetStdHandle(STD_OUTPUT_HANDLE);
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007771
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007772 vtp_working = (ver >= VTP_FIRST_SUPPORT_BUILD) ? 1 : 0;
7773 GetConsoleMode(out, &mode);
7774 mode |= (ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
7775 if (SetConsoleMode(out, mode) == 0)
7776 vtp_working = 0;
7777 }
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007778#endif
7779
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007780 if (ver >= CONPTY_FIRST_SUPPORT_BUILD)
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007781 conpty_working = 1;
7782 if (ver >= CONPTY_STABLE_BUILD)
7783 conpty_stable = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007784
Bram Moolenaar57da6982019-09-13 22:30:11 +02007785 if (ver <= CONPTY_INSIDER_BUILD)
7786 conpty_type = 3;
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007787 if (ver <= CONPTY_1909_BUILD)
7788 conpty_type = 2;
Bram Moolenaar57da6982019-09-13 22:30:11 +02007789 if (ver <= CONPTY_1903_BUILD)
7790 conpty_type = 2;
7791 if (ver < CONPTY_FIRST_SUPPORT_BUILD)
7792 conpty_type = 1;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007793
7794 if (ver >= CONPTY_NEXT_UPDATE_BUILD)
7795 conpty_fix_type = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007796}
7797
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007798#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007799
7800 static void
7801vtp_init(void)
7802{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007803 HMODULE hKerneldll;
7804 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007805# ifdef FEAT_TERMGUICOLORS
7806 COLORREF fg, bg;
7807# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007808
Bram Moolenaar0f873732019-12-05 20:28:46 +01007809 // Use functions supported from Vista
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007810 hKerneldll = GetModuleHandle("kernel32.dll");
7811 if (hKerneldll != NULL)
7812 {
7813 pGetConsoleScreenBufferInfoEx =
7814 (PfnGetConsoleScreenBufferInfoEx)GetProcAddress(
7815 hKerneldll, "GetConsoleScreenBufferInfoEx");
7816 pSetConsoleScreenBufferInfoEx =
7817 (PfnSetConsoleScreenBufferInfoEx)GetProcAddress(
7818 hKerneldll, "SetConsoleScreenBufferInfoEx");
7819 if (pGetConsoleScreenBufferInfoEx != NULL
7820 && pSetConsoleScreenBufferInfoEx != NULL)
7821 has_csbiex = TRUE;
7822 }
7823
7824 csbi.cbSize = sizeof(csbi);
7825 if (has_csbiex)
7826 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007827 save_console_bg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_bg];
7828 save_console_fg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_fg];
Bram Moolenaardf543822020-01-30 11:53:59 +01007829 store_console_bg_rgb = save_console_bg_rgb;
7830 store_console_fg_rgb = save_console_fg_rgb;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007831
7832# ifdef FEAT_TERMGUICOLORS
7833 bg = (COLORREF)csbi.ColorTable[g_color_index_bg];
7834 fg = (COLORREF)csbi.ColorTable[g_color_index_fg];
7835 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7836 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7837 default_console_color_bg = bg;
7838 default_console_color_fg = fg;
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007839# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007840
7841 set_console_color_rgb();
7842}
7843
7844 static void
7845vtp_exit(void)
7846{
Bram Moolenaardf543822020-01-30 11:53:59 +01007847 restore_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007848}
7849
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007850 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007851vtp_printf(
7852 char *format,
7853 ...)
7854{
7855 char_u buf[100];
7856 va_list list;
7857 DWORD result;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007858 int len;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007859
7860 va_start(list, format);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007861 len = vim_vsnprintf((char *)buf, 100, (char *)format, list);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007862 va_end(list);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007863 WriteConsoleA(g_hConOut, buf, (DWORD)len, &result, NULL);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007864 return (int)result;
7865}
7866
7867 static void
7868vtp_sgr_bulk(
7869 int arg)
7870{
7871 int args[1];
7872
7873 args[0] = arg;
7874 vtp_sgr_bulks(1, args);
7875}
7876
K.Takata6e1d31e2022-02-03 13:05:32 +00007877# define FAST256(x) \
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007878 if ((*p-- = "0123456789"[(n = x % 10)]) \
7879 && x >= 10 && (*p-- = "0123456789"[((m = x % 100) - n) / 10]) \
7880 && x >= 100 && (*p-- = "012"[((x & 0xff) - m) / 100]));
7881
K.Takata6e1d31e2022-02-03 13:05:32 +00007882# define FAST256CASE(x) \
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007883 case x: \
7884 FAST256(newargs[x - 1]);
7885
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007886 static void
7887vtp_sgr_bulks(
7888 int argc,
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007889 int *args)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007890{
K.Takata6e1d31e2022-02-03 13:05:32 +00007891# define MAXSGR 16
7892# define SGRBUFSIZE 2 + 4 * MAXSGR + 1 // '\033[' + SGR + 'm'
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007893 char_u buf[SGRBUFSIZE];
7894 char_u *p;
7895 int in, out;
7896 int newargs[16];
7897 static int sgrfgr = -1, sgrfgg, sgrfgb;
7898 static int sgrbgr = -1, sgrbgg, sgrbgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007899
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007900 if (argc == 0)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007901 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007902 sgrfgr = sgrbgr = -1;
7903 vtp_printf("033[m");
7904 return;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007905 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007906
7907 in = out = 0;
7908 while (in < argc)
7909 {
7910 int s = args[in];
7911 int copylen = 1;
7912
7913 if (s == 38)
7914 {
7915 if (argc - in >= 5 && args[in + 1] == 2)
7916 {
7917 if (sgrfgr == args[in + 2] && sgrfgg == args[in + 3]
7918 && sgrfgb == args[in + 4])
7919 {
7920 in += 5;
7921 copylen = 0;
7922 }
7923 else
7924 {
7925 sgrfgr = args[in + 2];
7926 sgrfgg = args[in + 3];
7927 sgrfgb = args[in + 4];
7928 copylen = 5;
7929 }
7930 }
7931 else if (argc - in >= 3 && args[in + 1] == 5)
7932 {
7933 sgrfgr = -1;
7934 copylen = 3;
7935 }
7936 }
7937 else if (s == 48)
7938 {
7939 if (argc - in >= 5 && args[in + 1] == 2)
7940 {
7941 if (sgrbgr == args[in + 2] && sgrbgg == args[in + 3]
7942 && sgrbgb == args[in + 4])
7943 {
7944 in += 5;
7945 copylen = 0;
7946 }
7947 else
7948 {
7949 sgrbgr = args[in + 2];
7950 sgrbgg = args[in + 3];
7951 sgrbgb = args[in + 4];
7952 copylen = 5;
7953 }
7954 }
7955 else if (argc - in >= 3 && args[in + 1] == 5)
7956 {
7957 sgrbgr = -1;
7958 copylen = 3;
7959 }
7960 }
7961 else if (30 <= s && s <= 39)
7962 sgrfgr = -1;
7963 else if (90 <= s && s <= 97)
7964 sgrfgr = -1;
7965 else if (40 <= s && s <= 49)
7966 sgrbgr = -1;
7967 else if (100 <= s && s <= 107)
7968 sgrbgr = -1;
7969 else if (s == 0)
7970 sgrfgr = sgrbgr = -1;
7971
7972 while (copylen--)
7973 newargs[out++] = args[in++];
7974 }
7975
7976 p = &buf[sizeof(buf) - 1];
7977 *p-- = 'm';
7978
7979 switch (out)
7980 {
7981 int n, m;
7982 DWORD r;
7983
7984 FAST256CASE(16);
7985 *p-- = ';';
7986 FAST256CASE(15);
7987 *p-- = ';';
7988 FAST256CASE(14);
7989 *p-- = ';';
7990 FAST256CASE(13);
7991 *p-- = ';';
7992 FAST256CASE(12);
7993 *p-- = ';';
7994 FAST256CASE(11);
7995 *p-- = ';';
7996 FAST256CASE(10);
7997 *p-- = ';';
7998 FAST256CASE(9);
7999 *p-- = ';';
8000 FAST256CASE(8);
8001 *p-- = ';';
8002 FAST256CASE(7);
8003 *p-- = ';';
8004 FAST256CASE(6);
8005 *p-- = ';';
8006 FAST256CASE(5);
8007 *p-- = ';';
8008 FAST256CASE(4);
8009 *p-- = ';';
8010 FAST256CASE(3);
8011 *p-- = ';';
8012 FAST256CASE(2);
8013 *p-- = ';';
8014 FAST256CASE(1);
8015 *p-- = '[';
8016 *p = '\033';
8017 WriteConsoleA(g_hConOut, p, (DWORD)(&buf[SGRBUFSIZE] - p), &r, NULL);
8018 default:
8019 break;
8020 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008021}
8022
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008023 static void
8024wt_init(void)
8025{
8026 wt_working = (mch_getenv("WT_SESSION") != NULL);
8027}
8028
8029 int
8030use_wt(void)
8031{
8032 return USE_WT;
8033}
8034
Bram Moolenaar8a938af2018-05-01 17:30:41 +02008035# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008036 static int
8037ctermtoxterm(
8038 int cterm)
8039{
Bram Moolenaar9894e392018-05-05 14:29:06 +02008040 char_u r, g, b, idx;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008041
8042 cterm_color2rgb(cterm, &r, &g, &b, &idx);
8043 return (((int)r << 16) | ((int)g << 8) | (int)b);
8044}
Bram Moolenaar8a938af2018-05-01 17:30:41 +02008045# endif
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008046
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008047 static void
8048set_console_color_rgb(void)
8049{
8050# ifdef FEAT_TERMGUICOLORS
8051 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaara050b942019-12-02 21:35:31 +01008052 guicolor_T fg, bg;
8053 int ctermfg, ctermbg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008054
8055 if (!USE_VTP)
8056 return;
8057
Bram Moolenaara050b942019-12-02 21:35:31 +01008058 get_default_console_color(&ctermfg, &ctermbg, &fg, &bg);
8059
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008060 if (USE_WT)
8061 {
8062 term_fg_rgb_color(fg);
8063 term_bg_rgb_color(bg);
8064 return;
8065 }
8066
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008067 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
8068 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
8069
8070 csbi.cbSize = sizeof(csbi);
8071 if (has_csbiex)
8072 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8073
8074 csbi.cbSize = sizeof(csbi);
8075 csbi.srWindow.Right += 1;
8076 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01008077 store_console_bg_rgb = csbi.ColorTable[g_color_index_bg];
8078 store_console_fg_rgb = csbi.ColorTable[g_color_index_fg];
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02008079 csbi.ColorTable[g_color_index_bg] = (COLORREF)bg;
8080 csbi.ColorTable[g_color_index_fg] = (COLORREF)fg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008081 if (has_csbiex)
8082 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8083# endif
8084}
8085
Bram Moolenaara050b942019-12-02 21:35:31 +01008086# if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
8087 void
8088get_default_console_color(
8089 int *cterm_fg,
8090 int *cterm_bg,
8091 guicolor_T *gui_fg,
8092 guicolor_T *gui_bg)
8093{
8094 int id;
8095 guicolor_T guifg = INVALCOLOR;
8096 guicolor_T guibg = INVALCOLOR;
8097 int ctermfg = 0;
8098 int ctermbg = 0;
8099
8100 id = syn_name2id((char_u *)"Normal");
8101 if (id > 0 && p_tgc)
8102 syn_id2colors(id, &guifg, &guibg);
8103 if (guifg == INVALCOLOR)
8104 {
8105 ctermfg = -1;
8106 if (id > 0)
8107 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
8108 guifg = ctermfg != -1 ? ctermtoxterm(ctermfg)
8109 : default_console_color_fg;
8110 cterm_normal_fg_gui_color = guifg;
8111 ctermfg = ctermfg < 0 ? 0 : ctermfg;
8112 }
8113 if (guibg == INVALCOLOR)
8114 {
8115 ctermbg = -1;
8116 if (id > 0)
8117 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
8118 guibg = ctermbg != -1 ? ctermtoxterm(ctermbg)
8119 : default_console_color_bg;
8120 cterm_normal_bg_gui_color = guibg;
8121 ctermbg = ctermbg < 0 ? 0 : ctermbg;
8122 }
8123
8124 *cterm_fg = ctermfg;
8125 *cterm_bg = ctermbg;
8126 *gui_fg = guifg;
8127 *gui_bg = guibg;
8128}
8129# endif
8130
Bram Moolenaardf543822020-01-30 11:53:59 +01008131/*
8132 * Set the console colors to the original colors or the last set colors.
8133 */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008134 static void
8135reset_console_color_rgb(void)
8136{
8137# ifdef FEAT_TERMGUICOLORS
8138 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8139
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008140 if (USE_WT)
8141 return;
8142
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008143 csbi.cbSize = sizeof(csbi);
8144 if (has_csbiex)
8145 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8146
8147 csbi.cbSize = sizeof(csbi);
8148 csbi.srWindow.Right += 1;
8149 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01008150 csbi.ColorTable[g_color_index_bg] = (COLORREF)store_console_bg_rgb;
8151 csbi.ColorTable[g_color_index_fg] = (COLORREF)store_console_fg_rgb;
8152 if (has_csbiex)
8153 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8154# endif
8155}
8156
8157/*
8158 * Set the console colors to the original colors.
8159 */
8160 static void
8161restore_console_color_rgb(void)
8162{
8163# ifdef FEAT_TERMGUICOLORS
8164 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8165
8166 csbi.cbSize = sizeof(csbi);
8167 if (has_csbiex)
8168 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8169
8170 csbi.cbSize = sizeof(csbi);
8171 csbi.srWindow.Right += 1;
8172 csbi.srWindow.Bottom += 1;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02008173 csbi.ColorTable[g_color_index_bg] = (COLORREF)save_console_bg_rgb;
8174 csbi.ColorTable[g_color_index_fg] = (COLORREF)save_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008175 if (has_csbiex)
8176 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8177# endif
8178}
8179
8180 void
8181control_console_color_rgb(void)
8182{
8183 if (USE_VTP)
8184 set_console_color_rgb();
8185 else
8186 reset_console_color_rgb();
8187}
8188
8189 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008190use_vtp(void)
8191{
8192 return USE_VTP;
8193}
8194
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008195 int
8196is_term_win32(void)
8197{
8198 return T_NAME != NULL && STRCMP(T_NAME, "win32") == 0;
8199}
8200
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01008201 int
8202has_vtp_working(void)
8203{
8204 return vtp_working;
8205}
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008206
Bram Moolenaar6902c0e2019-02-16 14:07:37 +01008207#endif
8208
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008209 int
8210has_conpty_working(void)
8211{
8212 return conpty_working;
8213}
8214
8215 int
Bram Moolenaar57da6982019-09-13 22:30:11 +02008216get_conpty_type(void)
8217{
8218 return conpty_type;
8219}
8220
8221 int
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008222is_conpty_stable(void)
8223{
8224 return conpty_stable;
8225}
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008226
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02008227 int
8228get_conpty_fix_type(void)
8229{
8230 return conpty_fix_type;
8231}
8232
Bram Moolenaarafde13b2019-04-28 19:46:49 +02008233#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008234 void
8235resize_console_buf(void)
8236{
8237 CONSOLE_SCREEN_BUFFER_INFO csbi;
8238 COORD coord;
8239 SMALL_RECT newsize;
8240
8241 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
8242 {
8243 coord.X = SRWIDTH(csbi.srWindow);
8244 coord.Y = SRHEIGHT(csbi.srWindow);
8245 SetConsoleScreenBufferSize(g_hConOut, coord);
8246
8247 newsize.Left = 0;
8248 newsize.Top = 0;
8249 newsize.Right = coord.X - 1;
8250 newsize.Bottom = coord.Y - 1;
8251 SetConsoleWindowInfo(g_hConOut, TRUE, &newsize);
8252
8253 SetConsoleScreenBufferSize(g_hConOut, coord);
8254 }
8255}
8256#endif
Martin Tournoij1a3e5742021-07-24 13:57:29 +02008257
8258 char *
8259GetWin32Error(void)
8260{
8261 char *msg = NULL;
8262 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM,
8263 NULL, GetLastError(), 0, (LPSTR)&msg, 0, NULL);
8264 if (msg != NULL)
8265 {
8266 // remove trailing \r\n
8267 char *pcrlf = strstr(msg, "\r\n");
8268 if (pcrlf != NULL)
8269 *pcrlf = '\0';
8270 }
8271 return msg;
8272}