blob: 874a2c69d8df64a5017d5f83450c2d46b45d5780 [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 Moolenaar4f974752019-02-17 17:44:42 +010049# if defined(FEAT_TITLE) && !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
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200244# if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
245# define UChar UnicodeChar
246# else
247# define UChar uChar.UnicodeChar
248# endif
249
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{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100430 return read_console_input(hInput, lpBuffer, -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{
442 if (read_console_input(NULL, NULL, -2, NULL))
443 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{
455 if (read_console_input(NULL, NULL, -2, NULL))
456 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 Moolenaarf9e3e092019-01-13 23:38:42 +0100719 semsg(_(e_loadlib), GETTEXT_DLL);
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 {
727 if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL,
728 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 Moolenaarf9e3e092019-01-13 23:38:42 +0100734 semsg(_(e_loadfunc), 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 }
Bram Moolenaar7ca86fe2020-09-03 19:25:11 +02002080# ifdef FEAT_JOB_CHANNEL
2081 if (len > 0)
2082 {
2083 buf[len] = NUL;
2084 ch_log(NULL, "raw key input: \"%s\"", buf);
2085 }
2086# 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;
2138 int noext = FALSE;
2139 int retval = FALSE;
2140
2141 if (len >= sizeof(buf)) // safety check
Bram Moolenaar43663192017-03-05 14:29:12 +01002142 return FALSE;
Bram Moolenaar95da1362020-05-30 18:37:55 +02002143
2144 // Using the name directly when a Unix-shell like 'shell'.
2145 if (strstr((char *)gettail(p_sh), "sh") != NULL)
2146 noext = TRUE;
2147
2148 if (use_pathext)
2149 {
2150 pathext = mch_getenv("PATHEXT");
2151 if (pathext == NULL)
2152 pathext = (char_u *)".com;.exe;.bat;.cmd";
2153
2154 if (noext == FALSE)
2155 {
2156 /*
2157 * Loop over all extensions in $PATHEXT.
2158 * Check "name" ends with extension.
2159 */
2160 p = pathext;
2161 while (*p)
2162 {
2163 if (p[0] == ';'
2164 || (p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2165 {
2166 // Skip empty or single ".".
2167 ++p;
2168 continue;
2169 }
2170 e = vim_strchr(p, ';');
2171 if (e == NULL)
2172 e = p + STRLEN(p);
2173 tmplen = e - p;
2174
2175 if (_strnicoll(name + len - tmplen, (char *)p, tmplen) == 0)
2176 {
2177 noext = TRUE;
2178 break;
2179 }
2180
2181 p = e;
2182 }
2183 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002184 }
2185
Bram Moolenaar95da1362020-05-30 18:37:55 +02002186 // Prepend single "." to pathext, it's means no extension added.
2187 if (pathext == NULL)
2188 pathext = (char_u *)".";
2189 else if (noext == TRUE)
2190 {
2191 if (pathextbuf == NULL)
2192 pathextbuf = alloc(STRLEN(pathext) + 3);
2193 if (pathextbuf == NULL)
2194 {
2195 retval = FALSE;
2196 goto theend;
2197 }
2198 STRCPY(pathextbuf, ".;");
2199 STRCAT(pathextbuf, pathext);
2200 pathext = pathextbuf;
2201 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02002202
Bram Moolenaar95da1362020-05-30 18:37:55 +02002203 // Use $PATH when "use_path" is TRUE and "name" is basename.
2204 if (use_path && gettail((char_u *)name) == (char_u *)name)
2205 {
2206 p = mch_getenv("PATH");
2207 if (p != NULL)
2208 {
2209 pathbuf = alloc(STRLEN(p) + 3);
2210 if (pathbuf == NULL)
2211 {
2212 retval = FALSE;
2213 goto theend;
2214 }
2215 STRCPY(pathbuf, ".;");
2216 STRCAT(pathbuf, p);
2217 }
2218 }
2219
2220 /*
2221 * Walk through all entries in $PATH to check if "name" exists there and
2222 * is an executable file.
2223 */
2224 p = (pathbuf != NULL) ? pathbuf : (char_u *)".";
2225 while (*p)
2226 {
2227 if (*p == ';') // Skip empty entry
2228 {
2229 ++p;
2230 continue;
2231 }
2232 e = vim_strchr(p, ';');
2233 if (e == NULL)
2234 e = p + STRLEN(p);
2235
2236 if (e - p + len + 2 > sizeof(buf))
2237 {
2238 retval = FALSE;
2239 goto theend;
2240 }
2241 // A single "." that means current dir.
2242 if (e - p == 1 && *p == '.')
2243 STRCPY(buf, name);
2244 else
2245 {
2246 vim_strncpy(buf, p, e - p);
2247 add_pathsep(buf);
2248 STRCAT(buf, name);
2249 }
2250 tmplen = STRLEN(buf);
2251
2252 /*
2253 * Loop over all extensions in $PATHEXT.
2254 * Check "name" with extension added.
2255 */
2256 p = pathext;
2257 while (*p)
2258 {
2259 if (*p == ';')
2260 {
2261 // Skip empty entry
2262 ++p;
2263 continue;
2264 }
2265 e2 = vim_strchr(p, (int)';');
2266 if (e2 == NULL)
2267 e2 = p + STRLEN(p);
2268
2269 if (!(p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2270 {
2271 // Not a single "." that means no extension is added.
2272 if (e2 - p + tmplen + 1 > sizeof(buf))
2273 {
2274 retval = FALSE;
2275 goto theend;
2276 }
2277 vim_strncpy(buf + tmplen, p, e2 - p);
2278 }
2279 if (executable_file((char *)buf, path))
2280 {
2281 retval = TRUE;
2282 goto theend;
2283 }
2284
2285 p = e2;
2286 }
2287
2288 p = e;
2289 }
2290
2291theend:
2292 free(pathextbuf);
2293 free(pathbuf);
2294 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295}
2296
Bram Moolenaar1eed5322019-02-26 17:03:54 +01002297#if (defined(__MINGW32__) && __MSVCRT_VERSION__ >= 0x800) || \
2298 (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002299/*
2300 * Bad parameter handler.
2301 *
2302 * Certain MS CRT functions will intentionally crash when passed invalid
2303 * parameters to highlight possible security holes. Setting this function as
2304 * the bad parameter handler will prevent the crash.
2305 *
2306 * In debug builds the parameters contain CRT information that might help track
2307 * down the source of a problem, but in non-debug builds the arguments are all
2308 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
2309 * worth allowing these to make debugging of issues easier.
2310 */
2311 static void
2312bad_param_handler(const wchar_t *expression,
2313 const wchar_t *function,
2314 const wchar_t *file,
2315 unsigned int line,
2316 uintptr_t pReserved)
2317{
2318}
2319
2320# define SET_INVALID_PARAM_HANDLER \
2321 ((void)_set_invalid_parameter_handler(bad_param_handler))
2322#else
2323# define SET_INVALID_PARAM_HANDLER
2324#endif
2325
Bram Moolenaar4f974752019-02-17 17:44:42 +01002326#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327
2328/*
2329 * GUI version of mch_init().
2330 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002331 static void
2332mch_init_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002334# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002336# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337
Bram Moolenaar0f873732019-12-05 20:28:46 +01002338 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002339 SET_INVALID_PARAM_HANDLER;
2340
Bram Moolenaar0f873732019-12-05 20:28:46 +01002341 // Let critical errors result in a failure, not in a dialog box. Required
2342 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343 SetErrorMode(SEM_FAILCRITICALERRORS);
2344
Bram Moolenaar0f873732019-12-05 20:28:46 +01002345 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346
Bram Moolenaar0f873732019-12-05 20:28:46 +01002347 // Specify window size. Is there a place to get the default from?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 Rows = 25;
2349 Columns = 80;
2350
Bram Moolenaar0f873732019-12-05 20:28:46 +01002351 // Look for 'vimrun'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 {
2353 char_u vimrun_location[_MAX_PATH + 4];
2354
Bram Moolenaar0f873732019-12-05 20:28:46 +01002355 // First try in same directory as gvim.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 STRCPY(vimrun_location, exe_name);
2357 STRCPY(gettail(vimrun_location), "vimrun.exe");
2358 if (mch_getperm(vimrun_location) >= 0)
2359 {
2360 if (*skiptowhite(vimrun_location) != NUL)
2361 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002362 // Enclose path with white space in double quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 mch_memmove(vimrun_location + 1, vimrun_location,
2364 STRLEN(vimrun_location) + 1);
2365 *vimrun_location = '"';
2366 STRCPY(gettail(vimrun_location), "vimrun\" ");
2367 }
2368 else
2369 STRCPY(gettail(vimrun_location), "vimrun ");
2370
2371 vimrun_path = (char *)vim_strsave(vimrun_location);
2372 s_dont_use_vimrun = FALSE;
2373 }
Bram Moolenaar95da1362020-05-30 18:37:55 +02002374 else if (executable_exists("vimrun.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 s_dont_use_vimrun = FALSE;
2376
Bram Moolenaar0f873732019-12-05 20:28:46 +01002377 // Don't give the warning for a missing vimrun.exe right now, but only
2378 // when vimrun was supposed to be used. Don't bother people that do
2379 // not need vimrun.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002380 if (s_dont_use_vimrun)
2381 need_vimrun_warning = TRUE;
2382 }
2383
2384 /*
2385 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2386 * Otherwise the default "findstr /n" is used.
2387 */
Bram Moolenaar95da1362020-05-30 18:37:55 +02002388 if (!executable_exists("findstr.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2390
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002391# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002392 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002393# endif
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01002394
2395 vtp_flag_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396}
2397
2398
Bram Moolenaar0f873732019-12-05 20:28:46 +01002399#endif // FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002400
2401#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002402
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002403# define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2404# define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405
2406/*
2407 * ClearConsoleBuffer()
2408 * Description:
2409 * Clears the entire contents of the console screen buffer, using the
2410 * specified attribute.
2411 * Returns:
2412 * TRUE on success
2413 */
2414 static BOOL
2415ClearConsoleBuffer(WORD wAttribute)
2416{
2417 CONSOLE_SCREEN_BUFFER_INFO csbi;
2418 COORD coord;
2419 DWORD NumCells, dummy;
2420
2421 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2422 return FALSE;
2423
2424 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2425 coord.X = 0;
2426 coord.Y = 0;
2427 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2428 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2431 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433
2434 return TRUE;
2435}
2436
2437/*
2438 * FitConsoleWindow()
2439 * Description:
2440 * Checks if the console window will fit within given buffer dimensions.
2441 * Also, if requested, will shrink the window to fit.
2442 * Returns:
2443 * TRUE on success
2444 */
2445 static BOOL
2446FitConsoleWindow(
2447 COORD dwBufferSize,
2448 BOOL WantAdjust)
2449{
2450 CONSOLE_SCREEN_BUFFER_INFO csbi;
2451 COORD dwWindowSize;
2452 BOOL NeedAdjust = FALSE;
2453
2454 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2455 {
2456 /*
2457 * A buffer resize will fail if the current console window does
2458 * not lie completely within that buffer. To avoid this, we might
2459 * have to move and possibly shrink the window.
2460 */
2461 if (csbi.srWindow.Right >= dwBufferSize.X)
2462 {
2463 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2464 if (dwWindowSize.X > dwBufferSize.X)
2465 dwWindowSize.X = dwBufferSize.X;
2466 csbi.srWindow.Right = dwBufferSize.X - 1;
2467 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2468 NeedAdjust = TRUE;
2469 }
2470 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2471 {
2472 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2473 if (dwWindowSize.Y > dwBufferSize.Y)
2474 dwWindowSize.Y = dwBufferSize.Y;
2475 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2476 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2477 NeedAdjust = TRUE;
2478 }
2479 if (NeedAdjust && WantAdjust)
2480 {
2481 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2482 return FALSE;
2483 }
2484 return TRUE;
2485 }
2486
2487 return FALSE;
2488}
2489
2490typedef struct ConsoleBufferStruct
2491{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002492 BOOL IsValid;
2493 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002494 PCHAR_INFO Buffer;
2495 COORD BufferSize;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002496 PSMALL_RECT Regions;
2497 int NumRegions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498} ConsoleBuffer;
2499
2500/*
2501 * SaveConsoleBuffer()
2502 * Description:
2503 * Saves important information about the console buffer, including the
2504 * actual buffer contents. The saved information is suitable for later
2505 * restoration by RestoreConsoleBuffer().
2506 * Returns:
2507 * TRUE if all information was saved; FALSE otherwise
2508 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2509 */
2510 static BOOL
2511SaveConsoleBuffer(
2512 ConsoleBuffer *cb)
2513{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002514 DWORD NumCells;
2515 COORD BufferCoord;
2516 SMALL_RECT ReadRegion;
2517 WORD Y, Y_incr;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002518 int i, numregions;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002519
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 if (cb == NULL)
2521 return FALSE;
2522
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002523 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 {
2525 cb->IsValid = FALSE;
2526 return FALSE;
2527 }
2528 cb->IsValid = TRUE;
2529
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002530 /*
2531 * Allocate a buffer large enough to hold the entire console screen
2532 * buffer. If this ConsoleBuffer structure has already been initialized
2533 * with a buffer of the correct size, then just use that one.
2534 */
2535 if (!cb->IsValid || cb->Buffer == NULL ||
2536 cb->BufferSize.X != cb->Info.dwSize.X ||
2537 cb->BufferSize.Y != cb->Info.dwSize.Y)
2538 {
2539 cb->BufferSize.X = cb->Info.dwSize.X;
2540 cb->BufferSize.Y = cb->Info.dwSize.Y;
2541 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2542 vim_free(cb->Buffer);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002543 cb->Buffer = ALLOC_MULT(CHAR_INFO, NumCells);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002544 if (cb->Buffer == NULL)
2545 return FALSE;
2546 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547
2548 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002549 * We will now copy the console screen buffer into our buffer.
2550 * ReadConsoleOutput() seems to be limited as far as how much you
2551 * can read at a time. Empirically, this number seems to be about
2552 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2553 * in chunks until it is all copied. The chunks will all have the
2554 * same horizontal characteristics, so initialize them now. The
2555 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002557 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002558 ReadRegion.Left = 0;
2559 ReadRegion.Right = cb->Info.dwSize.X - 1;
2560 Y_incr = 12000 / cb->Info.dwSize.X;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002561
2562 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr;
2563 if (cb->Regions == NULL || numregions != cb->NumRegions)
2564 {
2565 cb->NumRegions = numregions;
2566 vim_free(cb->Regions);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002567 cb->Regions = ALLOC_MULT(SMALL_RECT, cb->NumRegions);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002568 if (cb->Regions == NULL)
2569 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002570 VIM_CLEAR(cb->Buffer);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002571 return FALSE;
2572 }
2573 }
2574
2575 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002577 /*
2578 * Read into position (0, Y) in our buffer.
2579 */
2580 BufferCoord.Y = Y;
2581 /*
2582 * Read the region whose top left corner is (0, Y) and whose bottom
2583 * right corner is (width - 1, Y + Y_incr - 1). This should define
2584 * a region of size width by Y_incr. Don't worry if this region is
2585 * too large for the remaining buffer; it will be cropped.
2586 */
2587 ReadRegion.Top = Y;
2588 ReadRegion.Bottom = Y + Y_incr - 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002589 if (!ReadConsoleOutputW(g_hConOut, // output handle
2590 cb->Buffer, // our buffer
2591 cb->BufferSize, // dimensions of our buffer
2592 BufferCoord, // offset in our buffer
2593 &ReadRegion)) // region to save
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002594 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002595 VIM_CLEAR(cb->Buffer);
2596 VIM_CLEAR(cb->Regions);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002597 return FALSE;
2598 }
Bram Moolenaar444fda22017-08-11 20:37:00 +02002599 cb->Regions[i] = ReadRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 }
2601
2602 return TRUE;
2603}
2604
2605/*
2606 * RestoreConsoleBuffer()
2607 * Description:
2608 * Restores important information about the console buffer, including the
2609 * actual buffer contents, if desired. The information to restore is in
2610 * the same format used by SaveConsoleBuffer().
2611 * Returns:
2612 * TRUE on success
2613 */
2614 static BOOL
2615RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002616 ConsoleBuffer *cb,
2617 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002619 COORD BufferCoord;
2620 SMALL_RECT WriteRegion;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002621 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622
2623 if (cb == NULL || !cb->IsValid)
2624 return FALSE;
2625
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002626 /*
2627 * Before restoring the buffer contents, clear the current buffer, and
2628 * restore the cursor position and window information. Doing this now
2629 * prevents old buffer contents from "flashing" onto the screen.
2630 */
2631 if (RestoreScreen)
2632 ClearConsoleBuffer(cb->Info.wAttributes);
2633
2634 FitConsoleWindow(cb->Info.dwSize, TRUE);
2635 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2636 return FALSE;
2637 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2638 return FALSE;
2639
2640 if (!RestoreScreen)
2641 {
2642 /*
2643 * No need to restore the screen buffer contents, so we're done.
2644 */
2645 return TRUE;
2646 }
2647
2648 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2649 return FALSE;
2650 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2651 return FALSE;
2652
2653 /*
2654 * Restore the screen buffer contents.
2655 */
2656 if (cb->Buffer != NULL)
2657 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002658 for (i = 0; i < cb->NumRegions; i++)
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002659 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002660 BufferCoord.X = cb->Regions[i].Left;
2661 BufferCoord.Y = cb->Regions[i].Top;
2662 WriteRegion = cb->Regions[i];
Bram Moolenaar0f873732019-12-05 20:28:46 +01002663 if (!WriteConsoleOutputW(g_hConOut, // output handle
2664 cb->Buffer, // our buffer
2665 cb->BufferSize, // dimensions of our buffer
2666 BufferCoord, // offset in our buffer
2667 &WriteRegion)) // region to restore
Bram Moolenaar444fda22017-08-11 20:37:00 +02002668 return FALSE;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002669 }
2670 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671
2672 return TRUE;
2673}
2674
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002675# define FEAT_RESTORE_ORIG_SCREEN
2676# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002677static ConsoleBuffer g_cbOrig = { 0 };
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002678# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679static ConsoleBuffer g_cbNonTermcap = { 0 };
2680static ConsoleBuffer g_cbTermcap = { 0 };
2681
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002682# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683char g_szOrigTitle[256] = { 0 };
Bram Moolenaar0f873732019-12-05 20:28:46 +01002684HWND g_hWnd = NULL; // also used in os_mswin.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685static HICON g_hOrigIconSmall = NULL;
2686static HICON g_hOrigIcon = NULL;
2687static HICON g_hVimIcon = NULL;
2688static BOOL g_fCanChangeIcon = FALSE;
2689
Bram Moolenaar0f873732019-12-05 20:28:46 +01002690// ICON* are not defined in VC++ 4.0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002691# ifndef ICON_SMALL
2692# define ICON_SMALL 0
2693# endif
2694# ifndef ICON_BIG
2695# define ICON_BIG 1
2696# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697/*
2698 * GetConsoleIcon()
2699 * Description:
2700 * Attempts to retrieve the small icon and/or the big icon currently in
2701 * use by a given window.
2702 * Returns:
2703 * TRUE on success
2704 */
2705 static BOOL
2706GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002707 HWND hWnd,
2708 HICON *phIconSmall,
2709 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710{
2711 if (hWnd == NULL)
2712 return FALSE;
2713
2714 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002715 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2716 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002718 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2719 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 return TRUE;
2721}
2722
2723/*
2724 * SetConsoleIcon()
2725 * Description:
2726 * Attempts to change the small icon and/or the big icon currently in
2727 * use by a given window.
2728 * Returns:
2729 * TRUE on success
2730 */
2731 static BOOL
2732SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002733 HWND hWnd,
2734 HICON hIconSmall,
2735 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 if (hWnd == NULL)
2738 return FALSE;
2739
2740 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002741 SendMessage(hWnd, WM_SETICON,
2742 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002744 SendMessage(hWnd, WM_SETICON,
2745 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 return TRUE;
2747}
2748
2749/*
2750 * SaveConsoleTitleAndIcon()
2751 * Description:
2752 * Saves the current console window title in g_szOrigTitle, for later
2753 * restoration. Also, attempts to obtain a handle to the console window,
2754 * and use it to save the small and big icons currently in use by the
2755 * console window. This is not always possible on some versions of Windows;
2756 * nor is it possible when running Vim remotely using Telnet (since the
2757 * console window the user sees is owned by a remote process).
2758 */
2759 static void
2760SaveConsoleTitleAndIcon(void)
2761{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002762 // Save the original title.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2764 return;
2765
2766 /*
2767 * Obtain a handle to the console window using GetConsoleWindow() from
2768 * KERNEL32.DLL; we need to handle in order to change the window icon.
2769 * This function only exists on NT-based Windows, starting with Windows
2770 * 2000. On older operating systems, we can't change the window icon
2771 * anyway.
2772 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002773 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 if (g_hWnd == NULL)
2775 return;
2776
Bram Moolenaar0f873732019-12-05 20:28:46 +01002777 // Save the original console window icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2779 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2780 return;
2781
Bram Moolenaar0f873732019-12-05 20:28:46 +01002782 // Extract the first icon contained in the Vim executable.
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002783 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002784 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 if (g_hVimIcon != NULL)
2786 g_fCanChangeIcon = TRUE;
2787}
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002788# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789
2790static int g_fWindInitCalled = FALSE;
2791static int g_fTermcapMode = FALSE;
2792static CONSOLE_CURSOR_INFO g_cci;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793
2794/*
2795 * non-GUI version of mch_init().
2796 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002797 static void
2798mch_init_c(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002800# ifndef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002801 CONSOLE_SCREEN_BUFFER_INFO csbi;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002802# endif
2803# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002805# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806
Bram Moolenaar0f873732019-12-05 20:28:46 +01002807 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002808 SET_INVALID_PARAM_HANDLER;
2809
Bram Moolenaar0f873732019-12-05 20:28:46 +01002810 // Let critical errors result in a failure, not in a dialog box. Required
2811 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812 SetErrorMode(SEM_FAILCRITICALERRORS);
2813
Bram Moolenaar0f873732019-12-05 20:28:46 +01002814 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815 out_flush();
2816
Bram Moolenaar0f873732019-12-05 20:28:46 +01002817 // Obtain handles for the standard Console I/O devices
Bram Moolenaar071d4272004-06-13 20:20:40 +00002818 if (read_cmd_fd == 0)
2819 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2820 else
2821 create_conin();
2822 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2823
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002824# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar0f873732019-12-05 20:28:46 +01002825 // Save the initial console buffer for later restoration
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002826 SaveConsoleBuffer(&g_cbOrig);
2827 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002828# else
Bram Moolenaar0f873732019-12-05 20:28:46 +01002829 // Get current text attributes
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002830 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2831 g_attrCurrent = g_attrDefault = csbi.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002832# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 if (cterm_normal_fg_color == 0)
2834 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2835 if (cterm_normal_bg_color == 0)
2836 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2837
Bram Moolenaarbdace832019-03-02 10:13:42 +01002838 // Fg and Bg color index number at startup
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02002839 g_color_index_fg = g_attrDefault & 0xf;
2840 g_color_index_bg = (g_attrDefault >> 4) & 0xf;
2841
Bram Moolenaar0f873732019-12-05 20:28:46 +01002842 // set termcap codes to current text attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 update_tcap(g_attrCurrent);
2844
2845 GetConsoleCursorInfo(g_hConOut, &g_cci);
2846 GetConsoleMode(g_hConIn, &g_cmodein);
2847 GetConsoleMode(g_hConOut, &g_cmodeout);
2848
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002849# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 SaveConsoleTitleAndIcon();
2851 /*
2852 * Set both the small and big icons of the console window to Vim's icon.
2853 * Note that Vim presently only has one size of icon (32x32), but it
2854 * automatically gets scaled down to 16x16 when setting the small icon.
2855 */
2856 if (g_fCanChangeIcon)
2857 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002858# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859
2860 ui_get_shellsize();
2861
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002862# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 fdDump = fopen("dump", "wt");
2864
2865 if (fdDump)
2866 {
2867 time_t t;
2868
2869 time(&t);
2870 fputs(ctime(&t), fdDump);
2871 fflush(fdDump);
2872 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002873# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874
2875 g_fWindInitCalled = TRUE;
2876
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002879# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002880 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002881# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002882
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02002883 vtp_flag_init();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002884 vtp_init();
Bram Moolenaar06b7b582020-05-30 17:49:25 +02002885 wt_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886}
2887
2888/*
2889 * non-GUI version of mch_exit().
2890 * Shut down and exit with status `r'
2891 * Careful: mch_exit() may be called before mch_init()!
2892 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002893 static void
2894mch_exit_c(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002896 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002898 vtp_exit();
2899
Bram Moolenaar955f1982017-02-05 15:10:51 +01002900 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 if (g_fWindInitCalled)
2902 settmode(TMODE_COOK);
2903
Bram Moolenaar0f873732019-12-05 20:28:46 +01002904 ml_close_all(TRUE); // remove all memfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905
2906 if (g_fWindInitCalled)
2907 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002908# ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02002909 mch_restore_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 /*
2911 * Restore both the small and big icons of the console window to
2912 * what they were at startup. Don't do this when the window is
2913 * closed, Vim would hang here.
2914 */
2915 if (g_fCanChangeIcon && !g_fForceExit)
2916 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002917# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002919# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 if (fdDump)
2921 {
2922 time_t t;
2923
2924 time(&t);
2925 fputs(ctime(&t), fdDump);
2926 fclose(fdDump);
2927 }
2928 fdDump = NULL;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002929# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 }
2931
2932 SetConsoleCursorInfo(g_hConOut, &g_cci);
Wez Furlong6ef5ab52021-05-30 19:29:41 +02002933 SetConsoleMode(g_hConIn, g_cmodein | ENABLE_EXTENDED_FLAGS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 SetConsoleMode(g_hConOut, g_cmodeout);
2935
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002936# ifdef DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 dyn_libintl_end();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002938# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939
2940 exit(r);
2941}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002942#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002944 void
2945mch_init(void)
2946{
2947#ifdef VIMDLL
2948 if (gui.starting)
2949 mch_init_g();
2950 else
2951 mch_init_c();
2952#elif defined(FEAT_GUI_MSWIN)
2953 mch_init_g();
2954#else
2955 mch_init_c();
2956#endif
2957}
2958
2959 void
2960mch_exit(int r)
2961{
Bram Moolenaar173d8412020-04-19 14:02:26 +02002962#ifdef FEAT_NETBEANS_INTG
2963 netbeans_send_disconnect();
2964#endif
2965
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002966#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02002967 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002968 mch_exit_g(r);
2969 else
2970 mch_exit_c(r);
2971#elif defined(FEAT_GUI_MSWIN)
2972 mch_exit_g(r);
2973#else
2974 mch_exit_c(r);
2975#endif
2976}
2977
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978/*
2979 * Do we have an interactive window?
2980 */
2981 int
2982mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002983 int argc UNUSED,
2984 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985{
2986 get_exe_name();
2987
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002988#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002989 return OK; // GUI always has a tty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990#else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002991# ifdef VIMDLL
2992 if (gui.in_use)
2993 return OK;
2994# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 if (isatty(1))
2996 return OK;
2997 return FAIL;
2998#endif
2999}
3000
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003001/*
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003002 * Set the case of the file name, if it already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 * When "len" is > 0, also expand short to long filenames.
3004 */
3005 void
3006fname_case(
3007 char_u *name,
3008 int len)
3009{
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003010 int flen;
3011 WCHAR *p;
3012 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00003014 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003015 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 return;
3017
3018 slash_adjust(name);
3019
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003020 p = enc_to_utf16(name, NULL);
3021 if (p == NULL)
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003022 return;
3023
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003024 if (GetLongPathNameW(p, buf, _MAX_PATH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003026 char_u *q = utf16_to_enc(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003028 if (q != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003030 if (len > 0 || flen >= (int)STRLEN(q))
3031 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
3032 vim_free(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 }
3034 }
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003035 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036}
3037
3038
3039/*
3040 * Insert user name in s[len].
3041 */
3042 int
3043mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003044 char_u *s,
3045 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003047 WCHAR wszUserName[256 + 1]; // UNLEN is 256
K.Takataeeec2542021-06-02 13:28:16 +02003048 DWORD wcch = ARRAY_LENGTH(wszUserName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003050 if (GetUserNameW(wszUserName, &wcch))
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003051 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003052 char_u *p = utf16_to_enc(wszUserName, NULL);
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003053
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003054 if (p != NULL)
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003055 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003056 vim_strncpy(s, p, len - 1);
3057 vim_free(p);
3058 return OK;
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003059 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003060 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 s[0] = NUL;
3062 return FAIL;
3063}
3064
3065
3066/*
3067 * Insert host name in s[len].
3068 */
3069 void
3070mch_get_host_name(
3071 char_u *s,
3072 int len)
3073{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003074 WCHAR wszHostName[256 + 1];
K.Takataeeec2542021-06-02 13:28:16 +02003075 DWORD wcch = ARRAY_LENGTH(wszHostName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003077 if (GetComputerNameW(wszHostName, &wcch))
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003078 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003079 char_u *p = utf16_to_enc(wszHostName, NULL);
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003080
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003081 if (p != NULL)
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003082 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003083 vim_strncpy(s, p, len - 1);
3084 vim_free(p);
3085 return;
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003086 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088}
3089
3090
3091/*
3092 * return process ID
3093 */
3094 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003095mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096{
3097 return (long)GetCurrentProcessId();
3098}
3099
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003100/*
3101 * return TRUE if process "pid" is still running
3102 */
3103 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02003104mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003105{
3106 HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, 0, (DWORD)pid);
3107 DWORD status = 0;
3108 int ret = FALSE;
3109
3110 if (hProcess == NULL)
3111 return FALSE; // might not have access
3112 if (GetExitCodeProcess(hProcess, &status) )
3113 ret = status == STILL_ACTIVE;
3114 CloseHandle(hProcess);
3115 return ret;
3116}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117
3118/*
3119 * Get name of current directory into buffer 'buf' of length 'len' bytes.
3120 * Return OK for success, FAIL for failure.
3121 */
3122 int
3123mch_dirname(
3124 char_u *buf,
3125 int len)
3126{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003127 WCHAR wbuf[_MAX_PATH + 1];
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003128
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 /*
3130 * Originally this was:
3131 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3132 * But the Win32s known bug list says that getcwd() doesn't work
3133 * so use the Win32 system call instead. <Negri>
3134 */
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003135 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003137 WCHAR wcbuf[_MAX_PATH + 1];
3138 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003140 if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003142 p = utf16_to_enc(wcbuf, NULL);
3143 if (STRLEN(p) >= (size_t)len)
Bram Moolenaarcea1f9e2018-08-19 14:38:42 +02003144 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003145 // long path name is too long, fall back to short one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003147 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 }
3149 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003150 if (p == NULL)
3151 p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003152
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003153 if (p != NULL)
3154 {
3155 vim_strncpy(buf, p, len - 1);
3156 vim_free(p);
3157 return OK;
3158 }
3159 }
3160 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161}
3162
3163/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003164 * Get file permissions for "name".
3165 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 */
3167 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003168mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003170 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003171 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003173 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003174 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175}
3176
3177
3178/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003179 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003180 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003181 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182 */
3183 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003184mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003186 long n;
3187 WCHAR *p;
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003188
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003189 p = enc_to_utf16(name, NULL);
3190 if (p == NULL)
3191 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003193 n = _wchmod(p, perm);
3194 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003195 if (n == -1)
3196 return FAIL;
3197
3198 win32_set_archive(name);
3199
3200 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201}
3202
3203/*
3204 * Set hidden flag for "name".
3205 */
3206 void
3207mch_hide(char_u *name)
3208{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003209 int attrs = win32_getattrs(name);
3210 if (attrs == -1)
3211 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003213 attrs |= FILE_ATTRIBUTE_HIDDEN;
3214 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215}
3216
3217/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003218 * Return TRUE if file "name" exists and is hidden.
3219 */
3220 int
3221mch_ishidden(char_u *name)
3222{
3223 int f = win32_getattrs(name);
3224
3225 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003226 return FALSE; // file does not exist at all
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003227
3228 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3229}
3230
3231/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 * return TRUE if "name" is a directory
3233 * return FALSE if "name" is not a directory or upon error
3234 */
3235 int
3236mch_isdir(char_u *name)
3237{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003238 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003239
3240 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003241 return FALSE; // file does not exist at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242
3243 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3244}
3245
3246/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003247 * return TRUE if "name" is a directory, NOT a symlink to a directory
3248 * return FALSE if "name" is not a directory
3249 * return FALSE for error
3250 */
3251 int
3252mch_isrealdir(char_u *name)
3253{
3254 return mch_isdir(name) && !mch_is_symbolic_link(name);
3255}
3256
3257/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003258 * Create directory "name".
3259 * Return 0 on success, -1 on error.
3260 */
3261 int
3262mch_mkdir(char_u *name)
3263{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003264 WCHAR *p;
3265 int retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003266
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003267 p = enc_to_utf16(name, NULL);
3268 if (p == NULL)
3269 return -1;
3270 retval = _wmkdir(p);
3271 vim_free(p);
3272 return retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003273}
3274
3275/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003276 * Delete directory "name".
3277 * Return 0 on success, -1 on error.
3278 */
3279 int
3280mch_rmdir(char_u *name)
3281{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003282 WCHAR *p;
3283 int retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003284
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003285 p = enc_to_utf16(name, NULL);
3286 if (p == NULL)
3287 return -1;
3288 retval = _wrmdir(p);
3289 vim_free(p);
3290 return retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003291}
3292
3293/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003294 * Return TRUE if file "fname" has more than one link.
3295 */
3296 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003297mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003298{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003299 BY_HANDLE_FILE_INFORMATION info;
3300
3301 return win32_fileinfo(fname, &info) == FILEINFO_OK
3302 && info.nNumberOfLinks > 1;
3303}
3304
3305/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003306 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003307 */
3308 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003309mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003310{
3311 HANDLE hFind;
3312 int res = FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003313 DWORD fileFlags = 0, reparseTag = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003314 WCHAR *wn;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003315 WIN32_FIND_DATAW findDataW;
3316
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003317 wn = enc_to_utf16(name, NULL);
3318 if (wn == NULL)
3319 return FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003320
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003321 hFind = FindFirstFileW(wn, &findDataW);
3322 vim_free(wn);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003323 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003324 {
3325 fileFlags = findDataW.dwFileAttributes;
3326 reparseTag = findDataW.dwReserved0;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003327 FindClose(hFind);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003328 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003329
3330 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003331 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3332 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003333 res = TRUE;
3334
3335 return res;
3336}
3337
3338/*
3339 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3340 * link.
3341 */
3342 int
3343mch_is_linked(char_u *fname)
3344{
3345 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3346 return TRUE;
3347 return FALSE;
3348}
3349
3350/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003351 * Get the by-handle-file-information for "fname".
3352 * Returns FILEINFO_OK when OK.
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003353 * Returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003354 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3355 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3356 */
3357 int
3358win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3359{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003360 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003361 int res = FILEINFO_READ_FAIL;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003362 WCHAR *wn;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003363
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003364 wn = enc_to_utf16(fname, NULL);
3365 if (wn == NULL)
3366 return FILEINFO_ENC_FAIL;
3367
3368 hFile = CreateFileW(wn, // file name
3369 GENERIC_READ, // access mode
3370 FILE_SHARE_READ | FILE_SHARE_WRITE, // share mode
3371 NULL, // security descriptor
3372 OPEN_EXISTING, // creation disposition
3373 FILE_FLAG_BACKUP_SEMANTICS, // file attributes
3374 NULL); // handle to template file
3375 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003376
3377 if (hFile != INVALID_HANDLE_VALUE)
3378 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003379 if (GetFileInformationByHandle(hFile, info) != 0)
3380 res = FILEINFO_OK;
3381 else
3382 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003383 CloseHandle(hFile);
3384 }
3385
Bram Moolenaar03f48552006-02-28 23:52:23 +00003386 return res;
3387}
3388
3389/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003390 * get file attributes for `name'
3391 * -1 : error
3392 * else FILE_ATTRIBUTE_* defined in winnt.h
3393 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003394 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003395win32_getattrs(char_u *name)
3396{
3397 int attr;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003398 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003399
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003400 p = enc_to_utf16(name, NULL);
3401 if (p == NULL)
3402 return INVALID_FILE_ATTRIBUTES;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003403
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003404 attr = GetFileAttributesW(p);
3405 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003406
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003407 return attr;
3408}
3409
3410/*
3411 * set file attributes for `name' to `attrs'
3412 *
3413 * return -1 for failure, 0 otherwise
3414 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003415 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003416win32_setattrs(char_u *name, int attrs)
3417{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003418 int res;
3419 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003420
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003421 p = enc_to_utf16(name, NULL);
3422 if (p == NULL)
3423 return -1;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003424
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003425 res = SetFileAttributesW(p, attrs);
3426 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003427
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003428 return res ? 0 : -1;
3429}
3430
3431/*
3432 * Set archive flag for "name".
3433 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003434 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003435win32_set_archive(char_u *name)
3436{
3437 int attrs = win32_getattrs(name);
3438 if (attrs == -1)
3439 return -1;
3440
3441 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3442 return win32_setattrs(name, attrs);
3443}
3444
3445/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 * Return TRUE if file or directory "name" is writable (not readonly).
3447 * Strange semantics of Win32: a readonly directory is writable, but you can't
3448 * delete a file. Let's say this means it is writable.
3449 */
3450 int
3451mch_writable(char_u *name)
3452{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003453 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003455 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3456 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457}
3458
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003460 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003461 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003462 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3463 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 */
3465 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003466mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467{
Bram Moolenaar95da1362020-05-30 18:37:55 +02003468 return executable_exists((char *)name, path, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470
3471/*
3472 * Check what "name" is:
3473 * NODE_NORMAL: file or directory (or doesn't exist)
3474 * NODE_WRITABLE: writable device, socket, fifo, etc.
3475 * NODE_OTHER: non-writable things
3476 */
3477 int
3478mch_nodetype(char_u *name)
3479{
3480 HANDLE hFile;
3481 int type;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003482 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483
Bram Moolenaar0f873732019-12-05 20:28:46 +01003484 // We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3485 // read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3486 // here.
Bram Moolenaar043545e2006-10-10 16:44:07 +00003487 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3488 return NODE_WRITABLE;
3489
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003490 wn = enc_to_utf16(name, NULL);
3491 if (wn == NULL)
3492 return NODE_NORMAL;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003493
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003494 hFile = CreateFileW(wn, // file name
3495 GENERIC_WRITE, // access mode
3496 0, // share mode
3497 NULL, // security descriptor
3498 OPEN_EXISTING, // creation disposition
3499 0, // file attributes
3500 NULL); // handle to template file
3501 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 if (hFile == INVALID_HANDLE_VALUE)
3503 return NODE_NORMAL;
3504
3505 type = GetFileType(hFile);
3506 CloseHandle(hFile);
3507 if (type == FILE_TYPE_CHAR)
3508 return NODE_WRITABLE;
3509 if (type == FILE_TYPE_DISK)
3510 return NODE_NORMAL;
3511 return NODE_OTHER;
3512}
3513
3514#ifdef HAVE_ACL
3515struct my_acl
3516{
3517 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3518 PSID pSidOwner;
3519 PSID pSidGroup;
3520 PACL pDacl;
3521 PACL pSacl;
3522};
3523#endif
3524
3525/*
3526 * Return a pointer to the ACL of file "fname" in allocated memory.
3527 * Return NULL if the ACL is not available for whatever reason.
3528 */
3529 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003530mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531{
3532#ifndef HAVE_ACL
3533 return (vim_acl_T)NULL;
3534#else
3535 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003536 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003538 p = ALLOC_CLEAR_ONE(struct my_acl);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003539 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003541 WCHAR *wn;
Bram Moolenaar27515922013-06-29 15:36:26 +02003542
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003543 wn = enc_to_utf16(fname, NULL);
3544 if (wn == NULL)
Bram Moolenaarbbf9f342020-11-10 22:03:40 +01003545 {
3546 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003547 return NULL;
Bram Moolenaarbbf9f342020-11-10 22:03:40 +01003548 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003549
3550 // Try to retrieve the entire security descriptor.
3551 err = GetNamedSecurityInfoW(
3552 wn, // Abstract filename
3553 SE_FILE_OBJECT, // File Object
3554 OWNER_SECURITY_INFORMATION |
3555 GROUP_SECURITY_INFORMATION |
3556 DACL_SECURITY_INFORMATION |
3557 SACL_SECURITY_INFORMATION,
3558 &p->pSidOwner, // Ownership information.
3559 &p->pSidGroup, // Group membership.
3560 &p->pDacl, // Discretionary information.
3561 &p->pSacl, // For auditing purposes.
3562 &p->pSecurityDescriptor);
3563 if (err == ERROR_ACCESS_DENIED ||
3564 err == ERROR_PRIVILEGE_NOT_HELD)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003565 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003566 // Retrieve only DACL.
3567 (void)GetNamedSecurityInfoW(
3568 wn,
3569 SE_FILE_OBJECT,
3570 DACL_SECURITY_INFORMATION,
3571 NULL,
3572 NULL,
3573 &p->pDacl,
3574 NULL,
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003575 &p->pSecurityDescriptor);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003576 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003577 if (p->pSecurityDescriptor == NULL)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003578 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003579 mch_free_acl((vim_acl_T)p);
3580 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003582 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 }
3584
3585 return (vim_acl_T)p;
3586#endif
3587}
3588
Bram Moolenaar27515922013-06-29 15:36:26 +02003589#ifdef HAVE_ACL
3590/*
3591 * Check if "acl" contains inherited ACE.
3592 */
3593 static BOOL
3594is_acl_inherited(PACL acl)
3595{
3596 DWORD i;
3597 ACL_SIZE_INFORMATION acl_info;
3598 PACCESS_ALLOWED_ACE ace;
3599
3600 acl_info.AceCount = 0;
3601 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3602 for (i = 0; i < acl_info.AceCount; i++)
3603 {
3604 GetAce(acl, i, (LPVOID *)&ace);
3605 if (ace->Header.AceFlags & INHERITED_ACE)
3606 return TRUE;
3607 }
3608 return FALSE;
3609}
3610#endif
3611
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612/*
3613 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3614 * Errors are ignored.
3615 * This must only be called with "acl" equal to what mch_get_acl() returned.
3616 */
3617 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003618mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619{
3620#ifdef HAVE_ACL
3621 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003622 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003623 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003625 if (p == NULL)
3626 return;
3627
3628 wn = enc_to_utf16(fname, NULL);
3629 if (wn == NULL)
3630 return;
3631
3632 // Set security flags
3633 if (p->pSidOwner)
3634 sec_info |= OWNER_SECURITY_INFORMATION;
3635 if (p->pSidGroup)
3636 sec_info |= GROUP_SECURITY_INFORMATION;
3637 if (p->pDacl)
Bram Moolenaar27515922013-06-29 15:36:26 +02003638 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003639 sec_info |= DACL_SECURITY_INFORMATION;
3640 // Do not inherit its parent's DACL.
3641 // If the DACL is inherited, Cygwin permissions would be changed.
3642 if (!is_acl_inherited(p->pDacl))
3643 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
Bram Moolenaar27515922013-06-29 15:36:26 +02003644 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003645 if (p->pSacl)
3646 sec_info |= SACL_SECURITY_INFORMATION;
3647
3648 (void)SetNamedSecurityInfoW(
3649 wn, // Abstract filename
3650 SE_FILE_OBJECT, // File Object
3651 sec_info,
3652 p->pSidOwner, // Ownership information.
3653 p->pSidGroup, // Group membership.
3654 p->pDacl, // Discretionary information.
3655 p->pSacl // For auditing purposes.
3656 );
3657 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658#endif
3659}
3660
3661 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003662mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663{
3664#ifdef HAVE_ACL
3665 struct my_acl *p = (struct my_acl *)acl;
3666
3667 if (p != NULL)
3668 {
3669 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3670 vim_free(p);
3671 }
3672#endif
3673}
3674
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003675#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676
3677/*
3678 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3679 */
3680 static BOOL WINAPI
3681handler_routine(
3682 DWORD dwCtrlType)
3683{
Bram Moolenaar589b1102017-08-12 16:39:05 +02003684 INPUT_RECORD ir;
3685 DWORD out;
3686
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 switch (dwCtrlType)
3688 {
3689 case CTRL_C_EVENT:
3690 if (ctrl_c_interrupts)
3691 g_fCtrlCPressed = TRUE;
3692 return TRUE;
3693
3694 case CTRL_BREAK_EVENT:
3695 g_fCBrkPressed = TRUE;
Bram Moolenaar589b1102017-08-12 16:39:05 +02003696 ctrl_break_was_pressed = TRUE;
Bram Moolenaar0f873732019-12-05 20:28:46 +01003697 // ReadConsoleInput is blocking, send a key event to continue.
Bram Moolenaar589b1102017-08-12 16:39:05 +02003698 ir.EventType = KEY_EVENT;
3699 ir.Event.KeyEvent.bKeyDown = TRUE;
3700 ir.Event.KeyEvent.wRepeatCount = 1;
3701 ir.Event.KeyEvent.wVirtualKeyCode = VK_CANCEL;
3702 ir.Event.KeyEvent.wVirtualScanCode = 0;
3703 ir.Event.KeyEvent.dwControlKeyState = 0;
3704 ir.Event.KeyEvent.uChar.UnicodeChar = 0;
3705 WriteConsoleInput(g_hConIn, &ir, 1, &out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 return TRUE;
3707
Bram Moolenaar0f873732019-12-05 20:28:46 +01003708 // fatal events: shut down gracefully
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 case CTRL_CLOSE_EVENT:
3710 case CTRL_LOGOFF_EVENT:
3711 case CTRL_SHUTDOWN_EVENT:
3712 windgoto((int)Rows - 1, 0);
3713 g_fForceExit = TRUE;
3714
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003715 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 (dwCtrlType == CTRL_CLOSE_EVENT
3717 ? _("close")
3718 : dwCtrlType == CTRL_LOGOFF_EVENT
3719 ? _("logoff")
3720 : _("shutdown")));
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003721# ifdef DEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 OutputDebugString(IObuff);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003723# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724
Bram Moolenaar0f873732019-12-05 20:28:46 +01003725 preserve_exit(); // output IObuff, preserve files and exit
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726
Bram Moolenaar0f873732019-12-05 20:28:46 +01003727 return TRUE; // not reached
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728
3729 default:
3730 return FALSE;
3731 }
3732}
3733
3734
3735/*
3736 * set the tty in (raw) ? "raw" : "cooked" mode
3737 */
3738 void
Bram Moolenaar26e86442020-05-17 14:06:16 +02003739mch_settmode(tmode_T tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740{
3741 DWORD cmodein;
3742 DWORD cmodeout;
3743 BOOL bEnableHandler;
3744
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003745# ifdef VIMDLL
3746 if (gui.in_use)
3747 return;
3748# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 GetConsoleMode(g_hConIn, &cmodein);
3750 GetConsoleMode(g_hConOut, &cmodeout);
3751 if (tmode == TMODE_RAW)
3752 {
3753 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3754 ENABLE_ECHO_INPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 if (g_fMouseActive)
Wez Furlong6ef5ab52021-05-30 19:29:41 +02003756 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 cmodein |= ENABLE_MOUSE_INPUT;
Wez Furlong6ef5ab52021-05-30 19:29:41 +02003758 cmodein &= ~ENABLE_QUICK_EDIT_MODE;
3759 }
3760 else
3761 {
3762 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
3763 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003764 cmodeout &= ~(
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003765# ifdef FEAT_TERMGUICOLORS
Bram Moolenaar0f873732019-12-05 20:28:46 +01003766 // Do not turn off the ENABLE_PROCESSED_OUTPUT flag when using
3767 // VTP.
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003768 ((vtp_working) ? 0 : ENABLE_PROCESSED_OUTPUT) |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003769# else
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003770 ENABLE_PROCESSED_OUTPUT |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003771# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003772 ENABLE_WRAP_AT_EOL_OUTPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 bEnableHandler = TRUE;
3774 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01003775 else // cooked
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 {
3777 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3778 ENABLE_ECHO_INPUT);
3779 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3780 bEnableHandler = FALSE;
3781 }
Wez Furlong6ef5ab52021-05-30 19:29:41 +02003782 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 SetConsoleMode(g_hConOut, cmodeout);
3784 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3785
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003786# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 if (fdDump)
3788 {
3789 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3790 tmode == TMODE_RAW ? "raw" :
3791 tmode == TMODE_COOK ? "cooked" : "normal",
3792 cmodein, cmodeout);
3793 fflush(fdDump);
3794 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003795# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796}
3797
3798
3799/*
3800 * Get the size of the current window in `Rows' and `Columns'
3801 * Return OK when size could be determined, FAIL otherwise.
3802 */
3803 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003804mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805{
3806 CONSOLE_SCREEN_BUFFER_INFO csbi;
3807
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003808# ifdef VIMDLL
3809 if (gui.in_use)
3810 return OK;
3811# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3813 {
3814 /*
3815 * For some reason, we are trying to get the screen dimensions
3816 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3817 * variables are really intended to mean the size of Vim screen
3818 * while in termcap mode.
3819 */
3820 Rows = g_cbTermcap.Info.dwSize.Y;
3821 Columns = g_cbTermcap.Info.dwSize.X;
3822 }
3823 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3824 {
3825 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3826 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3827 }
3828 else
3829 {
3830 Rows = 25;
3831 Columns = 80;
3832 }
3833 return OK;
3834}
3835
3836/*
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003837 * Resize console buffer to 'COORD'
3838 */
3839 static void
3840ResizeConBuf(
3841 HANDLE hConsole,
3842 COORD coordScreen)
3843{
3844 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3845 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003846# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003847 if (fdDump)
3848 {
3849 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3850 GetLastError());
3851 fflush(fdDump);
3852 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003853# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003854 }
3855}
3856
3857/*
3858 * Resize console window size to 'srWindowRect'
3859 */
3860 static void
3861ResizeWindow(
3862 HANDLE hConsole,
3863 SMALL_RECT srWindowRect)
3864{
3865 if (!SetConsoleWindowInfo(hConsole, TRUE, &srWindowRect))
3866 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003867# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003868 if (fdDump)
3869 {
3870 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3871 GetLastError());
3872 fflush(fdDump);
3873 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003874# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003875 }
3876}
3877
3878/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 * Set a console window to `xSize' * `ySize'
3880 */
3881 static void
3882ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003883 HANDLE hConsole,
3884 int xSize,
3885 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003887 CONSOLE_SCREEN_BUFFER_INFO csbi; // hold current console buffer info
3888 SMALL_RECT srWindowRect; // hold the new console size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 COORD coordScreen;
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003890 COORD cursor;
Bram Moolenaar2551c032018-08-23 22:38:31 +02003891 static int resized = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003893# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894 if (fdDump)
3895 {
3896 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3897 fflush(fdDump);
3898 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003899# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900
Bram Moolenaar0f873732019-12-05 20:28:46 +01003901 // get the largest size we can size the console window to
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 coordScreen = GetLargestConsoleWindowSize(hConsole);
3903
Bram Moolenaar0f873732019-12-05 20:28:46 +01003904 // define the new console window size and scroll position
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3906 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3907 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3908
3909 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3910 {
3911 int sx, sy;
3912
3913 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3914 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3915 if (sy < ySize || sx < xSize)
3916 {
3917 /*
3918 * Increasing number of lines/columns, do buffer first.
3919 * Use the maximal size in x and y direction.
3920 */
3921 if (sy < ySize)
3922 coordScreen.Y = ySize;
3923 else
3924 coordScreen.Y = sy;
3925 if (sx < xSize)
3926 coordScreen.X = xSize;
3927 else
3928 coordScreen.X = sx;
3929 SetConsoleScreenBufferSize(hConsole, coordScreen);
3930 }
3931 }
3932
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003933 // define the new console buffer size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 coordScreen.X = xSize;
3935 coordScreen.Y = ySize;
3936
Bram Moolenaar2551c032018-08-23 22:38:31 +02003937 // In the new console call API, only the first time in reverse order
3938 if (!vtp_working || resized)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 {
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003940 ResizeWindow(hConsole, srWindowRect);
3941 ResizeConBuf(hConsole, coordScreen);
3942 }
3943 else
3944 {
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003945 // Workaround for a Windows 10 bug
3946 cursor.X = srWindowRect.Left;
3947 cursor.Y = srWindowRect.Top;
3948 SetConsoleCursorPosition(hConsole, cursor);
3949
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003950 ResizeConBuf(hConsole, coordScreen);
3951 ResizeWindow(hConsole, srWindowRect);
Bram Moolenaar2551c032018-08-23 22:38:31 +02003952 resized = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 }
3954}
3955
3956
3957/*
3958 * Set the console window to `Rows' * `Columns'
3959 */
3960 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003961mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962{
3963 COORD coordScreen;
3964
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003965# ifdef VIMDLL
3966 if (gui.in_use)
3967 return;
3968# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01003969 // Don't change window size while still starting up
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 if (suppress_winsize != 0)
3971 {
3972 suppress_winsize = 2;
3973 return;
3974 }
3975
3976 if (term_console)
3977 {
3978 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3979
Bram Moolenaar0f873732019-12-05 20:28:46 +01003980 // Clamp Rows and Columns to reasonable values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 if (Rows > coordScreen.Y)
3982 Rows = coordScreen.Y;
3983 if (Columns > coordScreen.X)
3984 Columns = coordScreen.X;
3985
3986 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3987 }
3988}
3989
3990/*
3991 * Rows and/or Columns has changed.
3992 */
3993 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003994mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003996# ifdef VIMDLL
3997 if (gui.in_use)
3998 return;
3999# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000 set_scroll_region(0, 0, Columns - 1, Rows - 1);
4001}
4002
4003
4004/*
4005 * Called when started up, to set the winsize that was delayed.
4006 */
4007 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004008mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009{
4010 if (suppress_winsize == 2)
4011 {
4012 suppress_winsize = 0;
4013 mch_set_shellsize();
4014 shell_resized();
4015 }
4016 suppress_winsize = 0;
4017}
Bram Moolenaar0f873732019-12-05 20:28:46 +01004018#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004020 static BOOL
4021vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01004022 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004023 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01004024 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004025 STARTUPINFO *si,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004026 PROCESS_INFORMATION *pi,
4027 LPVOID *env,
4028 char *cwd)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004029{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004030 BOOL ret = FALSE;
4031 WCHAR *wcmd, *wcwd = NULL;
4032
4033 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4034 if (wcmd == NULL)
4035 return FALSE;
4036 if (cwd != NULL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004037 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004038 wcwd = enc_to_utf16((char_u *)cwd, NULL);
4039 if (wcwd == NULL)
4040 goto theend;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004041 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004042
4043 ret = CreateProcessW(
4044 NULL, // Executable name
4045 wcmd, // Command to execute
4046 NULL, // Process security attributes
4047 NULL, // Thread security attributes
4048 inherit_handles, // Inherit handles
4049 flags, // Creation flags
4050 env, // Environment
4051 wcwd, // Current directory
4052 (LPSTARTUPINFOW)si, // Startup information
4053 pi); // Process information
4054theend:
4055 vim_free(wcmd);
4056 vim_free(wcwd);
4057 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004058}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059
4060
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004061 static HINSTANCE
4062vim_shell_execute(
4063 char *cmd,
4064 INT n_show_cmd)
4065{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004066 HINSTANCE ret;
4067 WCHAR *wcmd;
4068
4069 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4070 if (wcmd == NULL)
4071 return (HINSTANCE) 0;
4072
4073 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd);
4074 vim_free(wcmd);
4075 return ret;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004076}
4077
4078
Bram Moolenaar4f974752019-02-17 17:44:42 +01004079#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080
4081/*
4082 * Specialised version of system() for Win32 GUI mode.
4083 * This version proceeds as follows:
4084 * 1. Create a console window for use by the subprocess
4085 * 2. Run the subprocess (it gets the allocated console by default)
4086 * 3. Wait for the subprocess to terminate and get its exit code
4087 * 4. Prompt the user to press a key to close the console window
4088 */
4089 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004090mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091{
4092 STARTUPINFO si;
4093 PROCESS_INFORMATION pi;
4094 DWORD ret = 0;
4095 HWND hwnd = GetFocus();
4096
4097 si.cb = sizeof(si);
4098 si.lpReserved = NULL;
4099 si.lpDesktop = NULL;
4100 si.lpTitle = NULL;
4101 si.dwFlags = STARTF_USESHOWWINDOW;
4102 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004103 * It's nicer to run a filter command in a minimized window.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004104 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004106 if (options & SHELL_DOOUT)
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004107 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004108 else
4109 si.wShowWindow = SW_SHOWNORMAL;
4110 si.cbReserved2 = 0;
4111 si.lpReserved2 = NULL;
4112
Bram Moolenaar0f873732019-12-05 20:28:46 +01004113 // Now, run the command
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004114 vim_create_process(cmd, FALSE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004115 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE,
4116 &si, &pi, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117
Bram Moolenaar0f873732019-12-05 20:28:46 +01004118 // Wait for the command to terminate before continuing
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004120# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 int delay = 1;
4122
Bram Moolenaar0f873732019-12-05 20:28:46 +01004123 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 for (;;)
4125 {
4126 MSG msg;
4127
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004128 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 {
4130 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004131 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004132 delay = 1;
4133 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134 }
4135 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4136 break;
4137
Bram Moolenaar0f873732019-12-05 20:28:46 +01004138 // We start waiting for a very short time and then increase it, so
4139 // that we respond quickly when the process is quick, and don't
4140 // consume too much overhead when it's slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 if (delay < 50)
4142 delay += 10;
4143 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004144# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 WaitForSingleObject(pi.hProcess, INFINITE);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004146# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147
Bram Moolenaar0f873732019-12-05 20:28:46 +01004148 // Get the command exit code
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 GetExitCodeProcess(pi.hProcess, &ret);
4150 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151
Bram Moolenaar0f873732019-12-05 20:28:46 +01004152 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 CloseHandle(pi.hThread);
4154 CloseHandle(pi.hProcess);
4155
Bram Moolenaar0f873732019-12-05 20:28:46 +01004156 // Try to get input focus back. Doesn't always work though.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4158
4159 return ret;
4160}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004161
4162/*
4163 * Thread launched by the gui to send the current buffer data to the
4164 * process. This way avoid to hang up vim totally if the children
4165 * process take a long time to process the lines.
4166 */
Bram Moolenaar4c38d662016-08-03 20:54:57 +02004167 static unsigned int __stdcall
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004168sub_process_writer(LPVOID param)
4169{
4170 HANDLE g_hChildStd_IN_Wr = param;
4171 linenr_T lnum = curbuf->b_op_start.lnum;
4172 DWORD len = 0;
4173 DWORD l;
4174 char_u *lp = ml_get(lnum);
4175 char_u *s;
4176 int written = 0;
4177
4178 for (;;)
4179 {
4180 l = (DWORD)STRLEN(lp + written);
4181 if (l == 0)
4182 len = 0;
4183 else if (lp[written] == NL)
4184 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004185 // NL -> NUL translation
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004186 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4187 }
4188 else
4189 {
4190 s = vim_strchr(lp + written, NL);
4191 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4192 s == NULL ? l : (DWORD)(s - (lp + written)),
4193 &len, NULL);
4194 }
4195 if (len == (int)l)
4196 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004197 // Finished a line, add a NL, unless this line should not have
4198 // one.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004199 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004200 || (!curbuf->b_p_bin
4201 && curbuf->b_p_fixeol)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004202 || (lnum != curbuf->b_no_eol_lnum
4203 && (lnum != curbuf->b_ml.ml_line_count
4204 || curbuf->b_p_eol)))
4205 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02004206 WriteFile(g_hChildStd_IN_Wr, "\n", 1,
4207 (LPDWORD)&vim_ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004208 }
4209
4210 ++lnum;
4211 if (lnum > curbuf->b_op_end.lnum)
4212 break;
4213
4214 lp = ml_get(lnum);
4215 written = 0;
4216 }
4217 else if (len > 0)
4218 written += len;
4219 }
4220
Bram Moolenaar0f873732019-12-05 20:28:46 +01004221 // finished all the lines, close pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004222 CloseHandle(g_hChildStd_IN_Wr);
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004223 return 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004224}
4225
4226
Bram Moolenaar0f873732019-12-05 20:28:46 +01004227# define BUFLEN 100 // length for buffer, stolen from unix version
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004228
4229/*
4230 * This function read from the children's stdout and write the
4231 * data on screen or in the buffer accordingly.
4232 */
4233 static void
4234dump_pipe(int options,
4235 HANDLE g_hChildStd_OUT_Rd,
4236 garray_T *ga,
4237 char_u buffer[],
4238 DWORD *buffer_off)
4239{
4240 DWORD availableBytes = 0;
4241 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004242 int ret;
4243 DWORD len;
4244 DWORD toRead;
4245 int repeatCount;
4246
Bram Moolenaar0f873732019-12-05 20:28:46 +01004247 // we query the pipe to see if there is any data to read
4248 // to avoid to perform a blocking read
4249 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, // pipe to query
4250 NULL, // optional buffer
4251 0, // buffer size
4252 NULL, // number of read bytes
4253 &availableBytes, // available bytes total
4254 NULL); // byteLeft
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004255
4256 repeatCount = 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004257 // We got real data in the pipe, read it
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004258 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004259 {
4260 repeatCount++;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004261 toRead = (DWORD)(BUFLEN - *buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004262 toRead = availableBytes < toRead ? availableBytes : toRead;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004263 ReadFile(g_hChildStd_OUT_Rd, buffer + *buffer_off, toRead , &len, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004264
Bram Moolenaar0f873732019-12-05 20:28:46 +01004265 // If we haven't read anything, there is a problem
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004266 if (len == 0)
4267 break;
4268
4269 availableBytes -= len;
4270
4271 if (options & SHELL_READ)
4272 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004273 // Do NUL -> NL translation, append NL separated
4274 // lines to the current buffer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004275 for (i = 0; i < len; ++i)
4276 {
4277 if (buffer[i] == NL)
4278 append_ga_line(ga);
4279 else if (buffer[i] == NUL)
4280 ga_append(ga, NL);
4281 else
4282 ga_append(ga, buffer[i]);
4283 }
4284 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004285 else if (has_mbyte)
4286 {
4287 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004288 int c;
4289 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004290
4291 len += *buffer_off;
4292 buffer[len] = NUL;
4293
Bram Moolenaar0f873732019-12-05 20:28:46 +01004294 // Check if the last character in buffer[] is
4295 // incomplete, keep these bytes for the next
4296 // round.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004297 for (p = buffer; p < buffer + len; p += l)
4298 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004299 l = MB_CPTR2LEN(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004300 if (l == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004301 l = 1; // NUL byte?
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004302 else if (MB_BYTE2LEN(*p) != l)
4303 break;
4304 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004305 if (p == buffer) // no complete character
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004306 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004307 // avoid getting stuck at an illegal byte
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004308 if (len >= 12)
4309 ++p;
4310 else
4311 {
4312 *buffer_off = len;
4313 return;
4314 }
4315 }
4316 c = *p;
4317 *p = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004318 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004319 if (p < buffer + len)
4320 {
4321 *p = c;
4322 *buffer_off = (DWORD)((buffer + len) - p);
4323 mch_memmove(buffer, p, *buffer_off);
4324 return;
4325 }
4326 *buffer_off = 0;
4327 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004328 else
4329 {
4330 buffer[len] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004331 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004332 }
4333
4334 windgoto(msg_row, msg_col);
4335 cursor_on();
4336 out_flush();
4337 }
4338}
4339
4340/*
4341 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4342 * for communication and doesn't open any new window.
4343 */
4344 static int
4345mch_system_piped(char *cmd, int options)
4346{
4347 STARTUPINFO si;
4348 PROCESS_INFORMATION pi;
4349 DWORD ret = 0;
4350
4351 HANDLE g_hChildStd_IN_Rd = NULL;
4352 HANDLE g_hChildStd_IN_Wr = NULL;
4353 HANDLE g_hChildStd_OUT_Rd = NULL;
4354 HANDLE g_hChildStd_OUT_Wr = NULL;
4355
Bram Moolenaar0f873732019-12-05 20:28:46 +01004356 char_u buffer[BUFLEN + 1]; // reading buffer + size
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004357 DWORD len;
4358
Bram Moolenaar0f873732019-12-05 20:28:46 +01004359 // buffer used to receive keys
4360 char_u ta_buf[BUFLEN + 1]; // TypeAHead
4361 int ta_len = 0; // valid bytes in ta_buf[]
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004362
4363 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004364 int noread_cnt = 0;
4365 garray_T ga;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004366 int delay = 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004367 DWORD buffer_off = 0; // valid bytes in buffer[]
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004368 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004369
4370 SECURITY_ATTRIBUTES saAttr;
4371
Bram Moolenaar0f873732019-12-05 20:28:46 +01004372 // Set the bInheritHandle flag so pipe handles are inherited.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004373 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4374 saAttr.bInheritHandle = TRUE;
4375 saAttr.lpSecurityDescriptor = NULL;
4376
4377 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004378 // Ensure the read handle to the pipe for STDOUT is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004379 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004380 // Create a pipe for the child process's STDIN.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004381 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004382 // Ensure the write handle to the pipe for STDIN is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004383 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004384 {
4385 CloseHandle(g_hChildStd_IN_Rd);
4386 CloseHandle(g_hChildStd_IN_Wr);
4387 CloseHandle(g_hChildStd_OUT_Rd);
4388 CloseHandle(g_hChildStd_OUT_Wr);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004389 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004390 }
4391
4392 si.cb = sizeof(si);
4393 si.lpReserved = NULL;
4394 si.lpDesktop = NULL;
4395 si.lpTitle = NULL;
4396 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4397
Bram Moolenaar0f873732019-12-05 20:28:46 +01004398 // set-up our file redirection
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004399 si.hStdError = g_hChildStd_OUT_Wr;
4400 si.hStdOutput = g_hChildStd_OUT_Wr;
4401 si.hStdInput = g_hChildStd_IN_Rd;
4402 si.wShowWindow = SW_HIDE;
4403 si.cbReserved2 = 0;
4404 si.lpReserved2 = NULL;
4405
4406 if (options & SHELL_READ)
4407 ga_init2(&ga, 1, BUFLEN);
4408
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004409 if (cmd != NULL)
4410 {
4411 p = (char *)vim_strsave((char_u *)cmd);
4412 if (p != NULL)
4413 unescape_shellxquote((char_u *)p, p_sxe);
4414 else
4415 p = cmd;
4416 }
4417
Bram Moolenaar0f873732019-12-05 20:28:46 +01004418 // Now, run the command.
4419 // About "Inherit handles" being TRUE: this command can be litigious,
4420 // handle inheritance was deactivated for pending temp file, but, if we
4421 // deactivate it, the pipes don't work for some reason.
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004422 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE,
4423 &si, &pi, NULL, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004424
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004425 if (p != cmd)
4426 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004427
Bram Moolenaar0f873732019-12-05 20:28:46 +01004428 // Close our unused side of the pipes
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004429 CloseHandle(g_hChildStd_IN_Rd);
4430 CloseHandle(g_hChildStd_OUT_Wr);
4431
4432 if (options & SHELL_WRITE)
4433 {
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004434 HANDLE thread = (HANDLE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004435 _beginthreadex(NULL, // security attributes
4436 0, // default stack size
4437 sub_process_writer, // function to be executed
4438 g_hChildStd_IN_Wr, // parameter
4439 0, // creation flag, start immediately
4440 NULL); // we don't care about thread id
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004441 CloseHandle(thread);
4442 g_hChildStd_IN_Wr = NULL;
4443 }
4444
Bram Moolenaar0f873732019-12-05 20:28:46 +01004445 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004446 for (;;)
4447 {
4448 MSG msg;
4449
Bram Moolenaar175d0702013-12-11 18:36:33 +01004450 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004451 {
4452 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004453 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004454 }
4455
Bram Moolenaar0f873732019-12-05 20:28:46 +01004456 // write pipe information in the window
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004457 if ((options & (SHELL_READ|SHELL_WRITE))
4458# ifdef FEAT_GUI
4459 || gui.in_use
4460# endif
4461 )
4462 {
4463 len = 0;
4464 if (!(options & SHELL_EXPAND)
4465 && ((options &
4466 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4467 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4468# ifdef FEAT_GUI
4469 || gui.in_use
4470# endif
4471 )
4472 && (ta_len > 0 || noread_cnt > 4))
4473 {
4474 if (ta_len == 0)
4475 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004476 // Get extra characters when we don't have any. Reset the
4477 // counter and timer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004478 noread_cnt = 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004479 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4480 }
4481 if (ta_len > 0 || len > 0)
4482 {
4483 /*
4484 * For pipes: Check for CTRL-C: send interrupt signal to
4485 * child. Check for CTRL-D: EOF, close pipe to child.
4486 */
4487 if (len == 1 && cmd != NULL)
4488 {
4489 if (ta_buf[ta_len] == Ctrl_C)
4490 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004491 // Learn what exit code is expected, for
4492 // now put 9 as SIGKILL
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004493 TerminateProcess(pi.hProcess, 9);
4494 }
4495 if (ta_buf[ta_len] == Ctrl_D)
4496 {
4497 CloseHandle(g_hChildStd_IN_Wr);
4498 g_hChildStd_IN_Wr = NULL;
4499 }
4500 }
4501
Bram Moolenaarf4140482020-02-15 23:06:45 +01004502 term_replace_bs_del_keycode(ta_buf, ta_len, len);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004503
4504 /*
4505 * For pipes: echo the typed characters. For a pty this
4506 * does not seem to work.
4507 */
4508 for (i = ta_len; i < ta_len + len; ++i)
4509 {
4510 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4511 msg_putchar(ta_buf[i]);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004512 else if (has_mbyte)
4513 {
4514 int l = (*mb_ptr2len)(ta_buf + i);
4515
4516 msg_outtrans_len(ta_buf + i, l);
4517 i += l - 1;
4518 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004519 else
4520 msg_outtrans_len(ta_buf + i, 1);
4521 }
4522 windgoto(msg_row, msg_col);
4523 out_flush();
4524
4525 ta_len += len;
4526
4527 /*
4528 * Write the characters to the child, unless EOF has been
4529 * typed for pipes. Write one character at a time, to
4530 * avoid losing too much typeahead. When writing buffer
4531 * lines, drop the typed characters (only check for
4532 * CTRL-C).
4533 */
4534 if (options & SHELL_WRITE)
4535 ta_len = 0;
4536 else if (g_hChildStd_IN_Wr != NULL)
4537 {
4538 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4539 1, &len, NULL);
4540 // if we are typing in, we want to keep things reactive
4541 delay = 1;
4542 if (len > 0)
4543 {
4544 ta_len -= len;
4545 mch_memmove(ta_buf, ta_buf + len, ta_len);
4546 }
4547 }
4548 }
4549 }
4550 }
4551
4552 if (ta_len)
4553 ui_inchar_undo(ta_buf, ta_len);
4554
4555 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4556 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004557 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004558 break;
4559 }
4560
4561 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004562 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004563
Bram Moolenaar0f873732019-12-05 20:28:46 +01004564 // We start waiting for a very short time and then increase it, so
4565 // that we respond quickly when the process is quick, and don't
4566 // consume too much overhead when it's slow.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004567 if (delay < 50)
4568 delay += 10;
4569 }
4570
Bram Moolenaar0f873732019-12-05 20:28:46 +01004571 // Close the pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004572 CloseHandle(g_hChildStd_OUT_Rd);
4573 if (g_hChildStd_IN_Wr != NULL)
4574 CloseHandle(g_hChildStd_IN_Wr);
4575
4576 WaitForSingleObject(pi.hProcess, INFINITE);
4577
Bram Moolenaar0f873732019-12-05 20:28:46 +01004578 // Get the command exit code
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004579 GetExitCodeProcess(pi.hProcess, &ret);
4580
4581 if (options & SHELL_READ)
4582 {
4583 if (ga.ga_len > 0)
4584 {
4585 append_ga_line(&ga);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004586 // remember that the NL was missing
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004587 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4588 }
4589 else
4590 curbuf->b_no_eol_lnum = 0;
4591 ga_clear(&ga);
4592 }
4593
Bram Moolenaar0f873732019-12-05 20:28:46 +01004594 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004595 CloseHandle(pi.hThread);
4596 CloseHandle(pi.hProcess);
4597
4598 return ret;
4599}
4600
4601 static int
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004602mch_system_g(char *cmd, int options)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004603{
Bram Moolenaar0f873732019-12-05 20:28:46 +01004604 // if we can pipe and the shelltemp option is off
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004605 if (!p_stmp)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004606 return mch_system_piped(cmd, options);
4607 else
4608 return mch_system_classic(cmd, options);
4609}
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004610#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004612#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004613 static int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02004614mch_system_c(char *cmd, int options UNUSED)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004615{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004616 int ret;
4617 WCHAR *wcmd;
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004618 char_u *buf;
4619 size_t len;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004620
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004621 // If the command starts and ends with double quotes, enclose the command
4622 // in parentheses.
4623 len = STRLEN(cmd);
4624 if (len >= 2 && cmd[0] == '"' && cmd[len - 1] == '"')
4625 {
4626 len += 3;
4627 buf = alloc(len);
4628 if (buf == NULL)
4629 return -1;
4630 vim_snprintf((char *)buf, len, "(%s)", cmd);
4631 wcmd = enc_to_utf16(buf, NULL);
4632 free(buf);
4633 }
4634 else
4635 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4636
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004637 if (wcmd == NULL)
4638 return -1;
4639
4640 ret = _wsystem(wcmd);
4641 vim_free(wcmd);
4642 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004643}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644
4645#endif
4646
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004647 static int
4648mch_system(char *cmd, int options)
4649{
4650#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004651 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004652 return mch_system_g(cmd, options);
4653 else
4654 return mch_system_c(cmd, options);
4655#elif defined(FEAT_GUI_MSWIN)
4656 return mch_system_g(cmd, options);
4657#else
4658 return mch_system_c(cmd, options);
4659#endif
4660}
4661
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004662#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4663/*
4664 * Use a terminal window to run a shell command in.
4665 */
4666 static int
4667mch_call_shell_terminal(
4668 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004669 int options UNUSED) // SHELL_*, see vim.h
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004670{
4671 jobopt_T opt;
4672 char_u *newcmd = NULL;
4673 typval_T argvar[2];
4674 long_u cmdlen;
4675 int retval = -1;
4676 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004677 job_T *job;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004678 aco_save_T aco;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004679 oparg_T oa; // operator arguments
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004680
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004681 if (cmd == NULL)
4682 cmdlen = STRLEN(p_sh) + 1;
4683 else
4684 cmdlen = STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004685 newcmd = alloc(cmdlen);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004686 if (newcmd == NULL)
4687 return 255;
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004688 if (cmd == NULL)
4689 {
4690 STRCPY(newcmd, p_sh);
4691 ch_log(NULL, "starting terminal to run a shell");
4692 }
4693 else
4694 {
4695 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", p_sh, p_shcf, cmd);
4696 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4697 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004698
4699 init_job_options(&opt);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004700
4701 argvar[0].v_type = VAR_STRING;
4702 argvar[0].vval.v_string = newcmd;
4703 argvar[1].v_type = VAR_UNKNOWN;
4704 buf = term_start(argvar, NULL, &opt, TERM_START_SYSTEM);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004705 if (buf == NULL)
Bram Moolenaar9029b912019-03-21 19:58:00 +01004706 {
4707 vim_free(newcmd);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004708 return 255;
Bram Moolenaar9029b912019-03-21 19:58:00 +01004709 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004710
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004711 job = term_getjob(buf->b_term);
4712 ++job->jv_refcount;
4713
Bram Moolenaar0f873732019-12-05 20:28:46 +01004714 // Find a window to make "buf" curbuf.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004715 aucmd_prepbuf(&aco, buf);
4716
4717 clear_oparg(&oa);
4718 while (term_use_loop())
4719 {
4720 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4721 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004722 // If terminal_loop() returns OK we got a key that is handled
4723 // in Normal model. We don't do redrawing anyway.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004724 if (terminal_loop(TRUE) == OK)
4725 normal_cmd(&oa, TRUE);
4726 }
4727 else
4728 normal_cmd(&oa, TRUE);
4729 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004730 retval = job->jv_exitval;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004731 ch_log(NULL, "system command finished");
4732
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004733 job_unref(job);
4734
Bram Moolenaar0f873732019-12-05 20:28:46 +01004735 // restore curwin/curbuf and a few other things
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004736 aucmd_restbuf(&aco);
4737
4738 wait_return(TRUE);
4739 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4740
4741 vim_free(newcmd);
4742 return retval;
4743}
4744#endif
4745
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746/*
4747 * Either execute a command by calling the shell or start a new shell
4748 */
4749 int
4750mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004751 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004752 int options) // SHELL_*, see vim.h
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753{
4754 int x = 0;
4755 int tmode = cur_tmode;
4756#ifdef FEAT_TITLE
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004757 WCHAR szShellTitle[512];
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004758
Bram Moolenaar0f873732019-12-05 20:28:46 +01004759 // Change the title to reflect that we are in a subshell.
K.Takataeeec2542021-06-02 13:28:16 +02004760 if (GetConsoleTitleW(szShellTitle, ARRAY_LENGTH(szShellTitle) - 4) > 0)
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004761 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004762 if (cmd == NULL)
4763 wcscat(szShellTitle, L" :sh");
4764 else
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004765 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004766 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004767
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004768 if (wn != NULL)
4769 {
4770 wcscat(szShellTitle, L" - !");
4771 if ((wcslen(szShellTitle) + wcslen(wn) <
K.Takataeeec2542021-06-02 13:28:16 +02004772 ARRAY_LENGTH(szShellTitle)))
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004773 wcscat(szShellTitle, wn);
4774 SetConsoleTitleW(szShellTitle);
4775 vim_free(wn);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004776 }
4777 }
4778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779#endif
4780
4781 out_flush();
4782
4783#ifdef MCH_WRITE_DUMP
4784 if (fdDump)
4785 {
4786 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4787 fflush(fdDump);
4788 }
4789#endif
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004790#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004791 // TODO: make the terminal window work with input or output redirected.
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004792 if (
4793# ifdef VIMDLL
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004794 gui.in_use &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004795# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004796 vim_strchr(p_go, GO_TERMINAL) != NULL
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004797 && (options & (SHELL_FILTER|SHELL_DOOUT|SHELL_WRITE|SHELL_READ)) == 0)
4798 {
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004799 char_u *cmdbase = cmd;
4800
Bram Moolenaar4d5c1262019-09-20 17:20:02 +02004801 if (cmdbase != NULL)
4802 // Skip a leading quote and (.
4803 while (*cmdbase == '"' || *cmdbase == '(')
4804 ++cmdbase;
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004805
4806 // Check the command does not begin with "start "
Bram Moolenaar36e7a822019-11-13 21:49:24 +01004807 if (cmdbase == NULL || STRNICMP(cmdbase, "start", 5) != 0
4808 || !VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004809 {
4810 // Use a terminal window to run the command in.
4811 x = mch_call_shell_terminal(cmd, options);
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004812# ifdef FEAT_TITLE
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004813 resettitle();
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004814# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004815 return x;
4816 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004817 }
4818#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819
4820 /*
4821 * Catch all deadly signals while running the external command, because a
4822 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4823 */
4824 signal(SIGINT, SIG_IGN);
4825#if defined(__GNUC__) && !defined(__MINGW32__)
4826 signal(SIGKILL, SIG_IGN);
4827#else
4828 signal(SIGBREAK, SIG_IGN);
4829#endif
4830 signal(SIGILL, SIG_IGN);
4831 signal(SIGFPE, SIG_IGN);
4832 signal(SIGSEGV, SIG_IGN);
4833 signal(SIGTERM, SIG_IGN);
4834 signal(SIGABRT, SIG_IGN);
4835
4836 if (options & SHELL_COOKED)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004837 settmode(TMODE_COOK); // set to normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838
4839 if (cmd == NULL)
4840 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004841 x = mch_system((char *)p_sh, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 }
4843 else
4844 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004845 // we use "command" or "cmd" to start the shell; slow but easy
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004846 char_u *newcmd = NULL;
4847 char_u *cmdbase = cmd;
4848 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004849
Bram Moolenaar0f873732019-12-05 20:28:46 +01004850 // Skip a leading ", ( and "(.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004851 if (*cmdbase == '"' )
4852 ++cmdbase;
4853 if (*cmdbase == '(')
4854 ++cmdbase;
4855
Bram Moolenaar1c465442017-03-12 20:10:05 +01004856 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004857 {
4858 STARTUPINFO si;
4859 PROCESS_INFORMATION pi;
4860 DWORD flags = CREATE_NEW_CONSOLE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004861 INT n_show_cmd = SW_SHOWNORMAL;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004862 char_u *p;
4863
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004864 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004865 si.cb = sizeof(si);
4866 si.lpReserved = NULL;
4867 si.lpDesktop = NULL;
4868 si.lpTitle = NULL;
4869 si.dwFlags = 0;
4870 si.cbReserved2 = 0;
4871 si.lpReserved2 = NULL;
4872
4873 cmdbase = skipwhite(cmdbase + 5);
4874 if ((STRNICMP(cmdbase, "/min", 4) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004875 && VIM_ISWHITE(cmdbase[4]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004876 {
4877 cmdbase = skipwhite(cmdbase + 4);
4878 si.dwFlags = STARTF_USESHOWWINDOW;
4879 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004880 n_show_cmd = SW_SHOWMINNOACTIVE;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004881 }
4882 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004883 && VIM_ISWHITE(cmdbase[2]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004884 {
4885 cmdbase = skipwhite(cmdbase + 2);
4886 flags = CREATE_NO_WINDOW;
4887 si.dwFlags = STARTF_USESTDHANDLES;
4888 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004889 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004890 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004891 NULL, // Security att.
4892 OPEN_EXISTING, // Open flags
4893 FILE_ATTRIBUTE_NORMAL, // File att.
4894 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004895 si.hStdOutput = si.hStdInput;
4896 si.hStdError = si.hStdInput;
4897 }
4898
Bram Moolenaar0f873732019-12-05 20:28:46 +01004899 // Remove a trailing ", ) and )" if they have a match
4900 // at the start of the command.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004901 if (cmdbase > cmd)
4902 {
4903 p = cmdbase + STRLEN(cmdbase);
4904 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4905 *--p = NUL;
4906 if (p > cmdbase && p[-1] == ')'
4907 && (*cmd =='(' || cmd[1] == '('))
4908 *--p = NUL;
4909 }
4910
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004911 newcmd = cmdbase;
4912 unescape_shellxquote(cmdbase, p_sxe);
4913
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004914 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004915 * If creating new console, arguments are passed to the
4916 * 'cmd.exe' as-is. If it's not, arguments are not treated
4917 * correctly for current 'cmd.exe'. So unescape characters in
4918 * shellxescape except '|' for avoiding to be treated as
4919 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004920 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004921 if (flags != CREATE_NEW_CONSOLE)
4922 {
4923 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004924 char_u *cmd_shell = mch_getenv("COMSPEC");
4925
4926 if (cmd_shell == NULL || *cmd_shell == NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004927 cmd_shell = (char_u *)default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004928
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004929 subcmd = vim_strsave_escaped_ext(cmdbase,
4930 (char_u *)"|", '^', FALSE);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004931 if (subcmd != NULL)
4932 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004933 // make "cmd.exe /c arguments"
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004934 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004935 newcmd = alloc(cmdlen);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004936 if (newcmd != NULL)
4937 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004938 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004939 else
4940 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004941 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004942 }
4943 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004944
4945 /*
4946 * Now, start the command as a process, so that it doesn't
4947 * inherit our handles which causes unpleasant dangling swap
4948 * files if we exit before the spawned process
4949 */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004950 if (vim_create_process((char *)newcmd, FALSE, flags,
4951 &si, &pi, NULL, NULL))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004952 x = 0;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004953 else if (vim_shell_execute((char *)newcmd, n_show_cmd)
4954 > (HINSTANCE)32)
4955 x = 0;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004956 else
4957 {
4958 x = -1;
Bram Moolenaar4f974752019-02-17 17:44:42 +01004959#ifdef FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004960# ifdef VIMDLL
4961 if (gui.in_use)
4962# endif
4963 emsg(_("E371: Command not found"));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004964#endif
4965 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004966
4967 if (newcmd != cmdbase)
4968 vim_free(newcmd);
4969
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004970 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004971 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004972 // Close the handle to \\.\NUL created above.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004973 CloseHandle(si.hStdInput);
4974 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004975 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004976 CloseHandle(pi.hThread);
4977 CloseHandle(pi.hProcess);
4978 }
4979 else
4980 {
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004981 cmdlen =
Bram Moolenaar4f974752019-02-17 17:44:42 +01004982#ifdef FEAT_GUI_MSWIN
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004983 ((gui.in_use || gui.starting) ?
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004984 (!s_dont_use_vimrun && p_stmp ?
4985 STRLEN(vimrun_path) : STRLEN(p_sh) + STRLEN(p_shcf))
4986 : 0) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987#endif
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004988 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004989
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004990 newcmd = alloc(cmdlen);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004991 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01004993#if defined(FEAT_GUI_MSWIN)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004994 if (
4995# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004996 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004997# endif
4998 need_vimrun_warning)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 {
Bram Moolenaar63e43442016-11-19 17:28:44 +01005000 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
5001 "External commands will not pause after completion.\n"
5002 "See :help win32-vimrun for more information.");
5003 char *title = _("Vim Warning");
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005004 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
5005 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
Bram Moolenaar63e43442016-11-19 17:28:44 +01005006
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005007 if (wmsg != NULL && wtitle != NULL)
5008 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
5009 vim_free(wmsg);
5010 vim_free(wtitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 need_vimrun_warning = FALSE;
5012 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005013 if (
5014# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02005015 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005016# endif
5017 !s_dont_use_vimrun && p_stmp)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005018 // Use vimrun to execute the command. It opens a console
5019 // window, which can be closed without killing Vim.
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005020 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 vimrun_path,
5022 (msg_silent != 0 || (options & SHELL_DOOUT))
5023 ? "-s " : "",
5024 p_sh, p_shcf, cmd);
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005025 else if (
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005026# ifdef VIMDLL
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005027 (gui.in_use || gui.starting) &&
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005028# endif
Bram Moolenaar0e6bfb92019-07-31 20:53:56 +02005029 s_dont_use_vimrun && STRCMP(p_shcf, "/c") == 0)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005030 // workaround for the case that "vimrun" does not exist
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005031 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s %s %s",
5032 p_sh, p_shcf, p_sh, p_shcf, cmd);
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005033 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005035 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00005036 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01005038 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005039 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 }
5041 }
5042
5043 if (tmode == TMODE_RAW)
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005044 {
5045 // The shell may have messed with the mode, always set it.
5046 cur_tmode = TMODE_UNKNOWN;
Bram Moolenaar0f873732019-12-05 20:28:46 +01005047 settmode(TMODE_RAW); // set to raw mode
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005048 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049
Bram Moolenaar0f873732019-12-05 20:28:46 +01005050 // Print the return value, unless "vimrun" was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
Bram Moolenaar4f974752019-02-17 17:44:42 +01005052#if defined(FEAT_GUI_MSWIN)
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02005053 && ((gui.in_use || gui.starting) ?
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005054 ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp) : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055#endif
5056 )
5057 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005058 smsg(_("shell returned %d"), x);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 msg_putchar('\n');
5060 }
5061#ifdef FEAT_TITLE
5062 resettitle();
5063#endif
5064
5065 signal(SIGINT, SIG_DFL);
5066#if defined(__GNUC__) && !defined(__MINGW32__)
5067 signal(SIGKILL, SIG_DFL);
5068#else
5069 signal(SIGBREAK, SIG_DFL);
5070#endif
5071 signal(SIGILL, SIG_DFL);
5072 signal(SIGFPE, SIG_DFL);
5073 signal(SIGSEGV, SIG_DFL);
5074 signal(SIGTERM, SIG_DFL);
5075 signal(SIGABRT, SIG_DFL);
5076
5077 return x;
5078}
5079
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005080#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005081 static HANDLE
5082job_io_file_open(
Bram Moolenaar972c3b82017-01-12 21:44:49 +01005083 char_u *fname,
5084 DWORD dwDesiredAccess,
5085 DWORD dwShareMode,
5086 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
5087 DWORD dwCreationDisposition,
5088 DWORD dwFlagsAndAttributes)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005089{
5090 HANDLE h;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005091 WCHAR *wn;
Bram Moolenaara12a1612019-01-24 16:39:02 +01005092
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005093 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005094 if (wn == NULL)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005095 return INVALID_HANDLE_VALUE;
5096
5097 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
5098 lpSecurityAttributes, dwCreationDisposition,
5099 dwFlagsAndAttributes, NULL);
5100 vim_free(wn);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005101 return h;
5102}
5103
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005104/*
5105 * Turn the dictionary "env" into a NUL separated list that can be used as the
5106 * environment argument of vim_create_process().
5107 */
Bram Moolenaarba6febd2017-10-30 21:56:23 +01005108 void
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005109win32_build_env(dict_T *env, garray_T *gap, int is_terminal)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005110{
5111 hashitem_T *hi;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005112 long_u todo = env != NULL ? env->dv_hashtab.ht_used : 0;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005113 LPVOID base = GetEnvironmentStringsW();
5114
Bram Moolenaar0f873732019-12-05 20:28:46 +01005115 // for last \0
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005116 if (ga_grow(gap, 1) == FAIL)
5117 return;
5118
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005119 if (env != NULL)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005120 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005121 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005122 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005123 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005124 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005125 typval_T *item = &dict_lookup(hi)->di_tv;
5126 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01005127 WCHAR *wval = enc_to_utf16(tv_get_string(item), NULL);
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005128 --todo;
5129 if (wkey != NULL && wval != NULL)
5130 {
5131 size_t n;
5132 size_t lkey = wcslen(wkey);
5133 size_t lval = wcslen(wval);
Bram Moolenaar60104f12017-08-14 23:25:04 +02005134
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005135 if (ga_grow(gap, (int)(lkey + lval + 2)) != OK)
5136 continue;
5137 for (n = 0; n < lkey; n++)
5138 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n];
5139 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'=';
5140 for (n = 0; n < lval; n++)
5141 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n];
5142 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5143 }
Bram Moolenaarbdace832019-03-02 10:13:42 +01005144 vim_free(wkey);
5145 vim_free(wval);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005146 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005147 }
5148 }
5149
Bram Moolenaar355757a2020-02-10 22:06:32 +01005150 if (base)
5151 {
5152 WCHAR *p = (WCHAR*) base;
5153
5154 // for last \0
5155 if (ga_grow(gap, 1) == FAIL)
5156 return;
5157
5158 while (*p != 0 || *(p + 1) != 0)
5159 {
5160 if (ga_grow(gap, 1) == OK)
5161 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
5162 p++;
5163 }
5164 FreeEnvironmentStrings(base);
5165 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5166 }
5167
Bram Moolenaar493359e2018-06-12 20:25:52 +02005168# if defined(FEAT_CLIENTSERVER) || defined(FEAT_TERMINAL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005169 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005170# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005171 char_u *servername = get_vim_var_str(VV_SEND_SERVER);
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005172 size_t servername_len = STRLEN(servername);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005173# endif
5174# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005175 char_u *version = get_vim_var_str(VV_VERSION);
5176 size_t version_len = STRLEN(version);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005177# endif
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005178 // size of "VIM_SERVERNAME=" and value,
5179 // plus "VIM_TERMINAL=" and value,
5180 // plus two terminating NULs
5181 size_t n = 0
Bram Moolenaar493359e2018-06-12 20:25:52 +02005182# ifdef FEAT_CLIENTSERVER
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005183 + 15 + servername_len
Bram Moolenaar493359e2018-06-12 20:25:52 +02005184# endif
5185# ifdef FEAT_TERMINAL
5186 + 13 + version_len + 2
5187# endif
5188 ;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005189
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005190 if (ga_grow(gap, (int)n) == OK)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005191 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005192# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005193 for (n = 0; n < 15; n++)
5194 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5195 (WCHAR)"VIM_SERVERNAME="[n];
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005196 for (n = 0; n < servername_len; n++)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005197 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5198 (WCHAR)servername[n];
5199 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
Bram Moolenaar493359e2018-06-12 20:25:52 +02005200# endif
5201# ifdef FEAT_TERMINAL
5202 if (is_terminal)
5203 {
5204 for (n = 0; n < 13; n++)
5205 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5206 (WCHAR)"VIM_TERMINAL="[n];
5207 for (n = 0; n < version_len; n++)
5208 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5209 (WCHAR)version[n];
5210 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5211 }
5212# endif
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005213 }
5214 }
Bram Moolenaar79c6b512018-06-12 21:11:12 +02005215# endif
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005216}
5217
Bram Moolenaarb091f302019-01-19 14:37:00 +01005218/*
5219 * Create a pair of pipes.
5220 * Return TRUE for success, FALSE for failure.
5221 */
5222 static BOOL
5223create_pipe_pair(HANDLE handles[2])
5224{
5225 static LONG s;
5226 char name[64];
5227 SECURITY_ATTRIBUTES sa;
5228
5229 sprintf(name, "\\\\?\\pipe\\vim-%08lx-%08lx",
5230 GetCurrentProcessId(),
5231 InterlockedIncrement(&s));
5232
5233 // Create named pipe. Max size of named pipe is 65535.
5234 handles[1] = CreateNamedPipe(
5235 name,
5236 PIPE_ACCESS_OUTBOUND | FILE_FLAG_OVERLAPPED,
5237 PIPE_TYPE_BYTE | PIPE_NOWAIT,
Bram Moolenaar24058382019-01-24 23:11:49 +01005238 1, MAX_NAMED_PIPE_SIZE, 0, 0, NULL);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005239
5240 if (handles[1] == INVALID_HANDLE_VALUE)
5241 return FALSE;
5242
5243 sa.nLength = sizeof(sa);
5244 sa.bInheritHandle = TRUE;
5245 sa.lpSecurityDescriptor = NULL;
5246
5247 handles[0] = CreateFile(name,
5248 FILE_GENERIC_READ,
5249 FILE_SHARE_READ, &sa,
5250 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
5251
5252 if (handles[0] == INVALID_HANDLE_VALUE)
5253 {
Bram Moolenaar6982f422019-02-16 16:48:01 +01005254 CloseHandle(handles[1]);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005255 return FALSE;
5256 }
5257
5258 return TRUE;
5259}
5260
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005261 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005262mch_job_start(char *cmd, job_T *job, jobopt_T *options)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005263{
5264 STARTUPINFO si;
5265 PROCESS_INFORMATION pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005266 HANDLE jo;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005267 SECURITY_ATTRIBUTES saAttr;
5268 channel_T *channel = NULL;
Bram Moolenaard8070362016-02-15 21:56:54 +01005269 HANDLE ifd[2];
5270 HANDLE ofd[2];
5271 HANDLE efd[2];
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005272 garray_T ga;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005273
5274 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5275 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5276 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
5277 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
5278 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5279 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
5280 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
5281
5282 if (use_out_for_err && use_null_for_out)
5283 use_null_for_err = TRUE;
Bram Moolenaard8070362016-02-15 21:56:54 +01005284
5285 ifd[0] = INVALID_HANDLE_VALUE;
5286 ifd[1] = INVALID_HANDLE_VALUE;
5287 ofd[0] = INVALID_HANDLE_VALUE;
5288 ofd[1] = INVALID_HANDLE_VALUE;
5289 efd[0] = INVALID_HANDLE_VALUE;
5290 efd[1] = INVALID_HANDLE_VALUE;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005291 ga_init2(&ga, (int)sizeof(wchar_t), 500);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005292
Bram Moolenaar14207f42016-10-27 21:13:10 +02005293 jo = CreateJobObject(NULL, NULL);
5294 if (jo == NULL)
5295 {
5296 job->jv_status = JOB_FAILED;
5297 goto failed;
5298 }
5299
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005300 if (options->jo_env != NULL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005301 win32_build_env(options->jo_env, &ga, FALSE);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005302
Bram Moolenaar76467df2016-02-12 19:30:26 +01005303 ZeroMemory(&pi, sizeof(pi));
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005304 ZeroMemory(&si, sizeof(si));
5305 si.cb = sizeof(si);
Bram Moolenaard8070362016-02-15 21:56:54 +01005306 si.dwFlags |= STARTF_USESHOWWINDOW;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005307 si.wShowWindow = SW_HIDE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005308
Bram Moolenaard8070362016-02-15 21:56:54 +01005309 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5310 saAttr.bInheritHandle = TRUE;
5311 saAttr.lpSecurityDescriptor = NULL;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005312
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005313 if (use_file_for_in)
5314 {
5315 char_u *fname = options->jo_io_name[PART_IN];
5316
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005317 ifd[0] = job_io_file_open(fname, GENERIC_READ,
5318 FILE_SHARE_READ | FILE_SHARE_WRITE,
5319 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
5320 if (ifd[0] == INVALID_HANDLE_VALUE)
Bram Moolenaar94d01912016-03-08 13:48:51 +01005321 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005322 semsg(_(e_notopen), fname);
Bram Moolenaar94d01912016-03-08 13:48:51 +01005323 goto failed;
5324 }
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005325 }
Bram Moolenaarb091f302019-01-19 14:37:00 +01005326 else if (!use_null_for_in
5327 && (!create_pipe_pair(ifd)
5328 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005329 goto failed;
5330
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005331 if (use_file_for_out)
5332 {
5333 char_u *fname = options->jo_io_name[PART_OUT];
5334
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005335 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
5336 FILE_SHARE_READ | FILE_SHARE_WRITE,
5337 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5338 if (ofd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005339 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005340 semsg(_(e_notopen), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005341 goto failed;
5342 }
5343 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005344 else if (!use_null_for_out &&
5345 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005346 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005347 goto failed;
5348
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005349 if (use_file_for_err)
5350 {
5351 char_u *fname = options->jo_io_name[PART_ERR];
5352
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005353 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
5354 FILE_SHARE_READ | FILE_SHARE_WRITE,
5355 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5356 if (efd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005357 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005358 semsg(_(e_notopen), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005359 goto failed;
5360 }
5361 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005362 else if (!use_out_for_err && !use_null_for_err &&
5363 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005364 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaard8070362016-02-15 21:56:54 +01005365 goto failed;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005366
Bram Moolenaard8070362016-02-15 21:56:54 +01005367 si.dwFlags |= STARTF_USESTDHANDLES;
5368 si.hStdInput = ifd[0];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005369 si.hStdOutput = ofd[1];
5370 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
5371
5372 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5373 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005374 if (options->jo_set & JO_CHANNEL)
5375 {
5376 channel = options->jo_channel;
5377 if (channel != NULL)
5378 ++channel->ch_refcount;
5379 }
5380 else
5381 channel = add_channel();
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005382 if (channel == NULL)
5383 goto failed;
5384 }
Bram Moolenaard8070362016-02-15 21:56:54 +01005385
5386 if (!vim_create_process(cmd, TRUE,
Bram Moolenaar14207f42016-10-27 21:13:10 +02005387 CREATE_SUSPENDED |
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005388 CREATE_DEFAULT_ERROR_MODE |
5389 CREATE_NEW_PROCESS_GROUP |
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005390 CREATE_UNICODE_ENVIRONMENT |
Bram Moolenaar76467df2016-02-12 19:30:26 +01005391 CREATE_NEW_CONSOLE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005392 &si, &pi,
5393 ga.ga_data,
5394 (char *)options->jo_cwd))
Bram Moolenaar76467df2016-02-12 19:30:26 +01005395 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005396 CloseHandle(jo);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005397 job->jv_status = JOB_FAILED;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005398 goto failed;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005399 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005400
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005401 ga_clear(&ga);
5402
Bram Moolenaar14207f42016-10-27 21:13:10 +02005403 if (!AssignProcessToJobObject(jo, pi.hProcess))
5404 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005405 // if failing, switch the way to terminate
5406 // process with TerminateProcess.
Bram Moolenaar14207f42016-10-27 21:13:10 +02005407 CloseHandle(jo);
5408 jo = NULL;
5409 }
5410 ResumeThread(pi.hThread);
Bram Moolenaar75578a32016-03-10 16:33:31 +01005411 CloseHandle(pi.hThread);
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005412 job->jv_proc_info = pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005413 job->jv_job_object = jo;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005414 job->jv_status = JOB_STARTED;
5415
Bram Moolenaar641ad6c2016-09-01 18:32:11 +02005416 CloseHandle(ifd[0]);
5417 CloseHandle(ofd[1]);
5418 if (!use_out_for_err && !use_null_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005419 CloseHandle(efd[1]);
Bram Moolenaard8070362016-02-15 21:56:54 +01005420
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005421 job->jv_channel = channel;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005422 if (channel != NULL)
5423 {
5424 channel_set_pipes(channel,
5425 use_file_for_in || use_null_for_in
5426 ? INVALID_FD : (sock_T)ifd[1],
5427 use_file_for_out || use_null_for_out
5428 ? INVALID_FD : (sock_T)ofd[0],
5429 use_out_for_err || use_file_for_err || use_null_for_err
5430 ? INVALID_FD : (sock_T)efd[0]);
5431 channel_set_job(channel, job, options);
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005432 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005433 return;
5434
5435failed:
Bram Moolenaard8070362016-02-15 21:56:54 +01005436 CloseHandle(ifd[0]);
5437 CloseHandle(ofd[0]);
5438 CloseHandle(efd[0]);
5439 CloseHandle(ifd[1]);
5440 CloseHandle(ofd[1]);
5441 CloseHandle(efd[1]);
Bram Moolenaarde279892016-03-11 22:19:44 +01005442 channel_unref(channel);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005443 ga_clear(&ga);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005444}
5445
5446 char *
5447mch_job_status(job_T *job)
5448{
5449 DWORD dwExitCode = 0;
5450
Bram Moolenaar76467df2016-02-12 19:30:26 +01005451 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
5452 || dwExitCode != STILL_ACTIVE)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005453 {
Bram Moolenaareab089d2016-02-21 19:32:02 +01005454 job->jv_exitval = (int)dwExitCode;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005455 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005456 {
5457 ch_log(job->jv_channel, "Job ended");
5458 job->jv_status = JOB_ENDED;
5459 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005460 return "dead";
5461 }
5462 return "run";
5463}
5464
Bram Moolenaar97792de2016-10-15 18:36:49 +02005465 job_T *
5466mch_detect_ended_job(job_T *job_list)
5467{
5468 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
5469 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
5470 job_T *job = job_list;
5471
5472 while (job != NULL)
5473 {
5474 DWORD n;
5475 DWORD result;
5476
5477 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
5478 && job != NULL; job = job->jv_next)
5479 {
5480 if (job->jv_status == JOB_STARTED)
5481 {
5482 jobHandles[n] = job->jv_proc_info.hProcess;
5483 jobArray[n] = job;
5484 ++n;
5485 }
5486 }
5487 if (n == 0)
5488 continue;
5489 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
5490 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
5491 {
5492 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
5493
5494 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
5495 return wait_job;
5496 }
5497 }
5498 return NULL;
5499}
5500
Bram Moolenaarfb630902016-10-29 14:55:00 +02005501 static BOOL
5502terminate_all(HANDLE process, int code)
5503{
5504 PROCESSENTRY32 pe;
5505 HANDLE h = INVALID_HANDLE_VALUE;
5506 DWORD pid = GetProcessId(process);
5507
5508 if (pid != 0)
5509 {
5510 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5511 if (h != INVALID_HANDLE_VALUE)
5512 {
5513 pe.dwSize = sizeof(PROCESSENTRY32);
5514 if (!Process32First(h, &pe))
5515 goto theend;
5516
5517 do
5518 {
5519 if (pe.th32ParentProcessID == pid)
5520 {
5521 HANDLE ph = OpenProcess(
5522 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
5523 if (ph != NULL)
5524 {
5525 terminate_all(ph, code);
5526 CloseHandle(ph);
5527 }
5528 }
5529 } while (Process32Next(h, &pe));
5530
5531 CloseHandle(h);
5532 }
5533 }
5534
5535theend:
5536 return TerminateProcess(process, code);
5537}
5538
5539/*
5540 * Send a (deadly) signal to "job".
5541 * Return FAIL if it didn't work.
5542 */
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005543 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005544mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005545{
Bram Moolenaar923d9262016-02-25 20:56:01 +01005546 int ret;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005547
Bram Moolenaar923d9262016-02-25 20:56:01 +01005548 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
Bram Moolenaar76467df2016-02-12 19:30:26 +01005549 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005550 // deadly signal
Bram Moolenaar14207f42016-10-27 21:13:10 +02005551 if (job->jv_job_object != NULL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005552 {
5553 if (job->jv_channel != NULL && job->jv_channel->ch_anonymous_pipe)
5554 job->jv_channel->ch_killing = TRUE;
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005555 return TerminateJobObject(job->jv_job_object, -1) ? OK : FAIL;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005556 }
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005557 return terminate_all(job->jv_proc_info.hProcess, -1) ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005558 }
5559
5560 if (!AttachConsole(job->jv_proc_info.dwProcessId))
5561 return FAIL;
5562 ret = GenerateConsoleCtrlEvent(
Bram Moolenaar923d9262016-02-25 20:56:01 +01005563 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
5564 job->jv_proc_info.dwProcessId)
5565 ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005566 FreeConsole();
5567 return ret;
5568}
5569
5570/*
5571 * Clear the data related to "job".
5572 */
5573 void
5574mch_clear_job(job_T *job)
5575{
5576 if (job->jv_status != JOB_FAILED)
5577 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005578 if (job->jv_job_object != NULL)
5579 CloseHandle(job->jv_job_object);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005580 CloseHandle(job->jv_proc_info.hProcess);
5581 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005582}
5583#endif
5584
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005586#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005587
5588/*
5589 * Start termcap mode
5590 */
5591 static void
5592termcap_mode_start(void)
5593{
5594 DWORD cmodein;
5595
5596 if (g_fTermcapMode)
5597 return;
5598
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005599 if (!p_rs && USE_VTP)
5600 vtp_printf("\033[?1049h");
5601
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 SaveConsoleBuffer(&g_cbNonTermcap);
5603
5604 if (g_cbTermcap.IsValid)
5605 {
5606 /*
5607 * We've been in termcap mode before. Restore certain screen
5608 * characteristics, including the buffer size and the window
5609 * size. Since we will be redrawing the screen, we don't need
5610 * to restore the actual contents of the buffer.
5611 */
5612 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005613 reset_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
5615 Rows = g_cbTermcap.Info.dwSize.Y;
5616 Columns = g_cbTermcap.Info.dwSize.X;
5617 }
5618 else
5619 {
5620 /*
5621 * This is our first time entering termcap mode. Clear the console
5622 * screen buffer, and resize the buffer to match the current window
5623 * size. We will use this as the size of our editing environment.
5624 */
5625 ClearConsoleBuffer(g_attrCurrent);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005626 set_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
5628 }
5629
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005630# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631 resettitle();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005632# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633
5634 GetConsoleMode(g_hConIn, &cmodein);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635 if (g_fMouseActive)
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005636 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637 cmodein |= ENABLE_MOUSE_INPUT;
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005638 cmodein &= ~ENABLE_QUICK_EDIT_MODE;
5639 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 else
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005641 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 cmodein &= ~ENABLE_MOUSE_INPUT;
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005643 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
5644 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005645 cmodein |= ENABLE_WINDOW_INPUT;
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005646 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647
5648 redraw_later_clear();
5649 g_fTermcapMode = TRUE;
5650}
5651
5652
5653/*
5654 * End termcap mode
5655 */
5656 static void
5657termcap_mode_end(void)
5658{
5659 DWORD cmodein;
5660 ConsoleBuffer *cb;
5661 COORD coord;
5662 DWORD dwDummy;
5663
5664 if (!g_fTermcapMode)
5665 return;
5666
5667 SaveConsoleBuffer(&g_cbTermcap);
5668
5669 GetConsoleMode(g_hConIn, &cmodein);
5670 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
Wez Furlong6ef5ab52021-05-30 19:29:41 +02005671 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
5672 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005674# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005675 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005676# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 cb = &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005678# endif
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005679 RestoreConsoleBuffer(cb, p_rs);
Bram Moolenaardf543822020-01-30 11:53:59 +01005680 restore_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 SetConsoleCursorInfo(g_hConOut, &g_cci);
5682
5683 if (p_rs || exiting)
5684 {
5685 /*
5686 * Clear anything that happens to be on the current line.
5687 */
5688 coord.X = 0;
5689 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
5690 FillConsoleOutputCharacter(g_hConOut, ' ',
5691 cb->Info.dwSize.X, coord, &dwDummy);
5692 /*
5693 * The following is just for aesthetics. If we are exiting without
5694 * restoring the screen, then we want to have a prompt string
5695 * appear at the bottom line. However, the command interpreter
5696 * seems to always advance the cursor one line before displaying
5697 * the prompt string, which causes the screen to scroll. To
5698 * counter this, move the cursor up one line before exiting.
5699 */
5700 if (exiting && !p_rs)
5701 coord.Y--;
5702 /*
5703 * Position the cursor at the leftmost column of the desired row.
5704 */
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005705 SetConsoleCursorPosition(g_hConOut, coord);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 }
5707
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005708 if (!p_rs && USE_VTP)
Bram Moolenaar0afdcf82020-04-01 18:29:10 +02005709 vtp_printf("\033[?1049l");
5710
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711 g_fTermcapMode = FALSE;
5712}
Bram Moolenaar0f873732019-12-05 20:28:46 +01005713#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714
5715
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005716#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 void
5718mch_write(
Bram Moolenaar1266d672017-02-01 13:43:36 +01005719 char_u *s UNUSED,
5720 int len UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721{
Bram Moolenaar0f873732019-12-05 20:28:46 +01005722 // never used
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723}
5724
5725#else
5726
5727/*
5728 * clear `n' chars, starting from `coord'
5729 */
5730 static void
5731clear_chars(
5732 COORD coord,
5733 DWORD n)
5734{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005735 if (!USE_VTP)
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02005736 {
5737 DWORD dwDummy;
5738
5739 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5740 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord,
5741 &dwDummy);
5742 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005743 else
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02005744 {
5745 set_console_color_rgb();
5746 gotoxy(coord.X + 1, coord.Y + 1);
5747 vtp_printf("\033[%dX", n);
5748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749}
5750
5751
5752/*
5753 * Clear the screen
5754 */
5755 static void
5756clear_screen(void)
5757{
5758 g_coord.X = g_coord.Y = 0;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005759
5760 if (!USE_VTP)
5761 clear_chars(g_coord, Rows * Columns);
5762 else
5763 {
5764 set_console_color_rgb();
5765 gotoxy(1, 1);
5766 vtp_printf("\033[2J");
5767 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768}
5769
5770
5771/*
5772 * Clear to end of display
5773 */
5774 static void
5775clear_to_end_of_display(void)
5776{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005777 COORD save = g_coord;
5778
5779 if (!USE_VTP)
5780 clear_chars(g_coord, (Rows - g_coord.Y - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 * Columns + (Columns - g_coord.X));
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005782 else
5783 {
5784 set_console_color_rgb();
5785 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5786 vtp_printf("\033[0J");
5787
5788 gotoxy(save.X + 1, save.Y + 1);
5789 g_coord = save;
5790 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791}
5792
5793
5794/*
5795 * Clear to end of line
5796 */
5797 static void
5798clear_to_end_of_line(void)
5799{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005800 COORD save = g_coord;
5801
5802 if (!USE_VTP)
5803 clear_chars(g_coord, Columns - g_coord.X);
5804 else
5805 {
5806 set_console_color_rgb();
5807 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5808 vtp_printf("\033[0K");
5809
5810 gotoxy(save.X + 1, save.Y + 1);
5811 g_coord = save;
5812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813}
5814
5815
5816/*
5817 * Scroll the scroll region up by `cLines' lines
5818 */
5819 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005820scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821{
5822 COORD oldcoord = g_coord;
5823
5824 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5825 delete_lines(cLines);
5826
5827 g_coord = oldcoord;
5828}
5829
5830
5831/*
5832 * Set the scroll region
5833 */
5834 static void
5835set_scroll_region(
5836 unsigned left,
5837 unsigned top,
5838 unsigned right,
5839 unsigned bottom)
5840{
5841 if (left >= right
5842 || top >= bottom
5843 || right > (unsigned) Columns - 1
5844 || bottom > (unsigned) Rows - 1)
5845 return;
5846
5847 g_srScrollRegion.Left = left;
5848 g_srScrollRegion.Top = top;
5849 g_srScrollRegion.Right = right;
5850 g_srScrollRegion.Bottom = bottom;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005851}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005852
Bram Moolenaar6982f422019-02-16 16:48:01 +01005853 static void
5854set_scroll_region_tb(
5855 unsigned top,
5856 unsigned bottom)
5857{
5858 if (top >= bottom || bottom > (unsigned)Rows - 1)
5859 return;
5860
5861 g_srScrollRegion.Top = top;
5862 g_srScrollRegion.Bottom = bottom;
5863}
5864
5865 static void
5866set_scroll_region_lr(
5867 unsigned left,
5868 unsigned right)
5869{
5870 if (left >= right || right > (unsigned)Columns - 1)
5871 return;
5872
5873 g_srScrollRegion.Left = left;
5874 g_srScrollRegion.Right = right;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005875}
5876
5877
5878/*
5879 * Insert `cLines' lines at the current cursor position
5880 */
5881 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005882insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005884 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885 COORD dest;
5886 CHAR_INFO fill;
5887
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005888 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5889
Bram Moolenaar6982f422019-02-16 16:48:01 +01005890 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 dest.Y = g_coord.Y + cLines;
5892
Bram Moolenaar6982f422019-02-16 16:48:01 +01005893 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894 source.Top = g_coord.Y;
5895 source.Right = g_srScrollRegion.Right;
5896 source.Bottom = g_srScrollRegion.Bottom - cLines;
5897
Bram Moolenaar6982f422019-02-16 16:48:01 +01005898 clip.Left = g_srScrollRegion.Left;
5899 clip.Top = g_coord.Y;
5900 clip.Right = g_srScrollRegion.Right;
5901 clip.Bottom = g_srScrollRegion.Bottom;
5902
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005903 fill.Char.AsciiChar = ' ';
5904 if (!USE_VTP)
5905 fill.Attributes = g_attrCurrent;
5906 else
5907 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005909 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005910
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005911 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5912
Bram Moolenaar6982f422019-02-16 16:48:01 +01005913 // Here we have to deal with a win32 console flake: If the scroll
5914 // region looks like abc and we scroll c to a and fill with d we get
5915 // cbd... if we scroll block c one line at a time to a, we get cdd...
5916 // vim expects cdd consistently... So we have to deal with that
5917 // here... (this also occurs scrolling the same way in the other
5918 // direction).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919
5920 if (source.Bottom < dest.Y)
5921 {
5922 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005923 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924
Bram Moolenaar6982f422019-02-16 16:48:01 +01005925 coord.X = source.Left;
5926 for (i = clip.Top; i < dest.Y; ++i)
5927 {
5928 coord.Y = i;
5929 clear_chars(coord, source.Right - source.Left + 1);
5930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005932
5933 if (USE_WT)
5934 {
5935 COORD coord;
5936 int i;
5937
5938 coord.X = source.Left;
5939 for (i = source.Top; i < dest.Y; ++i)
5940 {
5941 coord.Y = i;
5942 clear_chars(coord, source.Right - source.Left + 1);
5943 }
5944 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005945}
5946
5947
5948/*
5949 * Delete `cLines' lines at the current cursor position
5950 */
5951 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005952delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005954 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 COORD dest;
5956 CHAR_INFO fill;
5957 int nb;
5958
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005959 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5960
Bram Moolenaar6982f422019-02-16 16:48:01 +01005961 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 dest.Y = g_coord.Y;
5963
Bram Moolenaar6982f422019-02-16 16:48:01 +01005964 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 source.Top = g_coord.Y + cLines;
5966 source.Right = g_srScrollRegion.Right;
5967 source.Bottom = g_srScrollRegion.Bottom;
5968
Bram Moolenaar6982f422019-02-16 16:48:01 +01005969 clip.Left = g_srScrollRegion.Left;
5970 clip.Top = g_coord.Y;
5971 clip.Right = g_srScrollRegion.Right;
5972 clip.Bottom = g_srScrollRegion.Bottom;
5973
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005974 fill.Char.AsciiChar = ' ';
5975 if (!USE_VTP)
5976 fill.Attributes = g_attrCurrent;
5977 else
5978 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005980 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005981
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005982 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5983
Bram Moolenaar6982f422019-02-16 16:48:01 +01005984 // Here we have to deal with a win32 console flake; See insert_lines()
5985 // above.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986
5987 nb = dest.Y + (source.Bottom - source.Top) + 1;
5988
5989 if (nb < source.Top)
5990 {
5991 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005992 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993
Bram Moolenaar6982f422019-02-16 16:48:01 +01005994 coord.X = source.Left;
5995 for (i = nb; i < clip.Bottom; ++i)
5996 {
5997 coord.Y = i;
5998 clear_chars(coord, source.Right - source.Left + 1);
5999 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02006001
6002 if (USE_WT)
6003 {
6004 COORD coord;
6005 int i;
6006
6007 coord.X = source.Left;
6008 for (i = nb; i <= source.Bottom; ++i)
6009 {
6010 coord.Y = i;
6011 clear_chars(coord, source.Right - source.Left + 1);
6012 }
6013 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006014}
6015
6016
6017/*
Bram Moolenaar2313b612019-09-27 14:14:32 +02006018 * Set the cursor position to (x,y) (1-based).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 */
6020 static void
6021gotoxy(
6022 unsigned x,
6023 unsigned y)
6024{
6025 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
6026 return;
6027
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006028 if (!USE_VTP)
Bram Moolenaar2313b612019-09-27 14:14:32 +02006029 {
Bram Moolenaar82e743c2020-03-26 15:39:53 +01006030 // There are reports of double-width characters not displayed
6031 // correctly. This workaround should fix it, similar to how it's done
6032 // for VTP.
6033 g_coord.X = 0;
6034 SetConsoleCursorPosition(g_hConOut, g_coord);
6035
Bram Moolenaar2313b612019-09-27 14:14:32 +02006036 // external cursor coords are 1-based; internal are 0-based
6037 g_coord.X = x - 1;
6038 g_coord.Y = y - 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006039 SetConsoleCursorPosition(g_hConOut, g_coord);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006040 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006041 else
Bram Moolenaar2313b612019-09-27 14:14:32 +02006042 {
6043 // Move the cursor to the left edge of the screen to prevent screen
Bram Moolenaara1299742019-10-10 16:36:00 +02006044 // destruction. Insider build bug. Always enabled because it's cheap
6045 // and avoids mistakes with recognizing the build.
6046 vtp_printf("\033[%d;%dH", g_coord.Y + 1, 1);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006047
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006048 vtp_printf("\033[%d;%dH", y, x);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006049
6050 g_coord.X = x - 1;
6051 g_coord.Y = y - 1;
6052 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053}
6054
6055
6056/*
6057 * Set the current text attribute = (foreground | background)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006058 * See ../runtime/doc/os_win32.txt for the numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059 */
6060 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006061textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006063 g_attrCurrent = wAttr & 0xff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064
6065 SetConsoleTextAttribute(g_hConOut, wAttr);
6066}
6067
6068
6069 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006070textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006072 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006074 if (!USE_VTP)
6075 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6076 else
6077 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006078}
6079
6080
6081 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006082textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006084 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006086 if (!USE_VTP)
6087 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6088 else
6089 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090}
6091
6092
6093/*
6094 * restore the default text attribute (whatever we started with)
6095 */
6096 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006097normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006098{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006099 if (!USE_VTP)
6100 textattr(g_attrDefault);
6101 else
6102 vtp_sgr_bulk(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103}
6104
6105
6106static WORD g_attrPreStandout = 0;
6107
6108/*
6109 * Make the text standout, by brightening it
6110 */
6111 static void
6112standout(void)
6113{
6114 g_attrPreStandout = g_attrCurrent;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006115
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
6117}
6118
6119
6120/*
6121 * Turn off standout mode
6122 */
6123 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006124standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125{
6126 if (g_attrPreStandout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127 textattr(g_attrPreStandout);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006128
6129 g_attrPreStandout = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006130}
6131
6132
6133/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00006134 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135 */
6136 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006137mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138{
6139 char_u *p;
6140 int n;
6141
6142 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
6143 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006144 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006145# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006146 !p_tgc &&
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006147# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006148 T_ME[0] == ESC && T_ME[1] == '|')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006149 {
6150 p = T_ME + 2;
6151 n = getdigits(&p);
6152 if (*p == 'm' && n > 0)
6153 {
6154 cterm_normal_fg_color = (n & 0xf) + 1;
6155 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
6156 }
6157 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006158# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006159 cterm_normal_fg_gui_color = INVALCOLOR;
6160 cterm_normal_bg_gui_color = INVALCOLOR;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006161# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162}
6163
6164
6165/*
6166 * visual bell: flash the screen
6167 */
6168 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006169visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170{
6171 COORD coordOrigin = {0, 0};
6172 WORD attrFlash = ~g_attrCurrent & 0xff;
6173
6174 DWORD dwDummy;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006175 LPWORD oldattrs = ALLOC_MULT(WORD, Rows * Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176
6177 if (oldattrs == NULL)
6178 return;
6179 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
6180 coordOrigin, &dwDummy);
6181 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
6182 coordOrigin, &dwDummy);
6183
Bram Moolenaar0f873732019-12-05 20:28:46 +01006184 Sleep(15); // wait for 15 msec
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006185 if (!USE_VTP)
6186 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187 coordOrigin, &dwDummy);
6188 vim_free(oldattrs);
6189}
6190
6191
6192/*
6193 * Make the cursor visible or invisible
6194 */
6195 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006196cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197{
6198 s_cursor_visible = fVisible;
Bram Moolenaar2695de62020-04-17 21:13:01 +02006199
6200 if (USE_VTP)
6201 vtp_printf("\033[?25%c", fVisible ? 'h' : 'l');
6202
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006203# ifdef MCH_CURSOR_SHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204 mch_update_cursor();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006205# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206}
6207
6208
6209/*
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006210 * Write "cbToWrite" bytes in `pchBuf' to the screen.
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006211 * Returns the number of bytes actually written (at least one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006213 static DWORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214write_chars(
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006215 char_u *pchBuf,
6216 DWORD cbToWrite)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006218 COORD coord = g_coord;
6219 DWORD written;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006220 DWORD n, cchwritten;
6221 static DWORD cells;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006222 static WCHAR *unicodebuf = NULL;
6223 static int unibuflen = 0;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006224 static int length;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006225 int cp = enc_utf8 ? CP_UTF8 : enc_codepage;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006226 static WCHAR *utf8spbuf = NULL;
6227 static int utf8splength;
6228 static DWORD utf8spcells;
6229 static WCHAR **utf8usingbuf = &unicodebuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006231 if (cbToWrite != 1 || *pchBuf != ' ' || !enc_utf8)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006232 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006233 utf8usingbuf = &unicodebuf;
6234 do
6235 {
6236 length = MultiByteToWideChar(cp, 0, (LPCSTR)pchBuf, cbToWrite,
6237 unicodebuf, unibuflen);
6238 if (length && length <= unibuflen)
6239 break;
6240 vim_free(unicodebuf);
6241 unicodebuf = length ? LALLOC_MULT(WCHAR, length) : NULL;
6242 unibuflen = unibuflen ? 0 : length;
6243 } while(1);
6244 cells = mb_string2cells(pchBuf, cbToWrite);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006245 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006246 else // cbToWrite == 1 && *pchBuf == ' ' && enc_utf8
6247 {
6248 if (utf8usingbuf != &utf8spbuf)
6249 {
6250 if (utf8spbuf == NULL)
6251 {
6252 cells = mb_string2cells((char_u *)" ", 1);
6253 length = MultiByteToWideChar(CP_UTF8, 0, " ", 1, NULL, 0);
6254 utf8spbuf = LALLOC_MULT(WCHAR, length);
6255 if (utf8spbuf != NULL)
6256 {
6257 MultiByteToWideChar(CP_UTF8, 0, " ", 1, utf8spbuf, length);
6258 utf8usingbuf = &utf8spbuf;
6259 utf8splength = length;
6260 utf8spcells = cells;
6261 }
6262 }
6263 else
6264 {
6265 utf8usingbuf = &utf8spbuf;
6266 length = utf8splength;
6267 cells = utf8spcells;
6268 }
6269 }
6270 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006271
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006272 if (!USE_VTP)
6273 {
6274 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
6275 coord, &written);
6276 // When writing fails or didn't write a single character, pretend one
6277 // character was written, otherwise we get stuck.
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006278 if (WriteConsoleOutputCharacterW(g_hConOut, *utf8usingbuf, length,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006279 coord, &cchwritten) == 0
6280 || cchwritten == 0 || cchwritten == (DWORD)-1)
6281 cchwritten = 1;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006282 }
6283 else
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006284 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006285 if (WriteConsoleW(g_hConOut, *utf8usingbuf, length, &cchwritten,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006286 NULL) == 0 || cchwritten == 0)
6287 cchwritten = 1;
6288 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006289
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006290 if (cchwritten == length)
6291 {
6292 written = cbToWrite;
6293 g_coord.X += (SHORT)cells;
6294 }
6295 else
6296 {
6297 char_u *p = pchBuf;
6298 for (n = 0; n < cchwritten; n++)
6299 MB_CPTR_ADV(p);
6300 written = p - pchBuf;
6301 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006302 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303
6304 while (g_coord.X > g_srScrollRegion.Right)
6305 {
6306 g_coord.X -= (SHORT) Columns;
6307 if (g_coord.Y < g_srScrollRegion.Bottom)
6308 g_coord.Y++;
6309 }
6310
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006311 // Cursor under VTP is always in the correct position, no need to reset.
6312 if (!USE_VTP)
6313 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006314
6315 return written;
6316}
6317
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006318 static char_u *
6319get_seq(
6320 int *args,
6321 int *count,
6322 char_u *head)
6323{
6324 int argc;
6325 char_u *p;
6326
6327 if (head == NULL || *head != '\033')
6328 return NULL;
6329
6330 argc = 0;
6331 p = head;
6332 ++p;
6333 do
6334 {
6335 ++p;
6336 args[argc] = getdigits(&p);
6337 argc += (argc < 15) ? 1 : 0;
6338 } while (*p == ';');
6339 *count = argc;
6340
6341 return p;
6342}
6343
6344 static char_u *
6345get_sgr(
6346 int *args,
6347 int *count,
6348 char_u *head)
6349{
6350 char_u *p = get_seq(args, count, head);
6351
6352 return (p && *p == 'm') ? ++p : NULL;
6353}
6354
6355/*
6356 * Pointer to next if SGR (^[[n;2;*;*;*m), NULL otherwise.
6357 */
6358 static char_u *
6359sgrn2(
6360 char_u *head,
6361 int n)
6362{
6363 int argc;
6364 int args[16];
6365 char_u *p = get_sgr(args, &argc, head);
6366
6367 return p && argc == 5 && args[0] == n && args[1] == 2 ? p : NULL;
6368}
6369
6370/*
6371 * Pointer to next if SGR(^[[nm)<space>ESC, NULL otherwise.
6372 */
6373 static char_u *
6374sgrnc(
6375 char_u *head,
6376 int n)
6377{
6378 int argc;
6379 int args[16];
6380 char_u *p = get_sgr(args, &argc, head);
6381
6382 return p && argc == 1 && args[0] == n && (p = skipwhite(p)) && *p == '\033'
6383 ? p : NULL;
6384}
6385
6386 static char_u *
6387skipblank(char_u *q)
6388{
6389 char_u *p = q;
6390
6391 while (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r')
6392 ++p;
6393 return p;
6394}
6395
6396/*
6397 * Pointer to the next if any whitespace that may follow SGR is ESC, otherwise
6398 * NULL.
6399 */
6400 static char_u *
6401sgrn2c(
6402 char_u *head,
6403 int n)
6404{
6405 char_u *p = sgrn2(head, n);
6406
6407 return p && *p != NUL && (p = skipblank(p)) && *p == '\033' ? p : NULL;
6408}
6409
6410/*
6411 * If there is only a newline between the sequence immediately following it,
6412 * a pointer to the character following the newline is returned.
6413 * Otherwise NULL.
6414 */
6415 static char_u *
6416sgrn2cn(
6417 char_u *head,
6418 int n)
6419{
6420 char_u *p = sgrn2(head, n);
6421
6422 return p && p[0] == 0x0a && p[1] == '\033' ? ++p : NULL;
6423}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424
6425/*
6426 * mch_write(): write the output buffer to the screen, translating ESC
6427 * sequences into calls to console output routines.
6428 */
6429 void
6430mch_write(
6431 char_u *s,
6432 int len)
6433{
Bram Moolenaard23f8bd2021-04-21 11:30:48 +02006434 char_u *end = s + len;
6435
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006436# ifdef VIMDLL
6437 if (gui.in_use)
6438 return;
6439# endif
6440
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441 if (!term_console)
6442 {
6443 write(1, s, (unsigned)len);
6444 return;
6445 }
6446
Bram Moolenaar0f873732019-12-05 20:28:46 +01006447 // translate ESC | sequences into faked bios calls
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448 while (len--)
6449 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006450 int prefix = -1;
6451 char_u ch;
6452
6453 // While processing a sequence, on rare occasions it seems that another
6454 // sequence may be inserted asynchronously.
6455 if (len < 0)
6456 {
6457 redraw_all_later(CLEAR);
6458 return;
6459 }
6460
Bram Moolenaard23f8bd2021-04-21 11:30:48 +02006461 while (s + ++prefix < end)
6462 {
6463 ch = s[prefix];
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006464 if (ch <= 0x1e && !(ch != '\n' && ch != '\r' && ch != '\b'
6465 && ch != '\a' && ch != '\033'))
6466 break;
Bram Moolenaard23f8bd2021-04-21 11:30:48 +02006467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468
6469 if (p_wd)
6470 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006471 WaitForChar(p_wd, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 if (prefix != 0)
6473 prefix = 1;
6474 }
6475
6476 if (prefix != 0)
6477 {
6478 DWORD nWritten;
6479
6480 nWritten = write_chars(s, prefix);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006481# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482 if (fdDump)
6483 {
6484 fputc('>', fdDump);
6485 fwrite(s, sizeof(char_u), nWritten, fdDump);
6486 fputs("<\n", fdDump);
6487 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006488# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 len -= (nWritten - 1);
6490 s += nWritten;
6491 }
6492 else if (s[0] == '\n')
6493 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006494 // \n, newline: go to the beginning of the next line or scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00006495 if (g_coord.Y == g_srScrollRegion.Bottom)
6496 {
6497 scroll(1);
6498 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
6499 }
6500 else
6501 {
6502 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
6503 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006504# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006505 if (fdDump)
6506 fputs("\\n\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006507# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006508 s++;
6509 }
6510 else if (s[0] == '\r')
6511 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006512 // \r, carriage return: go to beginning of line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 gotoxy(g_srScrollRegion.Left+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("\\r\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] == '\b')
6521 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006522 // \b, backspace: move cursor one position left
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523 if (g_coord.X > g_srScrollRegion.Left)
6524 g_coord.X--;
6525 else if (g_coord.Y > g_srScrollRegion.Top)
6526 {
6527 g_coord.X = g_srScrollRegion.Right;
6528 g_coord.Y--;
6529 }
6530 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006531# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 if (fdDump)
6533 fputs("\\b\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006534# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535 s++;
6536 }
6537 else if (s[0] == '\a')
6538 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006539 // \a, bell
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540 MessageBeep(0xFFFFFFFF);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006541# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006542 if (fdDump)
6543 fputs("\\a\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006544# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545 s++;
6546 }
6547 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
6548 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006549# ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006550 char_u *old_s = s;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006551# endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006552 char_u *p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006553 int arg1 = 0, arg2 = 0, argc = 0, args[16];
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006554 char_u *sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006555
6556 switch (s[2])
6557 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558 case '0': case '1': case '2': case '3': case '4':
6559 case '5': case '6': case '7': case '8': case '9':
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006560 if (*(p = get_seq(args, &argc, s)) != 'm')
6561 goto notsgr;
6562
6563 p = s;
6564
6565 // Handling frequent optional sequences. Output to the screen
6566 // takes too long, so do not output as much as possible.
6567
6568 // If resetFG,FG,BG,<cr>,BG,FG are connected, the preceding
6569 // resetFG,FG,BG are omitted.
6570 if (sgrn2(sgrn2(sgrn2cn(sgrn2(sgrnc(p, 39), 38), 48), 48), 38))
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006571 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006572 p = sgrn2(sgrn2(sgrnc(p, 39), 38), 48);
6573 len = len + 1 - (int)(p - s);
6574 s = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575 break;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006576 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006577
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006578 // If FG,BG,BG,FG of SGR are connected, the first FG can be
6579 // omitted.
6580 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 48), 38))
6581 p = sp;
6582
6583 // If FG,BG,FG,BG of SGR are connected, the first FG can be
6584 // omitted.
6585 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 38), 48))
6586 p = sp;
6587
6588 // If BG,BG of SGR are connected, the first BG can be omitted.
6589 if (sgrn2((sp = sgrn2(p, 48)), 48))
6590 p = sp;
6591
6592 // If restoreFG and FG are connected, the restoreFG can be
6593 // omitted.
6594 if (sgrn2((sp = sgrnc(p, 39)), 38))
6595 p = sp;
6596
6597 p = get_seq(args, &argc, p);
6598
6599notsgr:
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006600 arg1 = args[0];
6601 arg2 = args[1];
6602 if (*p == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006603 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006604 if (argc == 1 && args[0] == 0)
6605 normvideo();
6606 else if (argc == 1)
6607 {
6608 if (USE_VTP)
6609 textcolor((WORD) arg1);
6610 else
6611 textattr((WORD) arg1);
6612 }
6613 else if (USE_VTP)
6614 vtp_sgr_bulks(argc, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006616 else if (argc == 2 && *p == 'H')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006618 gotoxy(arg2, arg1);
6619 }
6620 else if (argc == 2 && *p == 'r')
6621 {
6622 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
6623 }
Bram Moolenaar6982f422019-02-16 16:48:01 +01006624 else if (argc == 2 && *p == 'R')
6625 {
6626 set_scroll_region_tb(arg1, arg2);
6627 }
6628 else if (argc == 2 && *p == 'V')
6629 {
6630 set_scroll_region_lr(arg1, arg2);
6631 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006632 else if (argc == 1 && *p == 'A')
6633 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006634 gotoxy(g_coord.X + 1,
6635 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
6636 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006637 else if (argc == 1 && *p == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638 {
6639 textbackground((WORD) arg1);
6640 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006641 else if (argc == 1 && *p == 'C')
6642 {
6643 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
6644 g_coord.Y + 1);
6645 }
6646 else if (argc == 1 && *p == 'f')
6647 {
6648 textcolor((WORD) arg1);
6649 }
6650 else if (argc == 1 && *p == 'H')
6651 {
6652 gotoxy(1, arg1);
6653 }
6654 else if (argc == 1 && *p == 'L')
6655 {
6656 insert_lines(arg1);
6657 }
6658 else if (argc == 1 && *p == 'M')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006659 {
6660 delete_lines(arg1);
6661 }
6662
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006663 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006664 s = p + 1;
6665 break;
6666
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667 case 'A':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006668 gotoxy(g_coord.X + 1,
6669 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
6670 goto got3;
6671
6672 case 'B':
6673 visual_bell();
6674 goto got3;
6675
6676 case 'C':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
6678 g_coord.Y + 1);
6679 goto got3;
6680
6681 case 'E':
6682 termcap_mode_end();
6683 goto got3;
6684
6685 case 'F':
6686 standout();
6687 goto got3;
6688
6689 case 'f':
6690 standend();
6691 goto got3;
6692
6693 case 'H':
6694 gotoxy(1, 1);
6695 goto got3;
6696
6697 case 'j':
6698 clear_to_end_of_display();
6699 goto got3;
6700
6701 case 'J':
6702 clear_screen();
6703 goto got3;
6704
6705 case 'K':
6706 clear_to_end_of_line();
6707 goto got3;
6708
6709 case 'L':
6710 insert_lines(1);
6711 goto got3;
6712
6713 case 'M':
6714 delete_lines(1);
6715 goto got3;
6716
6717 case 'S':
6718 termcap_mode_start();
6719 goto got3;
6720
6721 case 'V':
6722 cursor_visible(TRUE);
6723 goto got3;
6724
6725 case 'v':
6726 cursor_visible(FALSE);
6727 goto got3;
6728
6729 got3:
6730 s += 3;
6731 len -= 2;
6732 }
6733
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006734# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735 if (fdDump)
6736 {
6737 fputs("ESC | ", fdDump);
6738 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
6739 fputc('\n', fdDump);
6740 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006741# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006742 }
6743 else
6744 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006745 // Write a single character
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 DWORD nWritten;
6747
6748 nWritten = write_chars(s, 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006749# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750 if (fdDump)
6751 {
6752 fputc('>', fdDump);
6753 fwrite(s, sizeof(char_u), nWritten, fdDump);
6754 fputs("<\n", fdDump);
6755 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006756# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006757
6758 len -= (nWritten - 1);
6759 s += nWritten;
6760 }
6761 }
6762
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006763# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006764 if (fdDump)
6765 fflush(fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006766# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767}
6768
Bram Moolenaar0f873732019-12-05 20:28:46 +01006769#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770
6771
6772/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01006773 * Delay for "msec" milliseconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006774 */
6775 void
6776mch_delay(
6777 long msec,
Bram Moolenaar0981c872020-08-23 14:28:37 +02006778 int flags UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006779{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006780#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006781 Sleep((int)msec); // never wait for input
6782#else // Console
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006783# ifdef VIMDLL
6784 if (gui.in_use)
6785 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006786 Sleep((int)msec); // never wait for input
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006787 return;
6788 }
6789# endif
Bram Moolenaar0981c872020-08-23 14:28:37 +02006790 if (flags & MCH_DELAY_IGNOREINPUT)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006791# ifdef FEAT_MZSCHEME
6792 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
6793 {
6794 int towait = p_mzq;
6795
Bram Moolenaar0f873732019-12-05 20:28:46 +01006796 // if msec is large enough, wait by portions in p_mzq
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006797 while (msec > 0)
6798 {
6799 mzvim_check_threads();
6800 if (msec < towait)
6801 towait = msec;
6802 Sleep(towait);
6803 msec -= towait;
6804 }
6805 }
6806 else
6807# endif
6808 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006809 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006810 WaitForChar(msec, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006811#endif
6812}
6813
6814
6815/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01006816 * This version of remove is not scared by a readonly (backup) file.
6817 * This can also remove a symbolic link like Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818 * Return 0 for success, -1 for failure.
6819 */
6820 int
6821mch_remove(char_u *name)
6822{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006823 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006824 int n;
6825
Bram Moolenaar203258c2016-01-17 22:15:16 +01006826 /*
6827 * On Windows, deleting a directory's symbolic link is done by
6828 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
6829 */
6830 if (mch_isdir(name) && mch_is_symbolic_link(name))
6831 return mch_rmdir(name);
6832
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006833 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
6834
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006835 wn = enc_to_utf16(name, NULL);
6836 if (wn == NULL)
6837 return -1;
6838
6839 n = DeleteFileW(wn) ? 0 : -1;
6840 vim_free(wn);
6841 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842}
6843
6844
6845/*
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006846 * Check for an "interrupt signal": CTRL-break or CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006847 */
6848 void
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02006849mch_breakcheck(int force UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006850{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006851#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
6852# ifdef VIMDLL
6853 if (!gui.in_use)
6854# endif
6855 if (g_fCtrlCPressed || g_fCBrkPressed)
6856 {
6857 ctrl_break_was_pressed = g_fCBrkPressed;
6858 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6859 got_int = TRUE;
6860 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861#endif
6862}
6863
Bram Moolenaar0f873732019-12-05 20:28:46 +01006864// physical RAM to leave for the OS
Bram Moolenaaree273972016-01-02 21:11:51 +01006865#define WINNT_RESERVE_BYTES (256*1024*1024)
Bram Moolenaaree273972016-01-02 21:11:51 +01006866
6867/*
6868 * How much main memory in KiB that can be used by VIM.
6869 */
Bram Moolenaaree273972016-01-02 21:11:51 +01006870 long_u
Bram Moolenaar1266d672017-02-01 13:43:36 +01006871mch_total_mem(int special UNUSED)
Bram Moolenaaree273972016-01-02 21:11:51 +01006872{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006873 MEMORYSTATUSEX ms;
6874
Bram Moolenaar0f873732019-12-05 20:28:46 +01006875 // Need to use GlobalMemoryStatusEx() when there is more memory than
6876 // what fits in 32 bits.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006877 ms.dwLength = sizeof(MEMORYSTATUSEX);
6878 GlobalMemoryStatusEx(&ms);
6879 if (ms.ullAvailVirtual < ms.ullTotalPhys)
Bram Moolenaaree273972016-01-02 21:11:51 +01006880 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006881 // Process address space fits in physical RAM, use all of it.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006882 return (long_u)(ms.ullAvailVirtual / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006883 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006884 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
Bram Moolenaaree273972016-01-02 21:11:51 +01006885 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006886 // Catch old NT box or perverse hardware setup.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006887 return (long_u)((ms.ullTotalPhys / 2) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006888 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006889 // Use physical RAM less reserve for OS + data.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006890 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006891}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006892
Bram Moolenaar071d4272004-06-13 20:20:40 +00006893/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006894 * mch_wrename() works around a bug in rename (aka MoveFile) in
Bram Moolenaar071d4272004-06-13 20:20:40 +00006895 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
6896 * file whose short file name is "FOO.BAR" (its long file name will
6897 * be correct: "foo.bar~"). Because a file can be accessed by
6898 * either its SFN or its LFN, "foo.bar" has effectively been
6899 * renamed to "foo.bar", which is not at all what was wanted. This
6900 * seems to happen only when renaming files with three-character
6901 * extensions by appending a suffix that does not include ".".
6902 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
6903 *
6904 * There is another problem, which isn't really a bug but isn't right either:
6905 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
6906 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
6907 * service pack 6. Doesn't seem to happen on Windows 98.
6908 *
6909 * Like rename(), returns 0 upon success, non-zero upon failure.
6910 * Should probably set errno appropriately when errors occur.
6911 */
6912 int
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006913mch_wrename(WCHAR *wold, WCHAR *wnew)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006915 WCHAR *p;
6916 int i;
6917 WCHAR szTempFile[_MAX_PATH + 1];
6918 WCHAR szNewPath[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006919 HANDLE hf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006920
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006921 // No need to play tricks unless the file name contains a "~" as the
6922 // seventh character.
6923 p = wold;
6924 for (i = 0; wold[i] != NUL; ++i)
6925 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
6926 && wold[i + 1] != 0)
6927 p = wold + i + 1;
6928 if ((int)(wold + i - p) < 8 || p[6] != '~')
6929 return (MoveFileW(wold, wnew) == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006931 // Get base path of new file name. Undocumented feature: If pszNewFile is
6932 // a directory, no error is returned and pszFilePart will be NULL.
6933 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934 return -1;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006935 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006937 // Get (and create) a unique temporary file name in directory of new file
6938 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939 return -2;
6940
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006941 // blow the temp file away
6942 if (!DeleteFileW(szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943 return -3;
6944
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006945 // rename old file to the temp file
6946 if (!MoveFileW(wold, szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006947 return -4;
6948
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006949 // now create an empty file called pszOldFile; this prevents the operating
6950 // system using pszOldFile as an alias (SFN) if we're renaming within the
6951 // same directory. For example, we're editing a file called
6952 // filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
6953 // to filena~1.txt~ (i.e., we're making a backup while writing it), the
6954 // SFN for filena~1.txt~ will be filena~1.txt, by default, which will
6955 // cause all sorts of problems later in buf_write(). So, we create an
6956 // empty file called filena~1.txt and the system will have to find some
6957 // other SFN for filena~1.txt~, such as filena~2.txt
6958 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6960 return -5;
6961 if (!CloseHandle(hf))
6962 return -6;
6963
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006964 // rename the temp file to the new file
6965 if (!MoveFileW(szTempFile, wnew))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006966 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006967 // Renaming failed. Rename the file back to its old name, so that it
6968 // looks like nothing happened.
6969 (void)MoveFileW(szTempFile, wold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006970 return -7;
6971 }
6972
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006973 // Seems to be left around on Novell filesystems
6974 DeleteFileW(szTempFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006976 // finally, remove the empty old file
6977 if (!DeleteFileW(wold))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978 return -8;
6979
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006980 return 0;
6981}
6982
6983
6984/*
6985 * Converts the filenames to UTF-16, then call mch_wrename().
6986 * Like rename(), returns 0 upon success, non-zero upon failure.
6987 */
6988 int
6989mch_rename(
6990 const char *pszOldFile,
6991 const char *pszNewFile)
6992{
6993 WCHAR *wold = NULL;
6994 WCHAR *wnew = NULL;
6995 int retval = -1;
6996
6997 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
6998 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
6999 if (wold != NULL && wnew != NULL)
7000 retval = mch_wrename(wold, wnew);
7001 vim_free(wold);
7002 vim_free(wnew);
7003 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004}
7005
7006/*
7007 * Get the default shell for the current hardware platform
7008 */
7009 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007010default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007011{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007012 return "cmd.exe";
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013}
7014
7015/*
7016 * mch_access() extends access() to do more detailed check on network drives.
7017 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
7018 */
7019 int
7020mch_access(char *n, int p)
7021{
7022 HANDLE hFile;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007023 int retval = -1; // default: fail
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007024 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007026 wn = enc_to_utf16((char_u *)n, NULL);
7027 if (wn == NULL)
7028 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01007030 if (mch_isdir((char_u *)n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032 WCHAR TempNameW[_MAX_PATH + 16] = L"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033
7034 if (p & R_OK)
7035 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007036 // Read check is performed by seeing if we can do a find file on
7037 // the directory for any file.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007038 int i;
7039 WIN32_FIND_DATAW d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007041 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
7042 TempNameW[i] = wn[i];
7043 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
7044 TempNameW[i++] = '\\';
7045 TempNameW[i++] = '*';
7046 TempNameW[i++] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007048 hFile = FindFirstFileW(TempNameW, &d);
7049 if (hFile == INVALID_HANDLE_VALUE)
7050 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007051 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 (void)FindClose(hFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053 }
7054
7055 if (p & W_OK)
7056 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007057 // Trying to create a temporary file in the directory should catch
7058 // directories on read-only network shares. However, in
7059 // directories whose ACL allows writes but denies deletes will end
7060 // up keeping the temporary file :-(.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007061 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
7062 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007063 else
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007064 DeleteFileW(TempNameW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 }
7066 }
7067 else
7068 {
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007069 // Don't consider a file read-only if another process has opened it.
7070 DWORD share_mode = FILE_SHARE_READ | FILE_SHARE_WRITE;
7071
Bram Moolenaar0f873732019-12-05 20:28:46 +01007072 // Trying to open the file for the required access does ACL, read-only
7073 // network share, and file attribute checks.
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007074 DWORD access_mode = ((p & W_OK) ? GENERIC_WRITE : 0)
7075 | ((p & R_OK) ? GENERIC_READ : 0);
7076
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007077 hFile = CreateFileW(wn, access_mode, share_mode,
7078 NULL, OPEN_EXISTING, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007079 if (hFile == INVALID_HANDLE_VALUE)
7080 goto getout;
7081 CloseHandle(hFile);
7082 }
7083
Bram Moolenaar0f873732019-12-05 20:28:46 +01007084 retval = 0; // success
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085getout:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 return retval;
7088}
7089
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007091 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092 */
7093 int
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007094mch_open(const char *name, int flags, int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095{
7096 WCHAR *wn;
7097 int f;
7098
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007099 wn = enc_to_utf16((char_u *)name, NULL);
7100 if (wn == NULL)
7101 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007103 f = _wopen(wn, flags, mode);
7104 vim_free(wn);
7105 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007106}
7107
7108/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007109 * Version of fopen() that uses UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007110 */
7111 FILE *
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007112mch_fopen(const char *name, const char *mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007113{
7114 WCHAR *wn, *wm;
7115 FILE *f = NULL;
7116
Bram Moolenaara12a1612019-01-24 16:39:02 +01007117#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0f873732019-12-05 20:28:46 +01007118 // Work around an annoying assertion in the Microsoft debug CRT
7119 // when mode's text/binary setting doesn't match _get_fmode().
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007120 char newMode = mode[strlen(mode) - 1];
7121 int oldMode = 0;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007122
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007123 _get_fmode(&oldMode);
7124 if (newMode == 't')
7125 _set_fmode(_O_TEXT);
7126 else if (newMode == 'b')
7127 _set_fmode(_O_BINARY);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007128#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007129 wn = enc_to_utf16((char_u *)name, NULL);
7130 wm = enc_to_utf16((char_u *)mode, NULL);
7131 if (wn != NULL && wm != NULL)
7132 f = _wfopen(wn, wm);
7133 vim_free(wn);
7134 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007135
Bram Moolenaara12a1612019-01-24 16:39:02 +01007136#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007137 _set_fmode(oldMode);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007138#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007139 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007140}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007141
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142/*
7143 * SUB STREAM (aka info stream) handling:
7144 *
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01007145 * NTFS can have sub streams for each file. The normal contents of a file is
7146 * stored in the main stream, and extra contents (author information, title and
7147 * so on) can be stored in a sub stream. After Windows 2000, the user can
7148 * access and store this information in sub streams via an explorer's property
7149 * menu item in the right click menu. This information in sub streams was lost
7150 * when copying only the main stream. Therefore we have to copy sub streams.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007151 *
7152 * Incomplete explanation:
7153 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
7154 * More useful info and an example:
7155 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
7156 */
7157
7158/*
7159 * Copy info stream data "substream". Read from the file with BackupRead(sh)
7160 * and write to stream "substream" of file "to".
7161 * Errors are ignored.
7162 */
7163 static void
7164copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
7165{
7166 HANDLE hTo;
7167 WCHAR *to_name;
7168
7169 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
7170 wcscpy(to_name, to);
7171 wcscat(to_name, substream);
7172
7173 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
7174 FILE_ATTRIBUTE_NORMAL, NULL);
7175 if (hTo != INVALID_HANDLE_VALUE)
7176 {
7177 long done;
7178 DWORD todo;
7179 DWORD readcnt, written;
7180 char buf[4096];
7181
Bram Moolenaar0f873732019-12-05 20:28:46 +01007182 // Copy block of bytes at a time. Abort when something goes wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007183 for (done = 0; done < len; done += written)
7184 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007185 // (size_t) cast for Borland C 5.5
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007186 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
7187 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007188 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
7189 FALSE, FALSE, context)
7190 || readcnt != todo
7191 || !WriteFile(hTo, buf, todo, &written, NULL)
7192 || written != todo)
7193 break;
7194 }
7195 CloseHandle(hTo);
7196 }
7197
7198 free(to_name);
7199}
7200
7201/*
7202 * Copy info streams from file "from" to file "to".
7203 */
7204 static void
7205copy_infostreams(char_u *from, char_u *to)
7206{
7207 WCHAR *fromw;
7208 WCHAR *tow;
7209 HANDLE sh;
7210 WIN32_STREAM_ID sid;
7211 int headersize;
7212 WCHAR streamname[_MAX_PATH];
7213 DWORD readcount;
7214 void *context = NULL;
7215 DWORD lo, hi;
7216 int len;
7217
Bram Moolenaar0f873732019-12-05 20:28:46 +01007218 // Convert the file names to wide characters.
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007219 fromw = enc_to_utf16(from, NULL);
7220 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007221 if (fromw != NULL && tow != NULL)
7222 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007223 // Open the file for reading.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007224 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
7225 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
7226 if (sh != INVALID_HANDLE_VALUE)
7227 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007228 // Use BackupRead() to find the info streams. Repeat until we
7229 // have done them all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 for (;;)
7231 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007232 // Get the header to find the length of the stream name. If
7233 // the "readcount" is zero we have done all info streams.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007235 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007236 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
7237 &readcount, FALSE, FALSE, &context)
7238 || readcount == 0)
7239 break;
7240
Bram Moolenaar0f873732019-12-05 20:28:46 +01007241 // We only deal with streams that have a name. The normal
7242 // file data appears to be without a name, even though docs
7243 // suggest it is called "::$DATA".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244 if (sid.dwStreamNameSize > 0)
7245 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007246 // Read the stream name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 if (!BackupRead(sh, (LPBYTE)streamname,
7248 sid.dwStreamNameSize,
7249 &readcount, FALSE, FALSE, &context))
7250 break;
7251
Bram Moolenaar0f873732019-12-05 20:28:46 +01007252 // Copy an info stream with a name ":anything:$DATA".
7253 // Skip "::$DATA", it has no stream name (examples suggest
7254 // it might be used for the normal file contents).
7255 // Note that BackupRead() counts bytes, but the name is in
7256 // wide characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007257 len = readcount / sizeof(WCHAR);
7258 streamname[len] = 0;
7259 if (len > 7 && wcsicmp(streamname + len - 6,
7260 L":$DATA") == 0)
7261 {
7262 streamname[len - 6] = 0;
7263 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007264 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265 }
7266 }
7267
Bram Moolenaar0f873732019-12-05 20:28:46 +01007268 // Advance to the next stream. We might try seeking too far,
7269 // but BackupSeek() doesn't skip over stream borders, thus
7270 // that's OK.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007271 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272 &lo, &hi, &context);
7273 }
7274
Bram Moolenaar0f873732019-12-05 20:28:46 +01007275 // Clear the context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007276 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
7277
7278 CloseHandle(sh);
7279 }
7280 }
7281 vim_free(fromw);
7282 vim_free(tow);
7283}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007284
7285/*
Bram Moolenaare7bebc42021-02-01 20:50:37 +01007286 * ntdll.dll definitions
7287 */
7288#define FileEaInformation 7
7289#ifndef STATUS_SUCCESS
7290# define STATUS_SUCCESS ((NTSTATUS) 0x00000000L)
7291#endif
7292
7293typedef struct _FILE_FULL_EA_INFORMATION_ {
7294 ULONG NextEntryOffset;
7295 UCHAR Flags;
7296 UCHAR EaNameLength;
7297 USHORT EaValueLength;
7298 CHAR EaName[1];
7299} FILE_FULL_EA_INFORMATION_, *PFILE_FULL_EA_INFORMATION_;
7300
7301typedef struct _FILE_EA_INFORMATION_ {
7302 ULONG EaSize;
7303} FILE_EA_INFORMATION_, *PFILE_EA_INFORMATION_;
7304
7305typedef NTSTATUS (NTAPI *PfnNtOpenFile)(
7306 PHANDLE FileHandle,
7307 ACCESS_MASK DesiredAccess,
7308 POBJECT_ATTRIBUTES ObjectAttributes,
7309 PIO_STATUS_BLOCK IoStatusBlock,
7310 ULONG ShareAccess,
7311 ULONG OpenOptions);
7312typedef NTSTATUS (NTAPI *PfnNtClose)(
7313 HANDLE Handle);
7314typedef NTSTATUS (NTAPI *PfnNtSetEaFile)(
7315 HANDLE FileHandle,
7316 PIO_STATUS_BLOCK IoStatusBlock,
7317 PVOID Buffer,
7318 ULONG Length);
7319typedef NTSTATUS (NTAPI *PfnNtQueryEaFile)(
7320 HANDLE FileHandle,
7321 PIO_STATUS_BLOCK IoStatusBlock,
7322 PVOID Buffer,
7323 ULONG Length,
7324 BOOLEAN ReturnSingleEntry,
7325 PVOID EaList,
7326 ULONG EaListLength,
7327 PULONG EaIndex,
7328 BOOLEAN RestartScan);
7329typedef NTSTATUS (NTAPI *PfnNtQueryInformationFile)(
7330 HANDLE FileHandle,
7331 PIO_STATUS_BLOCK IoStatusBlock,
7332 PVOID FileInformation,
7333 ULONG Length,
7334 FILE_INFORMATION_CLASS FileInformationClass);
7335typedef VOID (NTAPI *PfnRtlInitUnicodeString)(
7336 PUNICODE_STRING DestinationString,
7337 PCWSTR SourceString);
7338
7339PfnNtOpenFile pNtOpenFile = NULL;
7340PfnNtClose pNtClose = NULL;
7341PfnNtSetEaFile pNtSetEaFile = NULL;
7342PfnNtQueryEaFile pNtQueryEaFile = NULL;
7343PfnNtQueryInformationFile pNtQueryInformationFile = NULL;
7344PfnRtlInitUnicodeString pRtlInitUnicodeString = NULL;
7345
7346/*
7347 * Load ntdll.dll functions.
7348 */
7349 static BOOL
7350load_ntdll(void)
7351{
7352 static int loaded = -1;
7353
7354 if (loaded == -1)
7355 {
7356 HMODULE hNtdll = GetModuleHandle("ntdll.dll");
7357 if (hNtdll != NULL)
7358 {
7359 pNtOpenFile = (PfnNtOpenFile) GetProcAddress(hNtdll, "NtOpenFile");
7360 pNtClose = (PfnNtClose) GetProcAddress(hNtdll, "NtClose");
7361 pNtSetEaFile = (PfnNtSetEaFile)
7362 GetProcAddress(hNtdll, "NtSetEaFile");
7363 pNtQueryEaFile = (PfnNtQueryEaFile)
7364 GetProcAddress(hNtdll, "NtQueryEaFile");
7365 pNtQueryInformationFile = (PfnNtQueryInformationFile)
7366 GetProcAddress(hNtdll, "NtQueryInformationFile");
7367 pRtlInitUnicodeString = (PfnRtlInitUnicodeString)
7368 GetProcAddress(hNtdll, "RtlInitUnicodeString");
7369 }
7370 if (pNtOpenFile == NULL
7371 || pNtClose == NULL
7372 || pNtSetEaFile == NULL
7373 || pNtQueryEaFile == NULL
7374 || pNtQueryInformationFile == NULL
7375 || pRtlInitUnicodeString == NULL)
7376 loaded = FALSE;
7377 else
7378 loaded = TRUE;
7379 }
7380 return (BOOL) loaded;
7381}
7382
7383/*
7384 * Copy extended attributes (EA) from file "from" to file "to".
7385 */
7386 static void
7387copy_extattr(char_u *from, char_u *to)
7388{
7389 char_u *fromf = NULL;
7390 char_u *tof = NULL;
7391 WCHAR *fromw = NULL;
7392 WCHAR *tow = NULL;
7393 UNICODE_STRING u;
7394 HANDLE h;
7395 OBJECT_ATTRIBUTES oa;
7396 IO_STATUS_BLOCK iosb;
7397 FILE_EA_INFORMATION_ eainfo = {0};
7398 void *ea = NULL;
7399
7400 if (!load_ntdll())
7401 return;
7402
7403 // Convert the file names to the fully qualified object names.
7404 fromf = alloc(STRLEN(from) + 5);
7405 tof = alloc(STRLEN(to) + 5);
7406 if (fromf == NULL || tof == NULL)
7407 goto theend;
7408 STRCPY(fromf, "\\??\\");
7409 STRCAT(fromf, from);
7410 STRCPY(tof, "\\??\\");
7411 STRCAT(tof, to);
7412
7413 // Convert the names to wide characters.
7414 fromw = enc_to_utf16(fromf, NULL);
7415 tow = enc_to_utf16(tof, NULL);
7416 if (fromw == NULL || tow == NULL)
7417 goto theend;
7418
7419 // Get the EA.
7420 pRtlInitUnicodeString(&u, fromw);
7421 InitializeObjectAttributes(&oa, &u, 0, NULL, NULL);
7422 if (pNtOpenFile(&h, FILE_READ_EA, &oa, &iosb, 0,
7423 FILE_NON_DIRECTORY_FILE) != STATUS_SUCCESS)
7424 goto theend;
7425 pNtQueryInformationFile(h, &iosb, &eainfo, sizeof(eainfo),
7426 FileEaInformation);
7427 if (eainfo.EaSize != 0)
7428 {
7429 ea = alloc(eainfo.EaSize);
7430 if (ea != NULL)
7431 {
7432 if (pNtQueryEaFile(h, &iosb, ea, eainfo.EaSize, FALSE,
7433 NULL, 0, NULL, TRUE) != STATUS_SUCCESS)
7434 {
7435 vim_free(ea);
7436 ea = NULL;
7437 }
7438 }
7439 }
7440 pNtClose(h);
7441
7442 // Set the EA.
7443 if (ea != NULL)
7444 {
7445 pRtlInitUnicodeString(&u, tow);
7446 InitializeObjectAttributes(&oa, &u, 0, NULL, NULL);
7447 if (pNtOpenFile(&h, FILE_WRITE_EA, &oa, &iosb, 0,
7448 FILE_NON_DIRECTORY_FILE) != STATUS_SUCCESS)
7449 goto theend;
7450
7451 pNtSetEaFile(h, &iosb, ea, eainfo.EaSize);
7452 pNtClose(h);
7453 }
7454
7455theend:
7456 vim_free(fromf);
7457 vim_free(tof);
7458 vim_free(fromw);
7459 vim_free(tow);
7460 vim_free(ea);
7461}
7462
7463/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007464 * Copy file attributes from file "from" to file "to".
7465 * For Windows NT and later we copy info streams.
7466 * Always returns zero, errors are ignored.
7467 */
7468 int
7469mch_copy_file_attribute(char_u *from, char_u *to)
7470{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007471 // File streams only work on Windows NT and later.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007472 copy_infostreams(from, to);
Bram Moolenaare7bebc42021-02-01 20:50:37 +01007473 copy_extattr(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 return 0;
7475}
7476
7477#if defined(MYRESETSTKOFLW) || defined(PROTO)
7478/*
7479 * Recreate a destroyed stack guard page in win32.
7480 * Written by Benjamin Peterson.
7481 */
7482
Bram Moolenaar0f873732019-12-05 20:28:46 +01007483// These magic numbers are from the MS header files
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007484# define MIN_STACK_WINNT 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485
7486/*
7487 * This function does the same thing as _resetstkoflw(), which is only
7488 * available in DevStudio .net and later.
7489 * Returns 0 for failure, 1 for success.
7490 */
7491 int
7492myresetstkoflw(void)
7493{
7494 BYTE *pStackPtr;
7495 BYTE *pGuardPage;
7496 BYTE *pStackBase;
7497 BYTE *pLowestPossiblePage;
7498 MEMORY_BASIC_INFORMATION mbi;
7499 SYSTEM_INFO si;
7500 DWORD nPageSize;
7501 DWORD dummy;
7502
Bram Moolenaar0f873732019-12-05 20:28:46 +01007503 // We need to know the system page size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007504 GetSystemInfo(&si);
7505 nPageSize = si.dwPageSize;
7506
Bram Moolenaar0f873732019-12-05 20:28:46 +01007507 // ...and the current stack pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +00007508 pStackPtr = (BYTE*)_alloca(1);
7509
Bram Moolenaar0f873732019-12-05 20:28:46 +01007510 // ...and the base of the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007511 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
7512 return 0;
7513 pStackBase = (BYTE*)mbi.AllocationBase;
7514
Bram Moolenaar4b96df52020-01-26 22:00:26 +01007515 // ...and the page that's min_stack_req pages away from stack base; this is
Bram Moolenaar0f873732019-12-05 20:28:46 +01007516 // the lowest page we could use.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007517 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007518
Bram Moolenaar071d4272004-06-13 20:20:40 +00007519 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007520 // We want the first committed page in the stack Start at the stack
7521 // base and move forward through memory until we find a committed block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007522 BYTE *pBlock = pStackBase;
7523
Bram Moolenaara466c992005-07-09 21:03:22 +00007524 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007525 {
7526 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
7527 return 0;
7528
7529 pBlock += mbi.RegionSize;
7530
7531 if (mbi.State & MEM_COMMIT)
7532 break;
7533 }
7534
Bram Moolenaar0f873732019-12-05 20:28:46 +01007535 // mbi now describes the first committed block in the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007536 if (mbi.Protect & PAGE_GUARD)
7537 return 1;
7538
Bram Moolenaar0f873732019-12-05 20:28:46 +01007539 // decide where the guard page should start
Bram Moolenaar071d4272004-06-13 20:20:40 +00007540 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
7541 pGuardPage = pLowestPossiblePage;
7542 else
7543 pGuardPage = (BYTE*)mbi.BaseAddress;
7544
Bram Moolenaar0f873732019-12-05 20:28:46 +01007545 // allocate the guard page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007546 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
7547 return 0;
7548
Bram Moolenaar0f873732019-12-05 20:28:46 +01007549 // apply the guard attribute to the page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007550 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
7551 &dummy))
7552 return 0;
7553 }
7554
7555 return 1;
7556}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007557#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007559
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007560/*
7561 * The command line arguments in UCS2
7562 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007563static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007564static LPWSTR *ArglistW = NULL;
7565static int global_argc = 0;
7566static char **global_argv;
7567
Bram Moolenaar0f873732019-12-05 20:28:46 +01007568static int used_file_argc = 0; // last argument in global_argv[] used
7569 // for the argument list.
7570static int *used_file_indexes = NULL; // indexes in global_argv[] for
7571 // command line arguments added to
7572 // the argument list
7573static int used_file_count = 0; // nr of entries in used_file_indexes
7574static int used_file_literal = FALSE; // take file names literally
7575static int used_file_full_path = FALSE; // file name was full path
7576static int used_file_diff_mode = FALSE; // file name was with diff mode
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007577static int used_alist_count = 0;
7578
7579
7580/*
7581 * Get the command line arguments. Unicode version.
7582 * Returns argc. Zero when something fails.
7583 */
7584 int
7585get_cmd_argsW(char ***argvp)
7586{
7587 char **argv = NULL;
7588 int argc = 0;
7589 int i;
7590
Bram Moolenaar14993322014-09-09 12:25:33 +02007591 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007592 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
7593 if (ArglistW != NULL)
7594 {
7595 argv = malloc((nArgsW + 1) * sizeof(char *));
7596 if (argv != NULL)
7597 {
7598 argc = nArgsW;
7599 argv[argc] = NULL;
7600 for (i = 0; i < argc; ++i)
7601 {
7602 int len;
7603
Bram Moolenaar0f873732019-12-05 20:28:46 +01007604 // Convert each Unicode argument to the current codepage.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007605 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007606 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007607 (LPSTR *)&argv[i], &len, 0, 0);
7608 if (argv[i] == NULL)
7609 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007610 // Out of memory, clear everything.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007611 while (i > 0)
7612 free(argv[--i]);
7613 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01007614 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007615 argc = 0;
7616 }
7617 }
7618 }
7619 }
7620
7621 global_argc = argc;
7622 global_argv = argv;
7623 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02007624 {
7625 if (used_file_indexes != NULL)
7626 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007627 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02007628 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007629
7630 if (argvp != NULL)
7631 *argvp = argv;
7632 return argc;
7633}
7634
7635 void
7636free_cmd_argsW(void)
7637{
7638 if (ArglistW != NULL)
7639 {
7640 GlobalFree(ArglistW);
7641 ArglistW = NULL;
7642 }
7643}
7644
7645/*
7646 * Remember "name" is an argument that was added to the argument list.
7647 * This avoids that we have to re-parse the argument list when fix_arg_enc()
7648 * is called.
7649 */
7650 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007651used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007652{
7653 int i;
7654
7655 if (used_file_indexes == NULL)
7656 return;
7657 for (i = used_file_argc + 1; i < global_argc; ++i)
7658 if (STRCMP(global_argv[i], name) == 0)
7659 {
7660 used_file_argc = i;
7661 used_file_indexes[used_file_count++] = i;
7662 break;
7663 }
7664 used_file_literal = literal;
7665 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007666 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007667}
7668
7669/*
7670 * Remember the length of the argument list as it was. If it changes then we
7671 * leave it alone when 'encoding' is set.
7672 */
7673 void
7674set_alist_count(void)
7675{
7676 used_alist_count = GARGCOUNT;
7677}
7678
7679/*
7680 * Fix the encoding of the command line arguments. Invoked when 'encoding'
7681 * has been changed while starting up. Use the UCS-2 command line arguments
7682 * and convert them to 'encoding'.
7683 */
7684 void
7685fix_arg_enc(void)
7686{
7687 int i;
7688 int idx;
7689 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007690 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007691
Bram Moolenaar0f873732019-12-05 20:28:46 +01007692 // Safety checks:
7693 // - if argument count differs between the wide and non-wide argument
7694 // list, something must be wrong.
7695 // - the file name arguments must have been located.
7696 // - the length of the argument list wasn't changed by the user.
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007697 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007698 || ArglistW == NULL
7699 || used_file_indexes == NULL
7700 || used_file_count == 0
7701 || used_alist_count != GARGCOUNT)
7702 return;
7703
Bram Moolenaar0f873732019-12-05 20:28:46 +01007704 // Remember the buffer numbers for the arguments.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02007705 fnum_list = ALLOC_MULT(int, GARGCOUNT);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007706 if (fnum_list == NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007707 return; // out of memory
Bram Moolenaar86b68352004-12-27 21:59:20 +00007708 for (i = 0; i < GARGCOUNT; ++i)
7709 fnum_list[i] = GARGLIST[i].ae_fnum;
7710
Bram Moolenaar0f873732019-12-05 20:28:46 +01007711 // Clear the argument list. Make room for the new arguments.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007712 alist_clear(&global_alist);
7713 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007714 return; // out of memory
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007715
7716 for (i = 0; i < used_file_count; ++i)
7717 {
7718 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007719 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007720 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007721 {
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007722 int literal = used_file_literal;
7723
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007724#ifdef FEAT_DIFF
Bram Moolenaar0f873732019-12-05 20:28:46 +01007725 // When using diff mode may need to concatenate file name to
7726 // directory name. Just like it's done in main().
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007727 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
7728 && !mch_isdir(alist_name(&GARGLIST[0])))
7729 {
7730 char_u *r;
7731
7732 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
7733 if (r != NULL)
7734 {
7735 vim_free(str);
7736 str = r;
7737 }
7738 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007739#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007740 // Re-use the old buffer by renaming it. When not using literal
7741 // names it's done by alist_expand() below.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007742 if (used_file_literal)
7743 buf_set_name(fnum_list[i], str);
7744
Bram Moolenaar0f873732019-12-05 20:28:46 +01007745 // Check backtick literal. backtick literal is already expanded in
7746 // main.c, so this part add str as literal.
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007747 if (literal == FALSE)
7748 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02007749 size_t len = STRLEN(str);
7750
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007751 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
7752 literal = TRUE;
7753 }
7754 alist_add(&global_alist, str, literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007755 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007756 }
7757
7758 if (!used_file_literal)
7759 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007760 // Now expand wildcards in the arguments.
7761 // Temporarily add '(' and ')' to 'isfname'. These are valid
7762 // filename characters but are excluded from 'isfname' to make
7763 // "gf" work on a file name in parenthesis (e.g.: see vim.h).
7764 // Also, unset wildignore to not be influenced by this option.
7765 // The arguments specified in command-line should be kept even if
7766 // encoding options were changed.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007767 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007768 do_cmdline_cmd((char_u *)":let SaVe_WIG = &wig|set wig=");
Bram Moolenaar86b68352004-12-27 21:59:20 +00007769 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007770 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007771 do_cmdline_cmd((char_u *)":let &wig = SaVe_WIG|unlet SaVe_WIG");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007772 }
7773
Bram Moolenaar0f873732019-12-05 20:28:46 +01007774 // If wildcard expansion failed, we are editing the first file of the
7775 // arglist and there is no file name: Edit the first argument now.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007776 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7777 {
7778 do_cmdline_cmd((char_u *)":rewind");
7779 if (GARGCOUNT == 1 && used_file_full_path)
Bram Moolenaarb7407d32018-02-03 17:36:27 +01007780 (void)vim_chdirfile(alist_name(&GARGLIST[0]), "drop");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007781 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007782
7783 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007784}
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007785
7786 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02007787mch_setenv(char *var, char *value, int x UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007788{
7789 char_u *envbuf;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007790 WCHAR *p;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007791
Bram Moolenaar964b3742019-05-24 18:54:09 +02007792 envbuf = alloc(STRLEN(var) + STRLEN(value) + 2);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007793 if (envbuf == NULL)
7794 return -1;
7795
7796 sprintf((char *)envbuf, "%s=%s", var, value);
7797
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007798 p = enc_to_utf16(envbuf, NULL);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007799
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007800 vim_free(envbuf);
7801 if (p == NULL)
7802 return -1;
7803 _wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007804#ifdef libintl_wputenv
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007805 libintl_wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007806#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007807 // Unlike Un*x systems, we can free the string for _wputenv().
7808 vim_free(p);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007809
7810 return 0;
7811}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007812
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007813/*
7814 * Support for 256 colors and 24-bit colors was added in Windows 10
7815 * version 1703 (Creators update).
7816 */
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007817#define VTP_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 15063)
7818
7819/*
7820 * Support for pseudo-console (ConPTY) was added in windows 10
Bram Moolenaar57da6982019-09-13 22:30:11 +02007821 * version 1809 (October 2018 update).
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007822 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007823#define CONPTY_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 17763)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007824
7825/*
7826 * ConPTY differences between versions, need different logic.
7827 * version 1903 (May 2019 update).
7828 */
7829#define CONPTY_1903_BUILD MAKE_VER(10, 0, 18362)
7830
7831/*
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007832 * version 1909 (November 2019 update).
7833 */
7834#define CONPTY_1909_BUILD MAKE_VER(10, 0, 18363)
7835
7836/*
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007837 * Stay ahead of the next update, and when it's done, fix this.
7838 * version ? (2020 update, temporarily use the build number of insider preview)
7839 */
7840#define CONPTY_NEXT_UPDATE_BUILD MAKE_VER(10, 0, 19587)
7841
7842/*
Bram Moolenaar57da6982019-09-13 22:30:11 +02007843 * Confirm until this version. Also the logic changes.
7844 * insider preview.
7845 */
Bram Moolenaar4c063dd2019-10-04 21:29:12 +02007846#define CONPTY_INSIDER_BUILD MAKE_VER(10, 0, 18995)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007847
7848/*
7849 * Not stable now.
7850 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007851#define CONPTY_STABLE_BUILD MAKE_VER(10, 0, 32767) // T.B.D.
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007852
7853 static void
7854vtp_flag_init(void)
7855{
7856 DWORD ver = get_build_number();
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007857#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007858 DWORD mode;
7859 HANDLE out;
7860
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007861# ifdef VIMDLL
7862 if (!gui.in_use)
7863# endif
7864 {
7865 out = GetStdHandle(STD_OUTPUT_HANDLE);
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007866
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007867 vtp_working = (ver >= VTP_FIRST_SUPPORT_BUILD) ? 1 : 0;
7868 GetConsoleMode(out, &mode);
7869 mode |= (ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
7870 if (SetConsoleMode(out, mode) == 0)
7871 vtp_working = 0;
7872 }
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007873#endif
7874
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007875 if (ver >= CONPTY_FIRST_SUPPORT_BUILD)
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007876 conpty_working = 1;
7877 if (ver >= CONPTY_STABLE_BUILD)
7878 conpty_stable = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007879
Bram Moolenaar57da6982019-09-13 22:30:11 +02007880 if (ver <= CONPTY_INSIDER_BUILD)
7881 conpty_type = 3;
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007882 if (ver <= CONPTY_1909_BUILD)
7883 conpty_type = 2;
Bram Moolenaar57da6982019-09-13 22:30:11 +02007884 if (ver <= CONPTY_1903_BUILD)
7885 conpty_type = 2;
7886 if (ver < CONPTY_FIRST_SUPPORT_BUILD)
7887 conpty_type = 1;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007888
7889 if (ver >= CONPTY_NEXT_UPDATE_BUILD)
7890 conpty_fix_type = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007891}
7892
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007893#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007894
7895 static void
7896vtp_init(void)
7897{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007898 HMODULE hKerneldll;
7899 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007900# ifdef FEAT_TERMGUICOLORS
7901 COLORREF fg, bg;
7902# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007903
Bram Moolenaar0f873732019-12-05 20:28:46 +01007904 // Use functions supported from Vista
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007905 hKerneldll = GetModuleHandle("kernel32.dll");
7906 if (hKerneldll != NULL)
7907 {
7908 pGetConsoleScreenBufferInfoEx =
7909 (PfnGetConsoleScreenBufferInfoEx)GetProcAddress(
7910 hKerneldll, "GetConsoleScreenBufferInfoEx");
7911 pSetConsoleScreenBufferInfoEx =
7912 (PfnSetConsoleScreenBufferInfoEx)GetProcAddress(
7913 hKerneldll, "SetConsoleScreenBufferInfoEx");
7914 if (pGetConsoleScreenBufferInfoEx != NULL
7915 && pSetConsoleScreenBufferInfoEx != NULL)
7916 has_csbiex = TRUE;
7917 }
7918
7919 csbi.cbSize = sizeof(csbi);
7920 if (has_csbiex)
7921 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007922 save_console_bg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_bg];
7923 save_console_fg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_fg];
Bram Moolenaardf543822020-01-30 11:53:59 +01007924 store_console_bg_rgb = save_console_bg_rgb;
7925 store_console_fg_rgb = save_console_fg_rgb;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007926
7927# ifdef FEAT_TERMGUICOLORS
7928 bg = (COLORREF)csbi.ColorTable[g_color_index_bg];
7929 fg = (COLORREF)csbi.ColorTable[g_color_index_fg];
7930 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7931 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7932 default_console_color_bg = bg;
7933 default_console_color_fg = fg;
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007934# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007935
7936 set_console_color_rgb();
7937}
7938
7939 static void
7940vtp_exit(void)
7941{
Bram Moolenaardf543822020-01-30 11:53:59 +01007942 restore_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007943}
7944
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007945 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007946vtp_printf(
7947 char *format,
7948 ...)
7949{
7950 char_u buf[100];
7951 va_list list;
7952 DWORD result;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007953 int len;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007954
7955 va_start(list, format);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007956 len = vim_vsnprintf((char *)buf, 100, (char *)format, list);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007957 va_end(list);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007958 WriteConsoleA(g_hConOut, buf, (DWORD)len, &result, NULL);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007959 return (int)result;
7960}
7961
7962 static void
7963vtp_sgr_bulk(
7964 int arg)
7965{
7966 int args[1];
7967
7968 args[0] = arg;
7969 vtp_sgr_bulks(1, args);
7970}
7971
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007972#define FAST256(x) \
7973 if ((*p-- = "0123456789"[(n = x % 10)]) \
7974 && x >= 10 && (*p-- = "0123456789"[((m = x % 100) - n) / 10]) \
7975 && x >= 100 && (*p-- = "012"[((x & 0xff) - m) / 100]));
7976
7977#define FAST256CASE(x) \
7978 case x: \
7979 FAST256(newargs[x - 1]);
7980
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007981 static void
7982vtp_sgr_bulks(
7983 int argc,
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007984 int *args)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007985{
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007986#define MAXSGR 16
7987#define SGRBUFSIZE 2 + 4 * MAXSGR + 1 // '\033[' + SGR + 'm'
7988 char_u buf[SGRBUFSIZE];
7989 char_u *p;
7990 int in, out;
7991 int newargs[16];
7992 static int sgrfgr = -1, sgrfgg, sgrfgb;
7993 static int sgrbgr = -1, sgrbgg, sgrbgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007994
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007995 if (argc == 0)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007996 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007997 sgrfgr = sgrbgr = -1;
7998 vtp_printf("033[m");
7999 return;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008000 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02008001
8002 in = out = 0;
8003 while (in < argc)
8004 {
8005 int s = args[in];
8006 int copylen = 1;
8007
8008 if (s == 38)
8009 {
8010 if (argc - in >= 5 && args[in + 1] == 2)
8011 {
8012 if (sgrfgr == args[in + 2] && sgrfgg == args[in + 3]
8013 && sgrfgb == args[in + 4])
8014 {
8015 in += 5;
8016 copylen = 0;
8017 }
8018 else
8019 {
8020 sgrfgr = args[in + 2];
8021 sgrfgg = args[in + 3];
8022 sgrfgb = args[in + 4];
8023 copylen = 5;
8024 }
8025 }
8026 else if (argc - in >= 3 && args[in + 1] == 5)
8027 {
8028 sgrfgr = -1;
8029 copylen = 3;
8030 }
8031 }
8032 else if (s == 48)
8033 {
8034 if (argc - in >= 5 && args[in + 1] == 2)
8035 {
8036 if (sgrbgr == args[in + 2] && sgrbgg == args[in + 3]
8037 && sgrbgb == args[in + 4])
8038 {
8039 in += 5;
8040 copylen = 0;
8041 }
8042 else
8043 {
8044 sgrbgr = args[in + 2];
8045 sgrbgg = args[in + 3];
8046 sgrbgb = args[in + 4];
8047 copylen = 5;
8048 }
8049 }
8050 else if (argc - in >= 3 && args[in + 1] == 5)
8051 {
8052 sgrbgr = -1;
8053 copylen = 3;
8054 }
8055 }
8056 else if (30 <= s && s <= 39)
8057 sgrfgr = -1;
8058 else if (90 <= s && s <= 97)
8059 sgrfgr = -1;
8060 else if (40 <= s && s <= 49)
8061 sgrbgr = -1;
8062 else if (100 <= s && s <= 107)
8063 sgrbgr = -1;
8064 else if (s == 0)
8065 sgrfgr = sgrbgr = -1;
8066
8067 while (copylen--)
8068 newargs[out++] = args[in++];
8069 }
8070
8071 p = &buf[sizeof(buf) - 1];
8072 *p-- = 'm';
8073
8074 switch (out)
8075 {
8076 int n, m;
8077 DWORD r;
8078
8079 FAST256CASE(16);
8080 *p-- = ';';
8081 FAST256CASE(15);
8082 *p-- = ';';
8083 FAST256CASE(14);
8084 *p-- = ';';
8085 FAST256CASE(13);
8086 *p-- = ';';
8087 FAST256CASE(12);
8088 *p-- = ';';
8089 FAST256CASE(11);
8090 *p-- = ';';
8091 FAST256CASE(10);
8092 *p-- = ';';
8093 FAST256CASE(9);
8094 *p-- = ';';
8095 FAST256CASE(8);
8096 *p-- = ';';
8097 FAST256CASE(7);
8098 *p-- = ';';
8099 FAST256CASE(6);
8100 *p-- = ';';
8101 FAST256CASE(5);
8102 *p-- = ';';
8103 FAST256CASE(4);
8104 *p-- = ';';
8105 FAST256CASE(3);
8106 *p-- = ';';
8107 FAST256CASE(2);
8108 *p-- = ';';
8109 FAST256CASE(1);
8110 *p-- = '[';
8111 *p = '\033';
8112 WriteConsoleA(g_hConOut, p, (DWORD)(&buf[SGRBUFSIZE] - p), &r, NULL);
8113 default:
8114 break;
8115 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008116}
8117
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008118 static void
8119wt_init(void)
8120{
8121 wt_working = (mch_getenv("WT_SESSION") != NULL);
8122}
8123
8124 int
8125use_wt(void)
8126{
8127 return USE_WT;
8128}
8129
Bram Moolenaar8a938af2018-05-01 17:30:41 +02008130# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008131 static int
8132ctermtoxterm(
8133 int cterm)
8134{
Bram Moolenaar9894e392018-05-05 14:29:06 +02008135 char_u r, g, b, idx;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008136
8137 cterm_color2rgb(cterm, &r, &g, &b, &idx);
8138 return (((int)r << 16) | ((int)g << 8) | (int)b);
8139}
Bram Moolenaar8a938af2018-05-01 17:30:41 +02008140# endif
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008141
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008142 static void
8143set_console_color_rgb(void)
8144{
8145# ifdef FEAT_TERMGUICOLORS
8146 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaara050b942019-12-02 21:35:31 +01008147 guicolor_T fg, bg;
8148 int ctermfg, ctermbg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008149
8150 if (!USE_VTP)
8151 return;
8152
Bram Moolenaara050b942019-12-02 21:35:31 +01008153 get_default_console_color(&ctermfg, &ctermbg, &fg, &bg);
8154
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008155 if (USE_WT)
8156 {
8157 term_fg_rgb_color(fg);
8158 term_bg_rgb_color(bg);
8159 return;
8160 }
8161
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008162 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
8163 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
8164
8165 csbi.cbSize = sizeof(csbi);
8166 if (has_csbiex)
8167 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8168
8169 csbi.cbSize = sizeof(csbi);
8170 csbi.srWindow.Right += 1;
8171 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01008172 store_console_bg_rgb = csbi.ColorTable[g_color_index_bg];
8173 store_console_fg_rgb = csbi.ColorTable[g_color_index_fg];
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02008174 csbi.ColorTable[g_color_index_bg] = (COLORREF)bg;
8175 csbi.ColorTable[g_color_index_fg] = (COLORREF)fg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008176 if (has_csbiex)
8177 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8178# endif
8179}
8180
Bram Moolenaara050b942019-12-02 21:35:31 +01008181# if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
8182 void
8183get_default_console_color(
8184 int *cterm_fg,
8185 int *cterm_bg,
8186 guicolor_T *gui_fg,
8187 guicolor_T *gui_bg)
8188{
8189 int id;
8190 guicolor_T guifg = INVALCOLOR;
8191 guicolor_T guibg = INVALCOLOR;
8192 int ctermfg = 0;
8193 int ctermbg = 0;
8194
8195 id = syn_name2id((char_u *)"Normal");
8196 if (id > 0 && p_tgc)
8197 syn_id2colors(id, &guifg, &guibg);
8198 if (guifg == INVALCOLOR)
8199 {
8200 ctermfg = -1;
8201 if (id > 0)
8202 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
8203 guifg = ctermfg != -1 ? ctermtoxterm(ctermfg)
8204 : default_console_color_fg;
8205 cterm_normal_fg_gui_color = guifg;
8206 ctermfg = ctermfg < 0 ? 0 : ctermfg;
8207 }
8208 if (guibg == INVALCOLOR)
8209 {
8210 ctermbg = -1;
8211 if (id > 0)
8212 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
8213 guibg = ctermbg != -1 ? ctermtoxterm(ctermbg)
8214 : default_console_color_bg;
8215 cterm_normal_bg_gui_color = guibg;
8216 ctermbg = ctermbg < 0 ? 0 : ctermbg;
8217 }
8218
8219 *cterm_fg = ctermfg;
8220 *cterm_bg = ctermbg;
8221 *gui_fg = guifg;
8222 *gui_bg = guibg;
8223}
8224# endif
8225
Bram Moolenaardf543822020-01-30 11:53:59 +01008226/*
8227 * Set the console colors to the original colors or the last set colors.
8228 */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008229 static void
8230reset_console_color_rgb(void)
8231{
8232# ifdef FEAT_TERMGUICOLORS
8233 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8234
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008235 if (USE_WT)
8236 return;
8237
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008238 csbi.cbSize = sizeof(csbi);
8239 if (has_csbiex)
8240 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8241
8242 csbi.cbSize = sizeof(csbi);
8243 csbi.srWindow.Right += 1;
8244 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01008245 csbi.ColorTable[g_color_index_bg] = (COLORREF)store_console_bg_rgb;
8246 csbi.ColorTable[g_color_index_fg] = (COLORREF)store_console_fg_rgb;
8247 if (has_csbiex)
8248 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8249# endif
8250}
8251
8252/*
8253 * Set the console colors to the original colors.
8254 */
8255 static void
8256restore_console_color_rgb(void)
8257{
8258# ifdef FEAT_TERMGUICOLORS
8259 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8260
8261 csbi.cbSize = sizeof(csbi);
8262 if (has_csbiex)
8263 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8264
8265 csbi.cbSize = sizeof(csbi);
8266 csbi.srWindow.Right += 1;
8267 csbi.srWindow.Bottom += 1;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02008268 csbi.ColorTable[g_color_index_bg] = (COLORREF)save_console_bg_rgb;
8269 csbi.ColorTable[g_color_index_fg] = (COLORREF)save_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008270 if (has_csbiex)
8271 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8272# endif
8273}
8274
8275 void
8276control_console_color_rgb(void)
8277{
8278 if (USE_VTP)
8279 set_console_color_rgb();
8280 else
8281 reset_console_color_rgb();
8282}
8283
8284 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008285use_vtp(void)
8286{
8287 return USE_VTP;
8288}
8289
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008290 int
8291is_term_win32(void)
8292{
8293 return T_NAME != NULL && STRCMP(T_NAME, "win32") == 0;
8294}
8295
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01008296 int
8297has_vtp_working(void)
8298{
8299 return vtp_working;
8300}
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008301
Bram Moolenaar6902c0e2019-02-16 14:07:37 +01008302#endif
8303
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008304 int
8305has_conpty_working(void)
8306{
8307 return conpty_working;
8308}
8309
8310 int
Bram Moolenaar57da6982019-09-13 22:30:11 +02008311get_conpty_type(void)
8312{
8313 return conpty_type;
8314}
8315
8316 int
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008317is_conpty_stable(void)
8318{
8319 return conpty_stable;
8320}
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008321
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02008322 int
8323get_conpty_fix_type(void)
8324{
8325 return conpty_fix_type;
8326}
8327
Bram Moolenaarafde13b2019-04-28 19:46:49 +02008328#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008329 void
8330resize_console_buf(void)
8331{
8332 CONSOLE_SCREEN_BUFFER_INFO csbi;
8333 COORD coord;
8334 SMALL_RECT newsize;
8335
8336 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
8337 {
8338 coord.X = SRWIDTH(csbi.srWindow);
8339 coord.Y = SRHEIGHT(csbi.srWindow);
8340 SetConsoleScreenBufferSize(g_hConOut, coord);
8341
8342 newsize.Left = 0;
8343 newsize.Top = 0;
8344 newsize.Right = coord.X - 1;
8345 newsize.Bottom = coord.Y - 1;
8346 SetConsoleWindowInfo(g_hConOut, TRUE, &newsize);
8347
8348 SetConsoleScreenBufferSize(g_hConOut, coord);
8349 }
8350}
8351#endif