blob: 52573fe621cdc3cabb322ca2de6a5ab9f9219c0e [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * os_win32.c
11 *
12 * Used for both the console version and the Win32 GUI. A lot of code is for
Bram Moolenaar4f974752019-02-17 17:44:42 +010013 * the console version only, so there is a lot of "#ifndef FEAT_GUI_MSWIN".
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * Win32 (Windows NT and Windows 95) system-dependent routines.
16 * Portions lifted from the Win32 SDK samples, the MSDOS-dependent code,
17 * NetHack 3.1.3, GNU Emacs 19.30, and Vile 5.5.
18 *
19 * George V. Reilly <george@reilly.org> wrote most of this.
20 * Roger Knobbe <rogerk@wonderware.com> did the initial port of Vim 3.0.
21 */
22
Bram Moolenaar071d4272004-06-13 20:20:40 +000023#include "vim.h"
24
Bram Moolenaar325b7a22004-07-05 15:58:32 +000025#ifdef FEAT_MZSCHEME
26# include "if_mzsch.h"
27#endif
28
Bram Moolenaar071d4272004-06-13 20:20:40 +000029#include <sys/types.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000030#include <signal.h>
31#include <limits.h>
Bram Moolenaar82881492012-11-20 16:53:39 +010032
Bram Moolenaar0f873732019-12-05 20:28:46 +010033// cproto fails on missing include files
Bram Moolenaar82881492012-11-20 16:53:39 +010034#ifndef PROTO
35# include <process.h>
36#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000037
38#undef chdir
39#ifdef __GNUC__
40# ifndef __MINGW32__
41# include <dirent.h>
42# endif
43#else
44# include <direct.h>
45#endif
46
Bram Moolenaar82881492012-11-20 16:53:39 +010047#ifndef PROTO
Bram Moolenaar4f974752019-02-17 17:44:42 +010048# if defined(FEAT_TITLE) && !defined(FEAT_GUI_MSWIN)
Bram Moolenaar82881492012-11-20 16:53:39 +010049# include <shellapi.h>
50# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000051#endif
52
Bram Moolenaarfb630902016-10-29 14:55:00 +020053#ifdef FEAT_JOB_CHANNEL
54# include <tlhelp32.h>
55#endif
56
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#ifdef __MINGW32__
58# ifndef FROM_LEFT_1ST_BUTTON_PRESSED
59# define FROM_LEFT_1ST_BUTTON_PRESSED 0x0001
60# endif
61# ifndef RIGHTMOST_BUTTON_PRESSED
62# define RIGHTMOST_BUTTON_PRESSED 0x0002
63# endif
64# ifndef FROM_LEFT_2ND_BUTTON_PRESSED
65# define FROM_LEFT_2ND_BUTTON_PRESSED 0x0004
66# endif
67# ifndef FROM_LEFT_3RD_BUTTON_PRESSED
68# define FROM_LEFT_3RD_BUTTON_PRESSED 0x0008
69# endif
70# ifndef FROM_LEFT_4TH_BUTTON_PRESSED
71# define FROM_LEFT_4TH_BUTTON_PRESSED 0x0010
72# endif
73
74/*
75 * EventFlags
76 */
77# ifndef MOUSE_MOVED
78# define MOUSE_MOVED 0x0001
79# endif
80# ifndef DOUBLE_CLICK
81# define DOUBLE_CLICK 0x0002
82# endif
83#endif
84
Bram Moolenaar0f873732019-12-05 20:28:46 +010085// Record all output and all keyboard & mouse input
86// #define MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +000087
88#ifdef MCH_WRITE_DUMP
89FILE* fdDump = NULL;
90#endif
91
92/*
93 * When generating prototypes for Win32 on Unix, these lines make the syntax
94 * errors disappear. They do not need to be correct.
95 */
96#ifdef PROTO
Bram Moolenaar912bc4a2019-12-01 18:58:11 +010097# define WINAPI
Bram Moolenaar071d4272004-06-13 20:20:40 +000098typedef char * LPCSTR;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000099typedef char * LPWSTR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100typedef int ACCESS_MASK;
101typedef int BOOL;
102typedef int COLORREF;
103typedef int CONSOLE_CURSOR_INFO;
104typedef int COORD;
105typedef int DWORD;
106typedef int HANDLE;
Bram Moolenaaref269542016-01-19 13:22:12 +0100107typedef int LPHANDLE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108typedef int HDC;
109typedef int HFONT;
110typedef int HICON;
111typedef int HINSTANCE;
112typedef int HWND;
113typedef int INPUT_RECORD;
Bram Moolenaare0ab9792017-08-02 23:18:25 +0200114typedef int INT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115typedef int KEY_EVENT_RECORD;
116typedef int LOGFONT;
117typedef int LPBOOL;
118typedef int LPCTSTR;
119typedef int LPDWORD;
120typedef int LPSTR;
121typedef int LPTSTR;
122typedef int LPVOID;
123typedef int MOUSE_EVENT_RECORD;
124typedef int PACL;
125typedef int PDWORD;
126typedef int PHANDLE;
127typedef int PRINTDLG;
128typedef int PSECURITY_DESCRIPTOR;
129typedef int PSID;
130typedef int SECURITY_INFORMATION;
131typedef int SHORT;
132typedef int SMALL_RECT;
133typedef int TEXTMETRIC;
134typedef int TOKEN_INFORMATION_CLASS;
135typedef int TRUSTEE;
136typedef int WORD;
137typedef int WCHAR;
138typedef void VOID;
Bram Moolenaar82881492012-11-20 16:53:39 +0100139typedef int BY_HANDLE_FILE_INFORMATION;
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +0200140typedef int SE_OBJECT_TYPE;
141typedef int PSNSECINFO;
142typedef int PSNSECINFOW;
Bram Moolenaarb8e0bdb2014-11-12 16:10:48 +0100143typedef int STARTUPINFO;
144typedef int PROCESS_INFORMATION;
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200145typedef int LPSECURITY_ATTRIBUTES;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100146# define __stdcall // empty
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147#endif
148
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200149#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100150// Win32 Console handles for input and output
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151static HANDLE g_hConIn = INVALID_HANDLE_VALUE;
152static HANDLE g_hConOut = INVALID_HANDLE_VALUE;
153
Bram Moolenaar0f873732019-12-05 20:28:46 +0100154// Win32 Screen buffer,coordinate,console I/O information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155static SMALL_RECT g_srScrollRegion;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100156static COORD g_coord; // 0-based, but external coords are 1-based
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157
Bram Moolenaar0f873732019-12-05 20:28:46 +0100158// The attribute of the screen when the editor was started
159static WORD g_attrDefault = 7; // lightgray text on black background
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160static WORD g_attrCurrent;
161
Bram Moolenaar0f873732019-12-05 20:28:46 +0100162static int g_fCBrkPressed = FALSE; // set by ctrl-break interrupt
163static int g_fCtrlCPressed = FALSE; // set when ctrl-C or ctrl-break detected
164static int g_fForceExit = FALSE; // set when forcefully exiting
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166static void scroll(unsigned cLines);
167static void set_scroll_region(unsigned left, unsigned top,
168 unsigned right, unsigned bottom);
Bram Moolenaar6982f422019-02-16 16:48:01 +0100169static void set_scroll_region_tb(unsigned top, unsigned bottom);
170static void set_scroll_region_lr(unsigned left, unsigned right);
171static void insert_lines(unsigned cLines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172static void delete_lines(unsigned cLines);
173static void gotoxy(unsigned x, unsigned y);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174static void standout(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175static int s_cursor_visible = TRUE;
176static int did_create_conin = FALSE;
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200177#endif
178#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179static int s_dont_use_vimrun = TRUE;
180static int need_vimrun_warning = FALSE;
181static char *vimrun_path = "vimrun ";
182#endif
183
Bram Moolenaar12b559e2013-06-12 22:41:37 +0200184static int win32_getattrs(char_u *name);
185static int win32_setattrs(char_u *name, int attrs);
186static int win32_set_archive(char_u *name);
187
Bram Moolenaard9ef1b82019-02-13 19:23:10 +0100188static int conpty_working = 0;
Bram Moolenaar57da6982019-09-13 22:30:11 +0200189static int conpty_type = 0;
Bram Moolenaard9ef1b82019-02-13 19:23:10 +0100190static int conpty_stable = 0;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +0200191static int conpty_fix_type = 0;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100192static void vtp_flag_init();
193
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200194#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar6902c0e2019-02-16 14:07:37 +0100195static int vtp_working = 0;
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100196static void vtp_init();
197static void vtp_exit();
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100198static void vtp_sgr_bulk(int arg);
199static void vtp_sgr_bulks(int argc, int *argv);
200
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200201static int wt_working = 0;
202static void wt_init();
203
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100204static guicolor_T save_console_bg_rgb;
205static guicolor_T save_console_fg_rgb;
Bram Moolenaardf543822020-01-30 11:53:59 +0100206static guicolor_T store_console_bg_rgb;
207static guicolor_T store_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100208
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +0200209static int g_color_index_bg = 0;
210static int g_color_index_fg = 7;
211
212# ifdef FEAT_TERMGUICOLORS
213static int default_console_color_bg = 0x000000; // black
214static int default_console_color_fg = 0xc0c0c0; // white
215# endif
216
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100217# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +0200218# define USE_VTP (vtp_working && is_term_win32() && (p_tgc || (!p_tgc && t_colors >= 256)))
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200219# define USE_WT (wt_working)
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100220# else
221# define USE_VTP 0
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200222# define USE_WT 0
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100223# endif
224
225static void set_console_color_rgb(void);
226static void reset_console_color_rgb(void);
Bram Moolenaardf543822020-01-30 11:53:59 +0100227static void restore_console_color_rgb(void);
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100228#endif
229
Bram Moolenaar0f873732019-12-05 20:28:46 +0100230// This flag is newly created from Windows 10
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100231#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
232# define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
233#endif
234
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200235#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100236static int suppress_winsize = 1; // don't fiddle with console
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237#endif
238
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200239static char_u *exe_path = NULL;
240
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100241static BOOL win8_or_later = FALSE;
242
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200243# if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
244# define UChar UnicodeChar
245# else
246# define UChar uChar.UnicodeChar
247# endif
248
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200249#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100250// Dynamic loading for portability
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100251typedef struct _DYN_CONSOLE_SCREEN_BUFFER_INFOEX
252{
253 ULONG cbSize;
254 COORD dwSize;
255 COORD dwCursorPosition;
256 WORD wAttributes;
257 SMALL_RECT srWindow;
258 COORD dwMaximumWindowSize;
259 WORD wPopupAttributes;
260 BOOL bFullscreenSupported;
261 COLORREF ColorTable[16];
262} DYN_CONSOLE_SCREEN_BUFFER_INFOEX, *PDYN_CONSOLE_SCREEN_BUFFER_INFOEX;
263typedef BOOL (WINAPI *PfnGetConsoleScreenBufferInfoEx)(HANDLE, PDYN_CONSOLE_SCREEN_BUFFER_INFOEX);
264static PfnGetConsoleScreenBufferInfoEx pGetConsoleScreenBufferInfoEx;
265typedef BOOL (WINAPI *PfnSetConsoleScreenBufferInfoEx)(HANDLE, PDYN_CONSOLE_SCREEN_BUFFER_INFOEX);
266static PfnSetConsoleScreenBufferInfoEx pSetConsoleScreenBufferInfoEx;
267static BOOL has_csbiex = FALSE;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100268#endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100269
270/*
271 * Get version number including build number
272 */
273typedef BOOL (WINAPI *PfnRtlGetVersion)(LPOSVERSIONINFOW);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100274#define MAKE_VER(major, minor, build) \
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100275 (((major) << 24) | ((minor) << 16) | (build))
276
277 static DWORD
278get_build_number(void)
279{
280 OSVERSIONINFOW osver = {sizeof(OSVERSIONINFOW)};
281 HMODULE hNtdll;
282 PfnRtlGetVersion pRtlGetVersion;
283 DWORD ver = MAKE_VER(0, 0, 0);
284
285 hNtdll = GetModuleHandle("ntdll.dll");
286 if (hNtdll != NULL)
287 {
288 pRtlGetVersion =
289 (PfnRtlGetVersion)GetProcAddress(hNtdll, "RtlGetVersion");
290 pRtlGetVersion(&osver);
291 ver = MAKE_VER(min(osver.dwMajorVersion, 255),
292 min(osver.dwMinorVersion, 255),
293 min(osver.dwBuildNumber, 32767));
294 }
295 return ver;
296}
297
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200298#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200299 static BOOL
300is_ambiwidth_event(
301 INPUT_RECORD *ir)
302{
303 return ir->EventType == KEY_EVENT
304 && ir->Event.KeyEvent.bKeyDown
305 && ir->Event.KeyEvent.wRepeatCount == 1
306 && ir->Event.KeyEvent.wVirtualKeyCode == 0x12
307 && ir->Event.KeyEvent.wVirtualScanCode == 0x38
308 && ir->Event.KeyEvent.UChar == 0
309 && ir->Event.KeyEvent.dwControlKeyState == 2;
310}
311
312 static void
313make_ambiwidth_event(
314 INPUT_RECORD *down,
315 INPUT_RECORD *up)
316{
317 down->Event.KeyEvent.wVirtualKeyCode = 0;
318 down->Event.KeyEvent.wVirtualScanCode = 0;
319 down->Event.KeyEvent.UChar = up->Event.KeyEvent.UChar;
320 down->Event.KeyEvent.dwControlKeyState = 0;
321}
322
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100323/*
324 * Version of ReadConsoleInput() that works with IME.
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100325 * Works around problems on Windows 8.
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100326 */
327 static BOOL
328read_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100329 HANDLE hInput,
330 INPUT_RECORD *lpBuffer,
331 DWORD nLength,
332 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100333{
334 enum
335 {
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100336 IRSIZE = 10
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100337 };
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100338 static INPUT_RECORD s_irCache[IRSIZE];
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100339 static DWORD s_dwIndex = 0;
340 static DWORD s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100341 DWORD dwEvents;
Bram Moolenaardd415a62014-02-05 14:02:27 +0100342 int head;
343 int tail;
344 int i;
Bram Moolenaarbc970da2020-04-26 19:00:07 +0200345 static INPUT_RECORD s_irPseudo;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100346
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200347 if (nLength == -2)
348 return (s_dwMax > 0) ? TRUE : FALSE;
349
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100350 if (!win8_or_later)
351 {
352 if (nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200353 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
354 return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents);
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100355 }
356
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100357 if (s_dwMax == 0)
358 {
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200359 if (!USE_WT && nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200360 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200361 GetNumberOfConsoleInputEvents(hInput, &dwEvents);
362 if (dwEvents == 0 && nLength == -1)
363 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
364 ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents);
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100365 s_dwIndex = 0;
366 s_dwMax = dwEvents;
367 if (dwEvents == 0)
368 {
369 *lpEvents = 0;
370 return TRUE;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100371 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100372
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200373 for (i = s_dwIndex; i < (int)s_dwMax - 1; ++i)
374 if (is_ambiwidth_event(&s_irCache[i]))
375 make_ambiwidth_event(&s_irCache[i], &s_irCache[i + 1]);
376
Bram Moolenaardd415a62014-02-05 14:02:27 +0100377 if (s_dwMax > 1)
378 {
379 head = 0;
380 tail = s_dwMax - 1;
381 while (head != tail)
382 {
383 if (s_irCache[head].EventType == WINDOW_BUFFER_SIZE_EVENT
384 && s_irCache[head + 1].EventType
385 == WINDOW_BUFFER_SIZE_EVENT)
386 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100387 // Remove duplicate event to avoid flicker.
Bram Moolenaardd415a62014-02-05 14:02:27 +0100388 for (i = head; i < tail; ++i)
389 s_irCache[i] = s_irCache[i + 1];
390 --tail;
391 continue;
392 }
393 head++;
394 }
395 s_dwMax = tail + 1;
396 }
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100397 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100398
Bram Moolenaarbc970da2020-04-26 19:00:07 +0200399 if (s_irCache[s_dwIndex].EventType == KEY_EVENT)
400 {
401 if (s_irCache[s_dwIndex].Event.KeyEvent.wRepeatCount > 1)
402 {
403 s_irPseudo = s_irCache[s_dwIndex];
404 s_irPseudo.Event.KeyEvent.wRepeatCount = 1;
405 s_irCache[s_dwIndex].Event.KeyEvent.wRepeatCount--;
406 *lpBuffer = s_irPseudo;
407 *lpEvents = 1;
408 return TRUE;
409 }
410 }
411
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100412 *lpBuffer = s_irCache[s_dwIndex];
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200413 if (!(nLength == -1 || nLength == -2) && ++s_dwIndex >= s_dwMax)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100414 s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100415 *lpEvents = 1;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100416 return TRUE;
417}
418
419/*
420 * Version of PeekConsoleInput() that works with IME.
421 */
422 static BOOL
423peek_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100424 HANDLE hInput,
425 INPUT_RECORD *lpBuffer,
Bram Moolenaarbd67aac2019-09-21 23:09:04 +0200426 DWORD nLength UNUSED,
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100427 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100428{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100429 return read_console_input(hInput, lpBuffer, -1, lpEvents);
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100430}
431
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100432# ifdef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200433 static DWORD
434msg_wait_for_multiple_objects(
435 DWORD nCount,
436 LPHANDLE pHandles,
437 BOOL fWaitAll,
438 DWORD dwMilliseconds,
439 DWORD dwWakeMask)
440{
441 if (read_console_input(NULL, NULL, -2, NULL))
442 return WAIT_OBJECT_0;
443 return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll,
444 dwMilliseconds, dwWakeMask);
445}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100446# endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200447
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100448# ifndef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200449 static DWORD
450wait_for_single_object(
451 HANDLE hHandle,
452 DWORD dwMilliseconds)
453{
454 if (read_console_input(NULL, NULL, -2, NULL))
455 return WAIT_OBJECT_0;
456 return WaitForSingleObject(hHandle, dwMilliseconds);
457}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100458# endif
459#endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200460
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 static void
462get_exe_name(void)
463{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100464 // Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned
465 // as the maximum length that works (plus a NUL byte).
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100466#define MAX_ENV_PATH_LEN 8192
467 char temp[MAX_ENV_PATH_LEN];
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200468 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469
470 if (exe_name == NULL)
471 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100472 // store the name of the executable, may be used for $VIM
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100473 GetModuleFileName(NULL, temp, MAX_ENV_PATH_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 if (*temp != NUL)
475 exe_name = FullName_save((char_u *)temp, FALSE);
476 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000477
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200478 if (exe_path == NULL && exe_name != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000479 {
Bram Moolenaar71ccd032020-06-12 22:59:11 +0200480 exe_path = vim_strnsave(exe_name, gettail_sep(exe_name) - exe_name);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200481 if (exe_path != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000482 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100483 // Append our starting directory to $PATH, so that when doing
484 // "!xxd" it's found in our starting directory. Needed because
485 // SearchPath() also looks there.
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200486 p = mch_getenv("PATH");
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100487 if (p == NULL
488 || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200489 {
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100490 if (p == NULL || *p == NUL)
491 temp[0] = NUL;
492 else
493 {
494 STRCPY(temp, p);
495 STRCAT(temp, ";");
496 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200497 STRCAT(temp, exe_path);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100498 vim_setenv((char_u *)"PATH", (char_u *)temp);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200499 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000500 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000501 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502}
503
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200504/*
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100505 * Unescape characters in "p" that appear in "escaped".
506 */
507 static void
508unescape_shellxquote(char_u *p, char_u *escaped)
509{
Bram Moolenaar4336cdf2012-02-29 13:58:47 +0100510 int l = (int)STRLEN(p);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100511 int n;
512
513 while (*p != NUL)
514 {
515 if (*p == '^' && vim_strchr(escaped, p[1]) != NULL)
516 mch_memmove(p, p + 1, l--);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100517 n = (*mb_ptr2len)(p);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100518 p += n;
519 l -= n;
520 }
521}
522
523/*
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200524 * Load library "name".
525 */
526 HINSTANCE
527vimLoadLib(char *name)
528{
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200529 HINSTANCE dll = NULL;
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200530
Bram Moolenaar0f873732019-12-05 20:28:46 +0100531 // NOTE: Do not use mch_dirname() and mch_chdir() here, they may call
532 // vimLoadLib() recursively, which causes a stack overflow.
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200533 if (exe_path == NULL)
534 get_exe_name();
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200535 if (exe_path != NULL)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200536 {
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200537 WCHAR old_dirw[MAXPATHL];
538
539 if (GetCurrentDirectoryW(MAXPATHL, old_dirw) != 0)
540 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100541 // Change directory to where the executable is, both to make
542 // sure we find a .dll there and to avoid looking for a .dll
543 // in the current directory.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100544 SetCurrentDirectory((LPCSTR)exe_path);
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200545 dll = LoadLibrary(name);
546 SetCurrentDirectoryW(old_dirw);
547 return dll;
548 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200549 }
550 return dll;
551}
552
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200553#if defined(VIMDLL) || defined(PROTO)
554/*
555 * Check if the current executable file is for the GUI subsystem.
556 */
557 int
558mch_is_gui_executable(void)
559{
560 PBYTE pImage = (PBYTE)GetModuleHandle(NULL);
561 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)pImage;
562 PIMAGE_NT_HEADERS pPE;
563
564 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
565 return FALSE;
566 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
567 if (pPE->Signature != IMAGE_NT_SIGNATURE)
568 return FALSE;
569 if (pPE->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI)
570 return TRUE;
571 return FALSE;
572}
573#endif
574
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100575#if defined(DYNAMIC_ICONV) || defined(DYNAMIC_GETTEXT) || defined(PROTO)
576/*
577 * Get related information about 'funcname' which is imported by 'hInst'.
578 * If 'info' is 0, return the function address.
579 * If 'info' is 1, return the module name which the function is imported from.
580 */
581 static void *
582get_imported_func_info(HINSTANCE hInst, const char *funcname, int info)
583{
584 PBYTE pImage = (PBYTE)hInst;
585 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)hInst;
586 PIMAGE_NT_HEADERS pPE;
587 PIMAGE_IMPORT_DESCRIPTOR pImpDesc;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100588 PIMAGE_THUNK_DATA pIAT; // Import Address Table
589 PIMAGE_THUNK_DATA pINT; // Import Name Table
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100590 PIMAGE_IMPORT_BY_NAME pImpName;
591
592 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
593 return NULL;
594 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
595 if (pPE->Signature != IMAGE_NT_SIGNATURE)
596 return NULL;
597 pImpDesc = (PIMAGE_IMPORT_DESCRIPTOR)(pImage
598 + pPE->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT]
599 .VirtualAddress);
600 for (; pImpDesc->FirstThunk; ++pImpDesc)
601 {
602 if (!pImpDesc->OriginalFirstThunk)
603 continue;
604 pIAT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->FirstThunk);
605 pINT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->OriginalFirstThunk);
606 for (; pIAT->u1.Function; ++pIAT, ++pINT)
607 {
608 if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
609 continue;
610 pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage
611 + (UINT_PTR)(pINT->u1.AddressOfData));
612 if (strcmp((char *)pImpName->Name, funcname) == 0)
613 {
614 switch (info)
615 {
616 case 0:
617 return (void *)pIAT->u1.Function;
618 case 1:
619 return (void *)(pImage + pImpDesc->Name);
620 default:
621 return NULL;
622 }
623 }
624 }
625 }
626 return NULL;
627}
628
629/*
630 * Get the module handle which 'funcname' in 'hInst' is imported from.
631 */
632 HINSTANCE
633find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname)
634{
635 char *modulename;
636
637 modulename = (char *)get_imported_func_info(hInst, funcname, 1);
638 if (modulename != NULL)
639 return GetModuleHandleA(modulename);
640 return NULL;
641}
642
643/*
644 * Get the address of 'funcname' which is imported by 'hInst' DLL.
645 */
646 void *
647get_dll_import_func(HINSTANCE hInst, const char *funcname)
648{
649 return get_imported_func_info(hInst, funcname, 0);
650}
651#endif
652
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653#if defined(DYNAMIC_GETTEXT) || defined(PROTO)
654# ifndef GETTEXT_DLL
655# define GETTEXT_DLL "libintl.dll"
Bram Moolenaar7554c542018-10-06 15:03:15 +0200656# define GETTEXT_DLL_ALT1 "libintl-8.dll"
657# define GETTEXT_DLL_ALT2 "intl.dll"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +0100659// Dummy functions
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000660static char *null_libintl_gettext(const char *);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200661static char *null_libintl_ngettext(const char *, const char *, unsigned long n);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000662static char *null_libintl_textdomain(const char *);
663static char *null_libintl_bindtextdomain(const char *, const char *);
664static char *null_libintl_bind_textdomain_codeset(const char *, const char *);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100665static int null_libintl_wputenv(const wchar_t *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200667static HINSTANCE hLibintlDLL = NULL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000668char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200669char *(*dyn_libintl_ngettext)(const char *, const char *, unsigned long n)
670 = null_libintl_ngettext;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000671char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
672char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000674char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *)
675 = null_libintl_bind_textdomain_codeset;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100676int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677
678 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100679dyn_libintl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680{
681 int i;
682 static struct
683 {
684 char *name;
685 FARPROC *ptr;
686 } libintl_entry[] =
687 {
688 {"gettext", (FARPROC*)&dyn_libintl_gettext},
Bram Moolenaaree695f72016-08-03 22:08:45 +0200689 {"ngettext", (FARPROC*)&dyn_libintl_ngettext},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 {"textdomain", (FARPROC*)&dyn_libintl_textdomain},
691 {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
692 {NULL, NULL}
693 };
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100694 HINSTANCE hmsvcrt;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695
Bram Moolenaar7554c542018-10-06 15:03:15 +0200696 // No need to initialize twice.
697 if (hLibintlDLL != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 return 1;
Bram Moolenaar7554c542018-10-06 15:03:15 +0200699 // Load gettext library (libintl.dll and other names).
Bram Moolenaar923e43b2016-01-28 15:07:38 +0100700 hLibintlDLL = vimLoadLib(GETTEXT_DLL);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100701# ifdef GETTEXT_DLL_ALT1
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100702 if (!hLibintlDLL)
Bram Moolenaar7554c542018-10-06 15:03:15 +0200703 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100704# endif
705# ifdef GETTEXT_DLL_ALT2
Bram Moolenaar7554c542018-10-06 15:03:15 +0200706 if (!hLibintlDLL)
707 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT2);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100708# endif
Bram Moolenaar938ee832016-01-24 15:36:03 +0100709 if (!hLibintlDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200711 if (p_verbose > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200713 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100714 semsg(_(e_loadlib), GETTEXT_DLL);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200715 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200717 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 }
719 for (i = 0; libintl_entry[i].name != NULL
720 && libintl_entry[i].ptr != NULL; ++i)
721 {
722 if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL,
723 libintl_entry[i].name)) == NULL)
724 {
725 dyn_libintl_end();
726 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000727 {
728 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100729 semsg(_(e_loadfunc), libintl_entry[i].name);
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000730 verbose_leave();
731 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 return 0;
733 }
734 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000735
Bram Moolenaar0f873732019-12-05 20:28:46 +0100736 // The bind_textdomain_codeset() function is optional.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000737 dyn_libintl_bind_textdomain_codeset = (void *)GetProcAddress(hLibintlDLL,
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000738 "bind_textdomain_codeset");
739 if (dyn_libintl_bind_textdomain_codeset == NULL)
740 dyn_libintl_bind_textdomain_codeset =
741 null_libintl_bind_textdomain_codeset;
742
Bram Moolenaar0f873732019-12-05 20:28:46 +0100743 // _wputenv() function for the libintl.dll is optional.
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100744 hmsvcrt = find_imported_module_by_funcname(hLibintlDLL, "getenv");
745 if (hmsvcrt != NULL)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100746 dyn_libintl_wputenv = (void *)GetProcAddress(hmsvcrt, "_wputenv");
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100747 if (dyn_libintl_wputenv == NULL || dyn_libintl_wputenv == _wputenv)
748 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100749
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 return 1;
751}
752
753 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100754dyn_libintl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755{
756 if (hLibintlDLL)
757 FreeLibrary(hLibintlDLL);
758 hLibintlDLL = NULL;
759 dyn_libintl_gettext = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200760 dyn_libintl_ngettext = null_libintl_ngettext;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 dyn_libintl_textdomain = null_libintl_textdomain;
762 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000763 dyn_libintl_bind_textdomain_codeset = null_libintl_bind_textdomain_codeset;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100764 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765}
766
767 static char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000768null_libintl_gettext(const char *msgid)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769{
770 return (char*)msgid;
771}
772
773 static char *
Bram Moolenaaree695f72016-08-03 22:08:45 +0200774null_libintl_ngettext(
775 const char *msgid,
776 const char *msgid_plural,
777 unsigned long n)
778{
Bram Moolenaarc90f2ae2016-08-04 22:00:15 +0200779 return (char *)(n == 1 ? msgid : msgid_plural);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200780}
781
Bram Moolenaaree695f72016-08-03 22:08:45 +0200782 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100783null_libintl_bindtextdomain(
784 const char *domainname UNUSED,
785 const char *dirname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786{
787 return NULL;
788}
789
790 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100791null_libintl_bind_textdomain_codeset(
792 const char *domainname UNUSED,
793 const char *codeset UNUSED)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000794{
795 return NULL;
796}
797
798 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100799null_libintl_textdomain(const char *domainname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800{
801 return NULL;
802}
803
Bram Moolenaare0ab9792017-08-02 23:18:25 +0200804 static int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100805null_libintl_wputenv(const wchar_t *envstring UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100806{
807 return 0;
808}
809
Bram Moolenaar0f873732019-12-05 20:28:46 +0100810#endif // DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
Bram Moolenaar0f873732019-12-05 20:28:46 +0100812// This symbol is not defined in older versions of the SDK or Visual C++
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813
814#ifndef VER_PLATFORM_WIN32_WINDOWS
815# define VER_PLATFORM_WIN32_WINDOWS 1
816#endif
817
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818#ifdef HAVE_ACL
Bram Moolenaar82881492012-11-20 16:53:39 +0100819# ifndef PROTO
820# include <aclapi.h>
821# endif
Bram Moolenaar27515922013-06-29 15:36:26 +0200822# ifndef PROTECTED_DACL_SECURITY_INFORMATION
823# define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L
824# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825#endif
826
Bram Moolenaar27515922013-06-29 15:36:26 +0200827#ifdef HAVE_ACL
828/*
829 * Enables or disables the specified privilege.
830 */
831 static BOOL
832win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable)
833{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100834 BOOL bResult;
835 LUID luid;
836 HANDLE hToken;
837 TOKEN_PRIVILEGES tokenPrivileges;
Bram Moolenaar27515922013-06-29 15:36:26 +0200838
839 if (!OpenProcessToken(GetCurrentProcess(),
840 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
841 return FALSE;
842
843 if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid))
844 {
845 CloseHandle(hToken);
846 return FALSE;
847 }
848
Bram Moolenaar45500912014-07-09 20:51:07 +0200849 tokenPrivileges.PrivilegeCount = 1;
Bram Moolenaar27515922013-06-29 15:36:26 +0200850 tokenPrivileges.Privileges[0].Luid = luid;
851 tokenPrivileges.Privileges[0].Attributes = bEnable ?
852 SE_PRIVILEGE_ENABLED : 0;
853
854 bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges,
855 sizeof(TOKEN_PRIVILEGES), NULL, NULL);
856
857 CloseHandle(hToken);
858
859 return bResult && GetLastError() == ERROR_SUCCESS;
860}
861#endif
862
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863/*
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200864 * Set "win8_or_later" and fill in "windowsVersion" if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 */
866 void
867PlatformId(void)
868{
869 static int done = FALSE;
870
871 if (!done)
872 {
873 OSVERSIONINFO ovi;
874
875 ovi.dwOSVersionInfoSize = sizeof(ovi);
876 GetVersionEx(&ovi);
877
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200878#ifdef FEAT_EVAL
Bram Moolenaar0c1e3742019-12-27 13:49:24 +0100879 vim_snprintf(windowsVersion, sizeof(windowsVersion), "%d.%d",
880 (int)ovi.dwMajorVersion, (int)ovi.dwMinorVersion);
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200881#endif
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100882 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2)
883 || ovi.dwMajorVersion > 6)
884 win8_or_later = TRUE;
885
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886#ifdef HAVE_ACL
Bram Moolenaar0f873732019-12-05 20:28:46 +0100887 // Enable privilege for getting or setting SACLs.
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200888 win32_enable_privilege(SE_SECURITY_NAME, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889#endif
890 done = TRUE;
891 }
892}
893
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200894#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100896# define SHIFT (SHIFT_PRESSED)
897# define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)
898# define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)
899# define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
901
Bram Moolenaar0f873732019-12-05 20:28:46 +0100902// When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode.
903// We map function keys to their ANSI terminal equivalents, as produced
904// by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any
905// ANSI key with a value >= '\300' is nonstandard, but provided anyway
906// so that the user can have access to all SHIFT-, CTRL-, and ALT-
907// combinations of function/arrow/etc keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908
Bram Moolenaard6f676d2005-06-01 21:51:55 +0000909static const struct
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910{
911 WORD wVirtKey;
912 BOOL fAnsiKey;
913 int chAlone;
914 int chShift;
915 int chCtrl;
916 int chAlt;
917} VirtKeyMap[] =
918{
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200919// Key ANSI alone shift ctrl alt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, },
921
922 { VK_F1, TRUE, ';', 'T', '^', 'h', },
923 { VK_F2, TRUE, '<', 'U', '_', 'i', },
924 { VK_F3, TRUE, '=', 'V', '`', 'j', },
925 { VK_F4, TRUE, '>', 'W', 'a', 'k', },
926 { VK_F5, TRUE, '?', 'X', 'b', 'l', },
927 { VK_F6, TRUE, '@', 'Y', 'c', 'm', },
928 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', },
929 { VK_F8, TRUE, 'B', '[', 'e', 'o', },
930 { VK_F9, TRUE, 'C', '\\', 'f', 'p', },
931 { VK_F10, TRUE, 'D', ']', 'g', 'q', },
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200932 { VK_F11, TRUE, '\205', '\207', '\211', '\213', },
933 { VK_F12, TRUE, '\206', '\210', '\212', '\214', },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200935 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', },
936 { VK_UP, TRUE, 'H', '\304', '\305', '\306', },
937 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, // PgUp
938 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', },
939 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', },
940 { VK_END, TRUE, 'O', '\315', 'u', '\316', },
941 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', },
942 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, // PgDn
943 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', },
944 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', },
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100945 { VK_BACK, TRUE, 'x', 'y', 'z', '{', }, // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200947 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, // PrtScrn
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100949# if 0
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200950 // Most people don't have F13-F20, but what the hell...
951 { VK_F13, TRUE, '\332', '\333', '\334', '\335', },
952 { VK_F14, TRUE, '\336', '\337', '\340', '\341', },
953 { VK_F15, TRUE, '\342', '\343', '\344', '\345', },
954 { VK_F16, TRUE, '\346', '\347', '\350', '\351', },
955 { VK_F17, TRUE, '\352', '\353', '\354', '\355', },
956 { VK_F18, TRUE, '\356', '\357', '\360', '\361', },
957 { VK_F19, TRUE, '\362', '\363', '\364', '\365', },
958 { VK_F20, TRUE, '\366', '\367', '\370', '\371', },
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100959# endif
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200960 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, // keyp '+'
961 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, // keyp '-'
962 // { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, // keyp '/'
963 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, // keyp '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200965 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', },
966 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', },
967 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', },
968 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', },
969 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', },
970 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', },
971 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', },
972 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', },
973 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', },
974 // Sorry, out of number space! <negri>
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100975 { VK_NUMPAD9,TRUE, '\376', '\377', '|', '}', },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976};
977
978
Bram Moolenaar0f873732019-12-05 20:28:46 +0100979/*
980 * The return code indicates key code size.
981 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983win32_kbd_patch_key(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000984 KEY_EVENT_RECORD *pker)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985{
986 UINT uMods = pker->dwControlKeyState;
987 static int s_iIsDead = 0;
988 static WORD awAnsiCode[2];
989 static BYTE abKeystate[256];
990
991
992 if (s_iIsDead == 2)
993 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200994 pker->UChar = (WCHAR) awAnsiCode[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 s_iIsDead = 0;
996 return 1;
997 }
998
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200999 if (pker->UChar != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 return 1;
1001
Bram Moolenaara80faa82020-04-12 19:37:17 +02001002 CLEAR_FIELD(abKeystate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003
Bram Moolenaar0f873732019-12-05 20:28:46 +01001004 // Clear any pending dead keys
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001005 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006
1007 if (uMods & SHIFT_PRESSED)
1008 abKeystate[VK_SHIFT] = 0x80;
1009 if (uMods & CAPSLOCK_ON)
1010 abKeystate[VK_CAPITAL] = 1;
1011
1012 if ((uMods & ALT_GR) == ALT_GR)
1013 {
1014 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] =
1015 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80;
1016 }
1017
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001018 s_iIsDead = ToUnicode(pker->wVirtualKeyCode, pker->wVirtualScanCode,
1019 abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020
1021 if (s_iIsDead > 0)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001022 pker->UChar = (WCHAR) awAnsiCode[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023
1024 return s_iIsDead;
1025}
1026
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027static BOOL g_fJustGotFocus = FALSE;
1028
1029/*
1030 * Decode a KEY_EVENT into one or two keystrokes
1031 */
1032 static BOOL
1033decode_key_event(
1034 KEY_EVENT_RECORD *pker,
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001035 WCHAR *pch,
1036 WCHAR *pch2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 int *pmodifiers,
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02001038 BOOL fDoPost UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039{
1040 int i;
1041 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL);
1042
1043 *pch = *pch2 = NUL;
1044 g_fJustGotFocus = FALSE;
1045
Bram Moolenaar0f873732019-12-05 20:28:46 +01001046 // ignore key up events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 if (!pker->bKeyDown)
1048 return FALSE;
1049
Bram Moolenaar0f873732019-12-05 20:28:46 +01001050 // ignore some keystrokes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 switch (pker->wVirtualKeyCode)
1052 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001053 // modifiers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 case VK_SHIFT:
1055 case VK_CONTROL:
Bram Moolenaar0f873732019-12-05 20:28:46 +01001056 case VK_MENU: // Alt key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 return FALSE;
1058
1059 default:
1060 break;
1061 }
1062
Bram Moolenaar0f873732019-12-05 20:28:46 +01001063 // special cases
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001064 if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001066 // Ctrl-6 is Ctrl-^
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 if (pker->wVirtualKeyCode == '6')
1068 {
1069 *pch = Ctrl_HAT;
1070 return TRUE;
1071 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001072 // Ctrl-2 is Ctrl-@
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 else if (pker->wVirtualKeyCode == '2')
1074 {
1075 *pch = NUL;
1076 return TRUE;
1077 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001078 // Ctrl-- is Ctrl-_
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 else if (pker->wVirtualKeyCode == 0xBD)
1080 {
1081 *pch = Ctrl__;
1082 return TRUE;
1083 }
1084 }
1085
Bram Moolenaar0f873732019-12-05 20:28:46 +01001086 // Shift-TAB
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED))
1088 {
1089 *pch = K_NUL;
1090 *pch2 = '\017';
1091 return TRUE;
1092 }
1093
1094 for (i = sizeof(VirtKeyMap) / sizeof(VirtKeyMap[0]); --i >= 0; )
1095 {
1096 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode)
1097 {
1098 if (nModifs == 0)
1099 *pch = VirtKeyMap[i].chAlone;
1100 else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0)
1101 *pch = VirtKeyMap[i].chShift;
1102 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0)
1103 *pch = VirtKeyMap[i].chCtrl;
1104 else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0)
1105 *pch = VirtKeyMap[i].chAlt;
1106
1107 if (*pch != 0)
1108 {
1109 if (VirtKeyMap[i].fAnsiKey)
1110 {
1111 *pch2 = *pch;
1112 *pch = K_NUL;
1113 }
1114
1115 return TRUE;
1116 }
1117 }
1118 }
1119
1120 i = win32_kbd_patch_key(pker);
1121
1122 if (i < 0)
1123 *pch = NUL;
1124 else
1125 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001126 *pch = (i > 0) ? pker->UChar : NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127
1128 if (pmodifiers != NULL)
1129 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001130 // Pass on the ALT key as a modifier, but only when not combined
1131 // with CTRL (which is ALTGR).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0)
1133 *pmodifiers |= MOD_MASK_ALT;
1134
Bram Moolenaar0f873732019-12-05 20:28:46 +01001135 // Pass on SHIFT only for special keys, because we don't know when
1136 // it's already included with the character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 if ((nModifs & SHIFT) != 0 && *pch <= 0x20)
1138 *pmodifiers |= MOD_MASK_SHIFT;
1139
Bram Moolenaar0f873732019-12-05 20:28:46 +01001140 // Pass on CTRL only for non-special keys, because we don't know
1141 // when it's already included with the character. And not when
1142 // combined with ALT (which is ALTGR).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0
1144 && *pch >= 0x20 && *pch < 0x80)
1145 *pmodifiers |= MOD_MASK_CTRL;
1146 }
1147 }
1148
1149 return (*pch != NUL);
1150}
1151
Bram Moolenaar0f873732019-12-05 20:28:46 +01001152#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153
1154
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155/*
1156 * For the GUI the mouse handling is in gui_w32.c.
1157 */
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001158#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001160mch_setmouse(int on UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161{
1162}
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001163#else
Bram Moolenaar0f873732019-12-05 20:28:46 +01001164static int g_fMouseAvail = FALSE; // mouse present
1165static int g_fMouseActive = FALSE; // mouse enabled
1166static int g_nMouseClick = -1; // mouse status
1167static int g_xMouse; // mouse x coordinate
1168static int g_yMouse; // mouse y coordinate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169
1170/*
1171 * Enable or disable mouse input
1172 */
1173 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001174mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175{
1176 DWORD cmodein;
1177
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001178# ifdef VIMDLL
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001179 if (gui.in_use)
1180 return;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001181# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 if (!g_fMouseAvail)
1183 return;
1184
1185 g_fMouseActive = on;
1186 GetConsoleMode(g_hConIn, &cmodein);
1187
1188 if (g_fMouseActive)
1189 cmodein |= ENABLE_MOUSE_INPUT;
1190 else
1191 cmodein &= ~ENABLE_MOUSE_INPUT;
1192
1193 SetConsoleMode(g_hConIn, cmodein);
1194}
1195
Bram Moolenaar157d8132018-03-06 17:09:20 +01001196
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001197# if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar157d8132018-03-06 17:09:20 +01001198/*
1199 * Called when 'balloonevalterm' changed.
1200 */
1201 void
1202mch_bevalterm_changed(void)
1203{
1204 mch_setmouse(g_fMouseActive);
1205}
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001206# endif
Bram Moolenaar157d8132018-03-06 17:09:20 +01001207
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208/*
1209 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT,
1210 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse
1211 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG
1212 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type,
1213 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick,
1214 * and we return the mouse position in g_xMouse and g_yMouse.
1215 *
1216 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more
1217 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only
1218 * by MOUSE_LEFT, _MIDDLE, or _RIGHT.
1219 *
1220 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE,
1221 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, ....
1222 *
1223 * Windows will send us MOUSE_MOVED notifications whenever the mouse
1224 * moves, even if it stays within the same character cell. We ignore
1225 * all MOUSE_MOVED messages if the position hasn't really changed, and
1226 * we ignore all MOUSE_MOVED messages where no button is held down (i.e.,
1227 * we're only interested in MOUSE_DRAG).
1228 *
1229 * All of this is complicated by the code that fakes MOUSE_MIDDLE on
1230 * 2-button mouses by pressing the left & right buttons simultaneously.
1231 * In practice, it's almost impossible to click both at the same time,
1232 * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE
1233 * in such cases, if the user is clicking quickly.
1234 */
1235 static BOOL
1236decode_mouse_event(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001237 MOUSE_EVENT_RECORD *pmer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238{
1239 static int s_nOldButton = -1;
1240 static int s_nOldMouseClick = -1;
1241 static int s_xOldMouse = -1;
1242 static int s_yOldMouse = -1;
1243 static linenr_T s_old_topline = 0;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001244# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 static int s_old_topfill = 0;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001246# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 static int s_cClicks = 1;
1248 static BOOL s_fReleased = TRUE;
1249 static DWORD s_dwLastClickTime = 0;
1250 static BOOL s_fNextIsMiddle = FALSE;
1251
Bram Moolenaar0f873732019-12-05 20:28:46 +01001252 static DWORD cButtons = 0; // number of buttons supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253
1254 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED;
1255 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED;
1256 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED;
1257 const DWORD LEFT_RIGHT = LEFT | RIGHT;
1258
1259 int nButton;
1260
1261 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons))
1262 cButtons = 2;
1263
1264 if (!g_fMouseAvail || !g_fMouseActive)
1265 {
1266 g_nMouseClick = -1;
1267 return FALSE;
1268 }
1269
Bram Moolenaar0f873732019-12-05 20:28:46 +01001270 // get a spurious MOUSE_EVENT immediately after receiving focus; ignore
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 if (g_fJustGotFocus)
1272 {
1273 g_fJustGotFocus = FALSE;
1274 return FALSE;
1275 }
1276
Bram Moolenaar0f873732019-12-05 20:28:46 +01001277 // unprocessed mouse click?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 if (g_nMouseClick != -1)
1279 return TRUE;
1280
1281 nButton = -1;
1282 g_xMouse = pmer->dwMousePosition.X;
1283 g_yMouse = pmer->dwMousePosition.Y;
1284
1285 if (pmer->dwEventFlags == MOUSE_MOVED)
1286 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001287 // Ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these
1288 // events even when the mouse moves only within a char cell.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse)
1290 return FALSE;
1291 }
1292
Bram Moolenaar0f873732019-12-05 20:28:46 +01001293 // If no buttons are pressed...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0)
1295 {
Bram Moolenaar157d8132018-03-06 17:09:20 +01001296 nButton = MOUSE_RELEASE;
1297
Bram Moolenaar0f873732019-12-05 20:28:46 +01001298 // If the last thing returned was MOUSE_RELEASE, ignore this
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 if (s_fReleased)
Bram Moolenaar157d8132018-03-06 17:09:20 +01001300 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001301# ifdef FEAT_BEVAL_TERM
Bram Moolenaar0f873732019-12-05 20:28:46 +01001302 // do return mouse move events when we want them
Bram Moolenaar157d8132018-03-06 17:09:20 +01001303 if (p_bevalterm)
1304 nButton = MOUSE_DRAG;
1305 else
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001306# endif
Bram Moolenaar157d8132018-03-06 17:09:20 +01001307 return FALSE;
1308 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 s_fReleased = TRUE;
1311 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001312 else // one or more buttons pressed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001314 // on a 2-button mouse, hold down left and right buttons
1315 // simultaneously to get MIDDLE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316
1317 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG)
1318 {
1319 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT);
1320
Bram Moolenaar0f873732019-12-05 20:28:46 +01001321 // if either left or right button only is pressed, see if the
1322 // next mouse event has both of them pressed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 if (dwLR == LEFT || dwLR == RIGHT)
1324 {
1325 for (;;)
1326 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001327 // wait a short time for next input event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 if (WaitForSingleObject(g_hConIn, p_mouset / 3)
1329 != WAIT_OBJECT_0)
1330 break;
1331 else
1332 {
1333 DWORD cRecords = 0;
1334 INPUT_RECORD ir;
1335 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent;
1336
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001337 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
1339 if (cRecords == 0 || ir.EventType != MOUSE_EVENT
1340 || !(pmer2->dwButtonState & LEFT_RIGHT))
1341 break;
1342 else
1343 {
1344 if (pmer2->dwEventFlags != MOUSE_MOVED)
1345 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001346 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347
1348 return decode_mouse_event(pmer2);
1349 }
1350 else if (s_xOldMouse == pmer2->dwMousePosition.X &&
1351 s_yOldMouse == pmer2->dwMousePosition.Y)
1352 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001353 // throw away spurious mouse move
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001354 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355
Bram Moolenaar0f873732019-12-05 20:28:46 +01001356 // are there any more mouse events in queue?
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001357 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358
1359 if (cRecords==0 || ir.EventType != MOUSE_EVENT)
1360 break;
1361 }
1362 else
1363 break;
1364 }
1365 }
1366 }
1367 }
1368 }
1369
1370 if (s_fNextIsMiddle)
1371 {
1372 nButton = (pmer->dwEventFlags == MOUSE_MOVED)
1373 ? MOUSE_DRAG : MOUSE_MIDDLE;
1374 s_fNextIsMiddle = FALSE;
1375 }
1376 else if (cButtons == 2 &&
1377 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT))
1378 {
1379 nButton = MOUSE_MIDDLE;
1380
1381 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED)
1382 {
1383 s_fNextIsMiddle = TRUE;
1384 nButton = MOUSE_RELEASE;
1385 }
1386 }
1387 else if ((pmer->dwButtonState & LEFT) == LEFT)
1388 nButton = MOUSE_LEFT;
1389 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE)
1390 nButton = MOUSE_MIDDLE;
1391 else if ((pmer->dwButtonState & RIGHT) == RIGHT)
1392 nButton = MOUSE_RIGHT;
1393
1394 if (! s_fReleased && ! s_fNextIsMiddle
1395 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG)
1396 return FALSE;
1397
1398 s_fReleased = s_fNextIsMiddle;
1399 }
1400
1401 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK)
1402 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001403 // button pressed or released, without mouse moving
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 if (nButton != -1 && nButton != MOUSE_RELEASE)
1405 {
1406 DWORD dwCurrentTime = GetTickCount();
1407
1408 if (s_xOldMouse != g_xMouse
1409 || s_yOldMouse != g_yMouse
1410 || s_nOldButton != nButton
1411 || s_old_topline != curwin->w_topline
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001412# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 || s_old_topfill != curwin->w_topfill
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001414# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset)
1416 {
1417 s_cClicks = 1;
1418 }
1419 else if (++s_cClicks > 4)
1420 {
1421 s_cClicks = 1;
1422 }
1423
1424 s_dwLastClickTime = dwCurrentTime;
1425 }
1426 }
1427 else if (pmer->dwEventFlags == MOUSE_MOVED)
1428 {
1429 if (nButton != -1 && nButton != MOUSE_RELEASE)
1430 nButton = MOUSE_DRAG;
1431
1432 s_cClicks = 1;
1433 }
1434
1435 if (nButton == -1)
1436 return FALSE;
1437
1438 if (nButton != MOUSE_RELEASE)
1439 s_nOldButton = nButton;
1440
1441 g_nMouseClick = nButton;
1442
1443 if (pmer->dwControlKeyState & SHIFT_PRESSED)
1444 g_nMouseClick |= MOUSE_SHIFT;
1445 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
1446 g_nMouseClick |= MOUSE_CTRL;
1447 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
1448 g_nMouseClick |= MOUSE_ALT;
1449
1450 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE)
1451 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks);
1452
Bram Moolenaar0f873732019-12-05 20:28:46 +01001453 // only pass on interesting (i.e., different) mouse events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 if (s_xOldMouse == g_xMouse
1455 && s_yOldMouse == g_yMouse
1456 && s_nOldMouseClick == g_nMouseClick)
1457 {
1458 g_nMouseClick = -1;
1459 return FALSE;
1460 }
1461
1462 s_xOldMouse = g_xMouse;
1463 s_yOldMouse = g_yMouse;
1464 s_old_topline = curwin->w_topline;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001465# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 s_old_topfill = curwin->w_topfill;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001467# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 s_nOldMouseClick = g_nMouseClick;
1469
1470 return TRUE;
1471}
1472
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001473#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474
1475
1476#ifdef MCH_CURSOR_SHAPE
1477/*
1478 * Set the shape of the cursor.
1479 * 'thickness' can be from 1 (thin) to 99 (block)
1480 */
1481 static void
1482mch_set_cursor_shape(int thickness)
1483{
1484 CONSOLE_CURSOR_INFO ConsoleCursorInfo;
1485 ConsoleCursorInfo.dwSize = thickness;
1486 ConsoleCursorInfo.bVisible = s_cursor_visible;
1487
1488 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
1489 if (s_cursor_visible)
1490 SetConsoleCursorPosition(g_hConOut, g_coord);
1491}
1492
1493 void
1494mch_update_cursor(void)
1495{
1496 int idx;
1497 int thickness;
1498
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001499# ifdef VIMDLL
1500 if (gui.in_use)
1501 return;
1502# endif
1503
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 /*
1505 * How the cursor is drawn depends on the current mode.
1506 */
1507 idx = get_shape_idx(FALSE);
1508
1509 if (shape_table[idx].shape == SHAPE_BLOCK)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001510 thickness = 99; // 100 doesn't work on W95
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 else
1512 thickness = shape_table[idx].percentage;
1513 mch_set_cursor_shape(thickness);
1514}
1515#endif
1516
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001517#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518/*
1519 * Handle FOCUS_EVENT.
1520 */
1521 static void
1522handle_focus_event(INPUT_RECORD ir)
1523{
1524 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus;
1525 ui_focus_change((int)g_fJustGotFocus);
1526}
1527
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001528static void ResizeConBuf(HANDLE hConsole, COORD coordScreen);
1529
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530/*
1531 * Wait until console input from keyboard or mouse is available,
1532 * or the time is up.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001533 * When "ignore_input" is TRUE even wait when input is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 * Return TRUE if something is available FALSE if not.
1535 */
1536 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001537WaitForChar(long msec, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538{
1539 DWORD dwNow = 0, dwEndTime = 0;
1540 INPUT_RECORD ir;
1541 DWORD cRecords;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001542 WCHAR ch, ch2;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001543# ifdef FEAT_TIMERS
Bram Moolenaar40b1b542016-04-20 20:18:23 +02001544 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001545# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546
1547 if (msec > 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001548 // Wait until the specified time has elapsed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 dwEndTime = GetTickCount() + msec;
1550 else if (msec < 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001551 // Wait forever.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 dwEndTime = INFINITE;
1553
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01001554 // We need to loop until the end of the time period, because
1555 // we might get multiple unusable mouse events in that time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 for (;;)
1557 {
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001558 // Only process messages when waiting.
1559 if (msec != 0)
1560 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001561# ifdef MESSAGE_QUEUE
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001562 parse_queued_messages();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001563# endif
1564# ifdef FEAT_MZSCHEME
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001565 mzvim_check_threads();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001566# endif
1567# ifdef FEAT_CLIENTSERVER
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001568 serverProcessPendingMessages();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001569# endif
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001570 }
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001571
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001572 if (g_nMouseClick != -1
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001573# ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001574 || (!ignore_input && input_available())
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001575# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 )
1577 return TRUE;
1578
1579 if (msec > 0)
1580 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001581 // If the specified wait time has passed, return. Beware that
1582 // GetTickCount() may wrap around (overflow).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 dwNow = GetTickCount();
Bram Moolenaarb7512b72013-08-10 12:45:09 +02001584 if ((int)(dwNow - dwEndTime) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 break;
1586 }
1587 if (msec != 0)
1588 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001589 DWORD dwWaitTime = dwEndTime - dwNow;
1590
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001591# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar0f873732019-12-05 20:28:46 +01001592 // Check channel while waiting for input.
Bram Moolenaar9186a272016-02-23 19:34:01 +01001593 if (dwWaitTime > 100)
Bram Moolenaar8a8199e2016-11-26 15:13:33 +01001594 {
Bram Moolenaar9186a272016-02-23 19:34:01 +01001595 dwWaitTime = 100;
Bram Moolenaar0f873732019-12-05 20:28:46 +01001596 // If there is readahead then parse_queued_messages() timed out
1597 // and we should call it again soon.
Bram Moolenaar8a8199e2016-11-26 15:13:33 +01001598 if (channel_any_readahead())
1599 dwWaitTime = 10;
1600 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001601# endif
1602# ifdef FEAT_BEVAL_GUI
Bram Moolenaar59716a22017-03-01 20:32:44 +01001603 if (p_beval && dwWaitTime > 100)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001604 // The 'balloonexpr' may indirectly invoke a callback while
1605 // waiting for a character, need to check often.
Bram Moolenaar59716a22017-03-01 20:32:44 +01001606 dwWaitTime = 100;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001607# endif
1608# ifdef FEAT_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001609 if (mzthreads_allowed() && p_mzq > 0
1610 && (msec < 0 || (long)dwWaitTime > p_mzq))
Bram Moolenaar0f873732019-12-05 20:28:46 +01001611 dwWaitTime = p_mzq; // don't wait longer than 'mzquantum'
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001612# endif
1613# ifdef FEAT_TIMERS
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001614 // When waiting very briefly don't trigger timers.
1615 if (dwWaitTime > 10)
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001616 {
1617 long due_time;
1618
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001619 // Trigger timers and then get the time in msec until the next
1620 // one is due. Wait up to that time.
1621 due_time = check_due_timer();
1622 if (typebuf.tb_change_cnt != tb_change_cnt)
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001623 {
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001624 // timer may have used feedkeys().
1625 return FALSE;
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001626 }
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001627 if (due_time > 0 && dwWaitTime > (DWORD)due_time)
1628 dwWaitTime = due_time;
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001629 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001630# endif
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001631 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001632# ifdef FEAT_CLIENTSERVER
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001633 // Wait for either an event on the console input or a
1634 // message in the client-server window.
1635 msg_wait_for_multiple_objects(1, &g_hConIn, FALSE,
1636 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001637# else
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001638 wait_for_single_object(g_hConIn, dwWaitTime)
1639 != WAIT_OBJECT_0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001640# endif
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001641 )
1642 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 }
1644
1645 cRecords = 0;
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001646 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001648# ifdef FEAT_MBYTE_IME
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 if (State & CMDLINE && msg_row == Rows - 1)
1650 {
1651 CONSOLE_SCREEN_BUFFER_INFO csbi;
1652
1653 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
1654 {
1655 if (csbi.dwCursorPosition.Y != msg_row)
1656 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001657 // The screen is now messed up, must redraw the
1658 // command line and later all the windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 redraw_all_later(CLEAR);
1660 cmdline_row -= (msg_row - csbi.dwCursorPosition.Y);
1661 redrawcmd();
1662 }
1663 }
1664 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001665# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666
1667 if (cRecords > 0)
1668 {
1669 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown)
1670 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001671# ifdef FEAT_MBYTE_IME
Bram Moolenaar0f873732019-12-05 20:28:46 +01001672 // Windows IME sends two '\n's with only one 'ENTER'. First:
1673 // wVirtualKeyCode == 13. second: wVirtualKeyCode == 0
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001674 if (ir.Event.KeyEvent.UChar == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 && ir.Event.KeyEvent.wVirtualKeyCode == 13)
1676 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001677 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 continue;
1679 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001680# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2,
1682 NULL, FALSE))
1683 return TRUE;
1684 }
1685
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001686 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687
1688 if (ir.EventType == FOCUS_EVENT)
1689 handle_focus_event(ir);
1690 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
Bram Moolenaarc33ecb22018-02-11 16:40:45 +01001691 {
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001692 COORD dwSize = ir.Event.WindowBufferSizeEvent.dwSize;
1693
Bram Moolenaar36698e32019-12-11 22:57:40 +01001694 // Only call shell_resized() when the size actually changed to
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001695 // avoid the screen is cleared.
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001696 if (dwSize.X != Columns || dwSize.Y != Rows)
1697 {
1698 CONSOLE_SCREEN_BUFFER_INFO csbi;
1699 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
Bram Moolenaar36698e32019-12-11 22:57:40 +01001700 dwSize.X = csbi.srWindow.Right - csbi.srWindow.Left + 1;
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001701 dwSize.Y = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
Bram Moolenaar36698e32019-12-11 22:57:40 +01001702 if (dwSize.X != Columns || dwSize.Y != Rows)
1703 {
1704 ResizeConBuf(g_hConOut, dwSize);
1705 shell_resized();
1706 }
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001707 }
Bram Moolenaarc33ecb22018-02-11 16:40:45 +01001708 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 else if (ir.EventType == MOUSE_EVENT
1710 && decode_mouse_event(&ir.Event.MouseEvent))
1711 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 }
1713 else if (msec == 0)
1714 break;
1715 }
1716
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001717# ifdef FEAT_CLIENTSERVER
Bram Moolenaar0f873732019-12-05 20:28:46 +01001718 // Something might have been received while we were waiting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 if (input_available())
1720 return TRUE;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001721# endif
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001722
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 return FALSE;
1724}
1725
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726/*
1727 * return non-zero if a character is available
1728 */
1729 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001730mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001732# ifdef VIMDLL
1733 if (gui.in_use)
1734 return TRUE;
1735# endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001736 return WaitForChar(0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001738
1739# if defined(FEAT_TERMINAL) || defined(PROTO)
1740/*
1741 * Check for any pending input or messages.
1742 */
1743 int
1744mch_check_messages(void)
1745{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001746# ifdef VIMDLL
1747 if (gui.in_use)
1748 return TRUE;
1749# endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001750 return WaitForChar(0L, TRUE);
1751}
1752# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753
1754/*
1755 * Create the console input. Used when reading stdin doesn't work.
1756 */
1757 static void
1758create_conin(void)
1759{
1760 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE,
1761 FILE_SHARE_READ|FILE_SHARE_WRITE,
1762 (LPSECURITY_ATTRIBUTES) NULL,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001763 OPEN_EXISTING, 0, (HANDLE)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 did_create_conin = TRUE;
1765}
1766
1767/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001768 * Get a keystroke or a mouse event, use a blocking wait.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001770 static WCHAR
1771tgetch(int *pmodifiers, WCHAR *pch2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772{
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001773 WCHAR ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774
1775 for (;;)
1776 {
1777 INPUT_RECORD ir;
1778 DWORD cRecords = 0;
1779
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001780# ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001781 (void)WaitForChar(-1L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 if (input_available())
1783 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 if (g_nMouseClick != -1)
1785 return 0;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001786# endif
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001787 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 {
1789 if (did_create_conin)
1790 read_error_exit();
1791 create_conin();
1792 continue;
1793 }
1794
1795 if (ir.EventType == KEY_EVENT)
1796 {
1797 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2,
1798 pmodifiers, TRUE))
1799 return ch;
1800 }
1801 else if (ir.EventType == FOCUS_EVENT)
1802 handle_focus_event(ir);
1803 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
1804 shell_resized();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 else if (ir.EventType == MOUSE_EVENT)
1806 {
1807 if (decode_mouse_event(&ir.Event.MouseEvent))
1808 return 0;
1809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 }
1811}
Bram Moolenaar0f873732019-12-05 20:28:46 +01001812#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813
1814
1815/*
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02001816 * mch_inchar(): low-level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 * Get one or more characters from the keyboard or the mouse.
1818 * If time == 0, do not wait for characters.
1819 * If time == n, wait a short time for characters.
1820 * If time == -1, wait forever for characters.
1821 * Returns the number of characters read into buf.
1822 */
1823 int
1824mch_inchar(
Bram Moolenaar1266d672017-02-01 13:43:36 +01001825 char_u *buf UNUSED,
1826 int maxlen UNUSED,
1827 long time UNUSED,
1828 int tb_change_cnt UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001830#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831
1832 int len;
1833 int c;
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001834# ifdef VIMDLL
1835// Extra space for maximum three CSIs. E.g. U+1B6DB -> 0xF0 0x9B 0x9B 0x9B.
1836# define TYPEAHEADSPACE 6
1837# else
1838# define TYPEAHEADSPACE 0
1839# endif
1840# define TYPEAHEADLEN (20 + TYPEAHEADSPACE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001841 static char_u typeahead[TYPEAHEADLEN]; // previously typed bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 static int typeaheadlen = 0;
1843
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001844# ifdef VIMDLL
1845 if (gui.in_use)
1846 return 0;
1847# endif
1848
Bram Moolenaar0f873732019-12-05 20:28:46 +01001849 // First use any typeahead that was kept because "buf" was too small.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 if (typeaheadlen > 0)
1851 goto theend;
1852
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 if (time >= 0)
1854 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001855 if (!WaitForChar(time, FALSE)) // no character available
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001858 else // time == -1, wait forever
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001860 mch_set_winsize_now(); // Allow winsize changes from now on
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861
Bram Moolenaar3918c952005-03-15 22:34:55 +00001862 /*
1863 * If there is no character available within 2 seconds (default)
1864 * write the autoscript file to disk. Or cause the CursorHold event
1865 * to be triggered.
1866 */
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001867 if (!WaitForChar(p_ut, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 {
Bram Moolenaard35f9712005-12-18 22:02:33 +00001869 if (trigger_cursorhold() && maxlen >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 {
Bram Moolenaar3918c952005-03-15 22:34:55 +00001871 buf[0] = K_SPECIAL;
1872 buf[1] = KS_EXTRA;
1873 buf[2] = (int)KE_CURSORHOLD;
1874 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 }
Bram Moolenaar702517d2005-06-27 22:34:07 +00001876 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 }
1878 }
1879
1880 /*
1881 * Try to read as many characters as there are, until the buffer is full.
1882 */
1883
Bram Moolenaar0f873732019-12-05 20:28:46 +01001884 // we will get at least one key. Get more if they are available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 g_fCBrkPressed = FALSE;
1886
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001887# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 if (fdDump)
1889 fputc('[', fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001890# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891
Bram Moolenaar0f873732019-12-05 20:28:46 +01001892 // Keep looping until there is something in the typeahead buffer and more
1893 // to get and still room in the buffer (up to two bytes for a char and
1894 // three bytes for a modifier).
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001895 while ((typeaheadlen == 0 || WaitForChar(0L, FALSE))
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001896 && typeaheadlen + 5 + TYPEAHEADSPACE <= TYPEAHEADLEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 {
1898 if (typebuf_changed(tb_change_cnt))
1899 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001900 // "buf" may be invalid now if a client put something in the
1901 // typeahead buffer and "buf" is in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 typeaheadlen = 0;
1903 break;
1904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 if (g_nMouseClick != -1)
1906 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001907# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 if (fdDump)
1909 fprintf(fdDump, "{%02x @ %d, %d}",
1910 g_nMouseClick, g_xMouse, g_yMouse);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001911# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 typeahead[typeaheadlen++] = ESC + 128;
1913 typeahead[typeaheadlen++] = 'M';
1914 typeahead[typeaheadlen++] = g_nMouseClick;
1915 typeahead[typeaheadlen++] = g_xMouse + '!';
1916 typeahead[typeaheadlen++] = g_yMouse + '!';
1917 g_nMouseClick = -1;
1918 }
1919 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001921 WCHAR ch2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 int modifiers = 0;
1923
1924 c = tgetch(&modifiers, &ch2);
1925
1926 if (typebuf_changed(tb_change_cnt))
1927 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001928 // "buf" may be invalid now if a client put something in the
1929 // typeahead buffer and "buf" is in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 typeaheadlen = 0;
1931 break;
1932 }
1933
1934 if (c == Ctrl_C && ctrl_c_interrupts)
1935 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001936# if defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 trash_input_buf();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001938# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 got_int = TRUE;
1940 }
1941
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 if (g_nMouseClick == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 {
1944 int n = 1;
1945
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001946 if (ch2 == NUL)
1947 {
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001948 int i, j;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001949 char_u *p;
1950 WCHAR ch[2];
1951
1952 ch[0] = c;
Bram Moolenaar0f873732019-12-05 20:28:46 +01001953 if (c >= 0xD800 && c <= 0xDBFF) // High surrogate
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001954 {
1955 ch[1] = tgetch(&modifiers, &ch2);
1956 n++;
1957 }
1958 p = utf16_to_enc(ch, &n);
1959 if (p != NULL)
1960 {
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001961 for (i = 0, j = 0; i < n; i++)
1962 {
1963 typeahead[typeaheadlen + j++] = p[i];
1964# ifdef VIMDLL
1965 if (p[i] == CSI)
1966 {
1967 typeahead[typeaheadlen + j++] = KS_EXTRA;
1968 typeahead[typeaheadlen + j++] = KE_CSI;
1969 }
1970# endif
1971 }
1972 n = j;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001973 vim_free(p);
1974 }
1975 }
1976 else
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001977 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001978 typeahead[typeaheadlen] = c;
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001979# ifdef VIMDLL
1980 if (c == CSI)
1981 {
1982 typeahead[typeaheadlen + 1] = KS_EXTRA;
1983 typeahead[typeaheadlen + 2] = KE_CSI;
1984 n = 3;
1985 }
1986# endif
1987 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 if (ch2 != NUL)
1989 {
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +02001990 if (c == K_NUL)
Bram Moolenaarfeeb4d02017-12-05 15:14:46 +01001991 {
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +02001992 switch (ch2)
1993 {
1994 case (WCHAR)'\324': // SHIFT+Insert
1995 case (WCHAR)'\325': // CTRL+Insert
1996 case (WCHAR)'\327': // SHIFT+Delete
1997 case (WCHAR)'\330': // CTRL+Delete
1998 typeahead[typeaheadlen + n] = (char_u)ch2;
1999 n++;
2000 break;
2001
2002 default:
2003 typeahead[typeaheadlen + n] = 3;
2004 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
2005 n += 2;
2006 break;
2007 }
Bram Moolenaarfeeb4d02017-12-05 15:14:46 +01002008 }
2009 else
2010 {
2011 typeahead[typeaheadlen + n] = 3;
2012 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
2013 n += 2;
2014 }
Bram Moolenaar45500912014-07-09 20:51:07 +02002015 }
2016
Bram Moolenaar0f873732019-12-05 20:28:46 +01002017 // Use the ALT key to set the 8th bit of the character
2018 // when it's one byte, the 8th bit isn't set yet and not
2019 // using a double-byte encoding (would become a lead
2020 // byte).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 if ((modifiers & MOD_MASK_ALT)
2022 && n == 1
2023 && (typeahead[typeaheadlen] & 0x80) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 )
2026 {
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00002027 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
2028 typeahead + typeaheadlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029 modifiers &= ~MOD_MASK_ALT;
2030 }
2031
2032 if (modifiers != 0)
2033 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002034 // Prepend modifiers to the character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035 mch_memmove(typeahead + typeaheadlen + 3,
2036 typeahead + typeaheadlen, n);
2037 typeahead[typeaheadlen++] = K_SPECIAL;
2038 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
2039 typeahead[typeaheadlen++] = modifiers;
2040 }
2041
2042 typeaheadlen += n;
2043
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002044# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 if (fdDump)
2046 fputc(c, fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002047# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 }
2049 }
2050 }
2051
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002052# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 if (fdDump)
2054 {
2055 fputs("]\n", fdDump);
2056 fflush(fdDump);
2057 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002058# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060theend:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002061 // Move typeahead to "buf", as much as fits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 len = 0;
2063 while (len < maxlen && typeaheadlen > 0)
2064 {
2065 buf[len++] = typeahead[0];
2066 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
2067 }
Bram Moolenaar7ca86fe2020-09-03 19:25:11 +02002068# ifdef FEAT_JOB_CHANNEL
2069 if (len > 0)
2070 {
2071 buf[len] = NUL;
2072 ch_log(NULL, "raw key input: \"%s\"", buf);
2073 }
2074# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 return len;
2076
Bram Moolenaar0f873732019-12-05 20:28:46 +01002077#else // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 return 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002079#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080}
2081
Bram Moolenaar82881492012-11-20 16:53:39 +01002082#ifndef PROTO
2083# ifndef __MINGW32__
Bram Moolenaar0f873732019-12-05 20:28:46 +01002084# include <shellapi.h> // required for FindExecutable()
Bram Moolenaar82881492012-11-20 16:53:39 +01002085# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086#endif
2087
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002088/*
Bram Moolenaar95da1362020-05-30 18:37:55 +02002089 * Return TRUE if "name" is an executable file, FALSE if not or it doesn't exist.
Bram Moolenaar43663192017-03-05 14:29:12 +01002090 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2091 * the allocated memory.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002092 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002093 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 static int
Bram Moolenaar95da1362020-05-30 18:37:55 +02002095executable_file(char *name, char_u **path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096{
Bram Moolenaar95da1362020-05-30 18:37:55 +02002097 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name))
Bram Moolenaar43663192017-03-05 14:29:12 +01002098 {
Bram Moolenaar95da1362020-05-30 18:37:55 +02002099 if (path != NULL)
2100 *path = FullName_save((char_u *)name, FALSE);
2101 return TRUE;
2102 }
2103 return FALSE;
2104}
2105
2106/*
2107 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
2108 * If "use_path" is FALSE: Return TRUE if "name" exists.
2109 * If "use_pathext" is TRUE search "name" with extensions in $PATHEXT.
2110 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2111 * the allocated memory.
2112 */
2113 static int
2114executable_exists(char *name, char_u **path, int use_path, int use_pathext)
2115{
2116 // WinNT and later can use _MAX_PATH wide characters for a pathname, which
2117 // means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
2118 // UTF-8.
2119 char_u buf[_MAX_PATH * 3];
2120 size_t len = STRLEN(name);
2121 size_t tmplen;
2122 char_u *p, *e, *e2;
2123 char_u *pathbuf = NULL;
2124 char_u *pathext = NULL;
2125 char_u *pathextbuf = NULL;
2126 int noext = FALSE;
2127 int retval = FALSE;
2128
2129 if (len >= sizeof(buf)) // safety check
Bram Moolenaar43663192017-03-05 14:29:12 +01002130 return FALSE;
Bram Moolenaar95da1362020-05-30 18:37:55 +02002131
2132 // Using the name directly when a Unix-shell like 'shell'.
2133 if (strstr((char *)gettail(p_sh), "sh") != NULL)
2134 noext = TRUE;
2135
2136 if (use_pathext)
2137 {
2138 pathext = mch_getenv("PATHEXT");
2139 if (pathext == NULL)
2140 pathext = (char_u *)".com;.exe;.bat;.cmd";
2141
2142 if (noext == FALSE)
2143 {
2144 /*
2145 * Loop over all extensions in $PATHEXT.
2146 * Check "name" ends with extension.
2147 */
2148 p = pathext;
2149 while (*p)
2150 {
2151 if (p[0] == ';'
2152 || (p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2153 {
2154 // Skip empty or single ".".
2155 ++p;
2156 continue;
2157 }
2158 e = vim_strchr(p, ';');
2159 if (e == NULL)
2160 e = p + STRLEN(p);
2161 tmplen = e - p;
2162
2163 if (_strnicoll(name + len - tmplen, (char *)p, tmplen) == 0)
2164 {
2165 noext = TRUE;
2166 break;
2167 }
2168
2169 p = e;
2170 }
2171 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002172 }
2173
Bram Moolenaar95da1362020-05-30 18:37:55 +02002174 // Prepend single "." to pathext, it's means no extension added.
2175 if (pathext == NULL)
2176 pathext = (char_u *)".";
2177 else if (noext == TRUE)
2178 {
2179 if (pathextbuf == NULL)
2180 pathextbuf = alloc(STRLEN(pathext) + 3);
2181 if (pathextbuf == NULL)
2182 {
2183 retval = FALSE;
2184 goto theend;
2185 }
2186 STRCPY(pathextbuf, ".;");
2187 STRCAT(pathextbuf, pathext);
2188 pathext = pathextbuf;
2189 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02002190
Bram Moolenaar95da1362020-05-30 18:37:55 +02002191 // Use $PATH when "use_path" is TRUE and "name" is basename.
2192 if (use_path && gettail((char_u *)name) == (char_u *)name)
2193 {
2194 p = mch_getenv("PATH");
2195 if (p != NULL)
2196 {
2197 pathbuf = alloc(STRLEN(p) + 3);
2198 if (pathbuf == NULL)
2199 {
2200 retval = FALSE;
2201 goto theend;
2202 }
2203 STRCPY(pathbuf, ".;");
2204 STRCAT(pathbuf, p);
2205 }
2206 }
2207
2208 /*
2209 * Walk through all entries in $PATH to check if "name" exists there and
2210 * is an executable file.
2211 */
2212 p = (pathbuf != NULL) ? pathbuf : (char_u *)".";
2213 while (*p)
2214 {
2215 if (*p == ';') // Skip empty entry
2216 {
2217 ++p;
2218 continue;
2219 }
2220 e = vim_strchr(p, ';');
2221 if (e == NULL)
2222 e = p + STRLEN(p);
2223
2224 if (e - p + len + 2 > sizeof(buf))
2225 {
2226 retval = FALSE;
2227 goto theend;
2228 }
2229 // A single "." that means current dir.
2230 if (e - p == 1 && *p == '.')
2231 STRCPY(buf, name);
2232 else
2233 {
2234 vim_strncpy(buf, p, e - p);
2235 add_pathsep(buf);
2236 STRCAT(buf, name);
2237 }
2238 tmplen = STRLEN(buf);
2239
2240 /*
2241 * Loop over all extensions in $PATHEXT.
2242 * Check "name" with extension added.
2243 */
2244 p = pathext;
2245 while (*p)
2246 {
2247 if (*p == ';')
2248 {
2249 // Skip empty entry
2250 ++p;
2251 continue;
2252 }
2253 e2 = vim_strchr(p, (int)';');
2254 if (e2 == NULL)
2255 e2 = p + STRLEN(p);
2256
2257 if (!(p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2258 {
2259 // Not a single "." that means no extension is added.
2260 if (e2 - p + tmplen + 1 > sizeof(buf))
2261 {
2262 retval = FALSE;
2263 goto theend;
2264 }
2265 vim_strncpy(buf + tmplen, p, e2 - p);
2266 }
2267 if (executable_file((char *)buf, path))
2268 {
2269 retval = TRUE;
2270 goto theend;
2271 }
2272
2273 p = e2;
2274 }
2275
2276 p = e;
2277 }
2278
2279theend:
2280 free(pathextbuf);
2281 free(pathbuf);
2282 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283}
2284
Bram Moolenaar1eed5322019-02-26 17:03:54 +01002285#if (defined(__MINGW32__) && __MSVCRT_VERSION__ >= 0x800) || \
2286 (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002287/*
2288 * Bad parameter handler.
2289 *
2290 * Certain MS CRT functions will intentionally crash when passed invalid
2291 * parameters to highlight possible security holes. Setting this function as
2292 * the bad parameter handler will prevent the crash.
2293 *
2294 * In debug builds the parameters contain CRT information that might help track
2295 * down the source of a problem, but in non-debug builds the arguments are all
2296 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
2297 * worth allowing these to make debugging of issues easier.
2298 */
2299 static void
2300bad_param_handler(const wchar_t *expression,
2301 const wchar_t *function,
2302 const wchar_t *file,
2303 unsigned int line,
2304 uintptr_t pReserved)
2305{
2306}
2307
2308# define SET_INVALID_PARAM_HANDLER \
2309 ((void)_set_invalid_parameter_handler(bad_param_handler))
2310#else
2311# define SET_INVALID_PARAM_HANDLER
2312#endif
2313
Bram Moolenaar4f974752019-02-17 17:44:42 +01002314#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315
2316/*
2317 * GUI version of mch_init().
2318 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002319 static void
2320mch_init_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002322# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002324# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325
Bram Moolenaar0f873732019-12-05 20:28:46 +01002326 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002327 SET_INVALID_PARAM_HANDLER;
2328
Bram Moolenaar0f873732019-12-05 20:28:46 +01002329 // Let critical errors result in a failure, not in a dialog box. Required
2330 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 SetErrorMode(SEM_FAILCRITICALERRORS);
2332
Bram Moolenaar0f873732019-12-05 20:28:46 +01002333 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334
Bram Moolenaar0f873732019-12-05 20:28:46 +01002335 // Specify window size. Is there a place to get the default from?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 Rows = 25;
2337 Columns = 80;
2338
Bram Moolenaar0f873732019-12-05 20:28:46 +01002339 // Look for 'vimrun'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340 {
2341 char_u vimrun_location[_MAX_PATH + 4];
2342
Bram Moolenaar0f873732019-12-05 20:28:46 +01002343 // First try in same directory as gvim.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 STRCPY(vimrun_location, exe_name);
2345 STRCPY(gettail(vimrun_location), "vimrun.exe");
2346 if (mch_getperm(vimrun_location) >= 0)
2347 {
2348 if (*skiptowhite(vimrun_location) != NUL)
2349 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002350 // Enclose path with white space in double quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 mch_memmove(vimrun_location + 1, vimrun_location,
2352 STRLEN(vimrun_location) + 1);
2353 *vimrun_location = '"';
2354 STRCPY(gettail(vimrun_location), "vimrun\" ");
2355 }
2356 else
2357 STRCPY(gettail(vimrun_location), "vimrun ");
2358
2359 vimrun_path = (char *)vim_strsave(vimrun_location);
2360 s_dont_use_vimrun = FALSE;
2361 }
Bram Moolenaar95da1362020-05-30 18:37:55 +02002362 else if (executable_exists("vimrun.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 s_dont_use_vimrun = FALSE;
2364
Bram Moolenaar0f873732019-12-05 20:28:46 +01002365 // Don't give the warning for a missing vimrun.exe right now, but only
2366 // when vimrun was supposed to be used. Don't bother people that do
2367 // not need vimrun.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 if (s_dont_use_vimrun)
2369 need_vimrun_warning = TRUE;
2370 }
2371
2372 /*
2373 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2374 * Otherwise the default "findstr /n" is used.
2375 */
Bram Moolenaar95da1362020-05-30 18:37:55 +02002376 if (!executable_exists("findstr.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2378
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002379# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002380 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002381# endif
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01002382
2383 vtp_flag_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384}
2385
2386
Bram Moolenaar0f873732019-12-05 20:28:46 +01002387#endif // FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002388
2389#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002391# define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2392# define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393
2394/*
2395 * ClearConsoleBuffer()
2396 * Description:
2397 * Clears the entire contents of the console screen buffer, using the
2398 * specified attribute.
2399 * Returns:
2400 * TRUE on success
2401 */
2402 static BOOL
2403ClearConsoleBuffer(WORD wAttribute)
2404{
2405 CONSOLE_SCREEN_BUFFER_INFO csbi;
2406 COORD coord;
2407 DWORD NumCells, dummy;
2408
2409 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2410 return FALSE;
2411
2412 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2413 coord.X = 0;
2414 coord.Y = 0;
2415 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2416 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2419 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421
2422 return TRUE;
2423}
2424
2425/*
2426 * FitConsoleWindow()
2427 * Description:
2428 * Checks if the console window will fit within given buffer dimensions.
2429 * Also, if requested, will shrink the window to fit.
2430 * Returns:
2431 * TRUE on success
2432 */
2433 static BOOL
2434FitConsoleWindow(
2435 COORD dwBufferSize,
2436 BOOL WantAdjust)
2437{
2438 CONSOLE_SCREEN_BUFFER_INFO csbi;
2439 COORD dwWindowSize;
2440 BOOL NeedAdjust = FALSE;
2441
2442 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2443 {
2444 /*
2445 * A buffer resize will fail if the current console window does
2446 * not lie completely within that buffer. To avoid this, we might
2447 * have to move and possibly shrink the window.
2448 */
2449 if (csbi.srWindow.Right >= dwBufferSize.X)
2450 {
2451 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2452 if (dwWindowSize.X > dwBufferSize.X)
2453 dwWindowSize.X = dwBufferSize.X;
2454 csbi.srWindow.Right = dwBufferSize.X - 1;
2455 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2456 NeedAdjust = TRUE;
2457 }
2458 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2459 {
2460 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2461 if (dwWindowSize.Y > dwBufferSize.Y)
2462 dwWindowSize.Y = dwBufferSize.Y;
2463 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2464 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2465 NeedAdjust = TRUE;
2466 }
2467 if (NeedAdjust && WantAdjust)
2468 {
2469 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2470 return FALSE;
2471 }
2472 return TRUE;
2473 }
2474
2475 return FALSE;
2476}
2477
2478typedef struct ConsoleBufferStruct
2479{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002480 BOOL IsValid;
2481 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002482 PCHAR_INFO Buffer;
2483 COORD BufferSize;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002484 PSMALL_RECT Regions;
2485 int NumRegions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486} ConsoleBuffer;
2487
2488/*
2489 * SaveConsoleBuffer()
2490 * Description:
2491 * Saves important information about the console buffer, including the
2492 * actual buffer contents. The saved information is suitable for later
2493 * restoration by RestoreConsoleBuffer().
2494 * Returns:
2495 * TRUE if all information was saved; FALSE otherwise
2496 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2497 */
2498 static BOOL
2499SaveConsoleBuffer(
2500 ConsoleBuffer *cb)
2501{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002502 DWORD NumCells;
2503 COORD BufferCoord;
2504 SMALL_RECT ReadRegion;
2505 WORD Y, Y_incr;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002506 int i, numregions;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002507
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 if (cb == NULL)
2509 return FALSE;
2510
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002511 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 {
2513 cb->IsValid = FALSE;
2514 return FALSE;
2515 }
2516 cb->IsValid = TRUE;
2517
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002518 /*
2519 * Allocate a buffer large enough to hold the entire console screen
2520 * buffer. If this ConsoleBuffer structure has already been initialized
2521 * with a buffer of the correct size, then just use that one.
2522 */
2523 if (!cb->IsValid || cb->Buffer == NULL ||
2524 cb->BufferSize.X != cb->Info.dwSize.X ||
2525 cb->BufferSize.Y != cb->Info.dwSize.Y)
2526 {
2527 cb->BufferSize.X = cb->Info.dwSize.X;
2528 cb->BufferSize.Y = cb->Info.dwSize.Y;
2529 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2530 vim_free(cb->Buffer);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002531 cb->Buffer = ALLOC_MULT(CHAR_INFO, NumCells);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002532 if (cb->Buffer == NULL)
2533 return FALSE;
2534 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535
2536 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002537 * We will now copy the console screen buffer into our buffer.
2538 * ReadConsoleOutput() seems to be limited as far as how much you
2539 * can read at a time. Empirically, this number seems to be about
2540 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2541 * in chunks until it is all copied. The chunks will all have the
2542 * same horizontal characteristics, so initialize them now. The
2543 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002544 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002545 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002546 ReadRegion.Left = 0;
2547 ReadRegion.Right = cb->Info.dwSize.X - 1;
2548 Y_incr = 12000 / cb->Info.dwSize.X;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002549
2550 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr;
2551 if (cb->Regions == NULL || numregions != cb->NumRegions)
2552 {
2553 cb->NumRegions = numregions;
2554 vim_free(cb->Regions);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002555 cb->Regions = ALLOC_MULT(SMALL_RECT, cb->NumRegions);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002556 if (cb->Regions == NULL)
2557 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002558 VIM_CLEAR(cb->Buffer);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002559 return FALSE;
2560 }
2561 }
2562
2563 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002565 /*
2566 * Read into position (0, Y) in our buffer.
2567 */
2568 BufferCoord.Y = Y;
2569 /*
2570 * Read the region whose top left corner is (0, Y) and whose bottom
2571 * right corner is (width - 1, Y + Y_incr - 1). This should define
2572 * a region of size width by Y_incr. Don't worry if this region is
2573 * too large for the remaining buffer; it will be cropped.
2574 */
2575 ReadRegion.Top = Y;
2576 ReadRegion.Bottom = Y + Y_incr - 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002577 if (!ReadConsoleOutputW(g_hConOut, // output handle
2578 cb->Buffer, // our buffer
2579 cb->BufferSize, // dimensions of our buffer
2580 BufferCoord, // offset in our buffer
2581 &ReadRegion)) // region to save
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002582 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002583 VIM_CLEAR(cb->Buffer);
2584 VIM_CLEAR(cb->Regions);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002585 return FALSE;
2586 }
Bram Moolenaar444fda22017-08-11 20:37:00 +02002587 cb->Regions[i] = ReadRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 }
2589
2590 return TRUE;
2591}
2592
2593/*
2594 * RestoreConsoleBuffer()
2595 * Description:
2596 * Restores important information about the console buffer, including the
2597 * actual buffer contents, if desired. The information to restore is in
2598 * the same format used by SaveConsoleBuffer().
2599 * Returns:
2600 * TRUE on success
2601 */
2602 static BOOL
2603RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002604 ConsoleBuffer *cb,
2605 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002607 COORD BufferCoord;
2608 SMALL_RECT WriteRegion;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002609 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610
2611 if (cb == NULL || !cb->IsValid)
2612 return FALSE;
2613
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002614 /*
2615 * Before restoring the buffer contents, clear the current buffer, and
2616 * restore the cursor position and window information. Doing this now
2617 * prevents old buffer contents from "flashing" onto the screen.
2618 */
2619 if (RestoreScreen)
2620 ClearConsoleBuffer(cb->Info.wAttributes);
2621
2622 FitConsoleWindow(cb->Info.dwSize, TRUE);
2623 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2624 return FALSE;
2625 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2626 return FALSE;
2627
2628 if (!RestoreScreen)
2629 {
2630 /*
2631 * No need to restore the screen buffer contents, so we're done.
2632 */
2633 return TRUE;
2634 }
2635
2636 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2637 return FALSE;
2638 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2639 return FALSE;
2640
2641 /*
2642 * Restore the screen buffer contents.
2643 */
2644 if (cb->Buffer != NULL)
2645 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002646 for (i = 0; i < cb->NumRegions; i++)
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002647 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002648 BufferCoord.X = cb->Regions[i].Left;
2649 BufferCoord.Y = cb->Regions[i].Top;
2650 WriteRegion = cb->Regions[i];
Bram Moolenaar0f873732019-12-05 20:28:46 +01002651 if (!WriteConsoleOutputW(g_hConOut, // output handle
2652 cb->Buffer, // our buffer
2653 cb->BufferSize, // dimensions of our buffer
2654 BufferCoord, // offset in our buffer
2655 &WriteRegion)) // region to restore
Bram Moolenaar444fda22017-08-11 20:37:00 +02002656 return FALSE;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002657 }
2658 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659
2660 return TRUE;
2661}
2662
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002663# define FEAT_RESTORE_ORIG_SCREEN
2664# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002665static ConsoleBuffer g_cbOrig = { 0 };
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002666# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667static ConsoleBuffer g_cbNonTermcap = { 0 };
2668static ConsoleBuffer g_cbTermcap = { 0 };
2669
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002670# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671char g_szOrigTitle[256] = { 0 };
Bram Moolenaar0f873732019-12-05 20:28:46 +01002672HWND g_hWnd = NULL; // also used in os_mswin.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673static HICON g_hOrigIconSmall = NULL;
2674static HICON g_hOrigIcon = NULL;
2675static HICON g_hVimIcon = NULL;
2676static BOOL g_fCanChangeIcon = FALSE;
2677
Bram Moolenaar0f873732019-12-05 20:28:46 +01002678// ICON* are not defined in VC++ 4.0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002679# ifndef ICON_SMALL
2680# define ICON_SMALL 0
2681# endif
2682# ifndef ICON_BIG
2683# define ICON_BIG 1
2684# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685/*
2686 * GetConsoleIcon()
2687 * Description:
2688 * Attempts to retrieve the small icon and/or the big icon currently in
2689 * use by a given window.
2690 * Returns:
2691 * TRUE on success
2692 */
2693 static BOOL
2694GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002695 HWND hWnd,
2696 HICON *phIconSmall,
2697 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698{
2699 if (hWnd == NULL)
2700 return FALSE;
2701
2702 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002703 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2704 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002706 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2707 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 return TRUE;
2709}
2710
2711/*
2712 * SetConsoleIcon()
2713 * Description:
2714 * Attempts to change the small icon and/or the big icon currently in
2715 * use by a given window.
2716 * Returns:
2717 * TRUE on success
2718 */
2719 static BOOL
2720SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002721 HWND hWnd,
2722 HICON hIconSmall,
2723 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 if (hWnd == NULL)
2726 return FALSE;
2727
2728 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002729 SendMessage(hWnd, WM_SETICON,
2730 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002732 SendMessage(hWnd, WM_SETICON,
2733 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 return TRUE;
2735}
2736
2737/*
2738 * SaveConsoleTitleAndIcon()
2739 * Description:
2740 * Saves the current console window title in g_szOrigTitle, for later
2741 * restoration. Also, attempts to obtain a handle to the console window,
2742 * and use it to save the small and big icons currently in use by the
2743 * console window. This is not always possible on some versions of Windows;
2744 * nor is it possible when running Vim remotely using Telnet (since the
2745 * console window the user sees is owned by a remote process).
2746 */
2747 static void
2748SaveConsoleTitleAndIcon(void)
2749{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002750 // Save the original title.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2752 return;
2753
2754 /*
2755 * Obtain a handle to the console window using GetConsoleWindow() from
2756 * KERNEL32.DLL; we need to handle in order to change the window icon.
2757 * This function only exists on NT-based Windows, starting with Windows
2758 * 2000. On older operating systems, we can't change the window icon
2759 * anyway.
2760 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002761 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 if (g_hWnd == NULL)
2763 return;
2764
Bram Moolenaar0f873732019-12-05 20:28:46 +01002765 // Save the original console window icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2767 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2768 return;
2769
Bram Moolenaar0f873732019-12-05 20:28:46 +01002770 // Extract the first icon contained in the Vim executable.
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002771 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002772 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 if (g_hVimIcon != NULL)
2774 g_fCanChangeIcon = TRUE;
2775}
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002776# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777
2778static int g_fWindInitCalled = FALSE;
2779static int g_fTermcapMode = FALSE;
2780static CONSOLE_CURSOR_INFO g_cci;
2781static DWORD g_cmodein = 0;
2782static DWORD g_cmodeout = 0;
2783
2784/*
2785 * non-GUI version of mch_init().
2786 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002787 static void
2788mch_init_c(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002790# ifndef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002791 CONSOLE_SCREEN_BUFFER_INFO csbi;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002792# endif
2793# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002795# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796
Bram Moolenaar0f873732019-12-05 20:28:46 +01002797 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002798 SET_INVALID_PARAM_HANDLER;
2799
Bram Moolenaar0f873732019-12-05 20:28:46 +01002800 // Let critical errors result in a failure, not in a dialog box. Required
2801 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 SetErrorMode(SEM_FAILCRITICALERRORS);
2803
Bram Moolenaar0f873732019-12-05 20:28:46 +01002804 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 out_flush();
2806
Bram Moolenaar0f873732019-12-05 20:28:46 +01002807 // Obtain handles for the standard Console I/O devices
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 if (read_cmd_fd == 0)
2809 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2810 else
2811 create_conin();
2812 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2813
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002814# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar0f873732019-12-05 20:28:46 +01002815 // Save the initial console buffer for later restoration
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002816 SaveConsoleBuffer(&g_cbOrig);
2817 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002818# else
Bram Moolenaar0f873732019-12-05 20:28:46 +01002819 // Get current text attributes
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002820 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2821 g_attrCurrent = g_attrDefault = csbi.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002822# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 if (cterm_normal_fg_color == 0)
2824 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2825 if (cterm_normal_bg_color == 0)
2826 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2827
Bram Moolenaarbdace832019-03-02 10:13:42 +01002828 // Fg and Bg color index number at startup
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02002829 g_color_index_fg = g_attrDefault & 0xf;
2830 g_color_index_bg = (g_attrDefault >> 4) & 0xf;
2831
Bram Moolenaar0f873732019-12-05 20:28:46 +01002832 // set termcap codes to current text attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 update_tcap(g_attrCurrent);
2834
2835 GetConsoleCursorInfo(g_hConOut, &g_cci);
2836 GetConsoleMode(g_hConIn, &g_cmodein);
2837 GetConsoleMode(g_hConOut, &g_cmodeout);
2838
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002839# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 SaveConsoleTitleAndIcon();
2841 /*
2842 * Set both the small and big icons of the console window to Vim's icon.
2843 * Note that Vim presently only has one size of icon (32x32), but it
2844 * automatically gets scaled down to 16x16 when setting the small icon.
2845 */
2846 if (g_fCanChangeIcon)
2847 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002848# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849
2850 ui_get_shellsize();
2851
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002852# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 fdDump = fopen("dump", "wt");
2854
2855 if (fdDump)
2856 {
2857 time_t t;
2858
2859 time(&t);
2860 fputs(ctime(&t), fdDump);
2861 fflush(fdDump);
2862 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002863# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864
2865 g_fWindInitCalled = TRUE;
2866
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002869# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002870 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002871# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002872
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02002873 vtp_flag_init();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002874 vtp_init();
Bram Moolenaar06b7b582020-05-30 17:49:25 +02002875 wt_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002876}
2877
2878/*
2879 * non-GUI version of mch_exit().
2880 * Shut down and exit with status `r'
2881 * Careful: mch_exit() may be called before mch_init()!
2882 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002883 static void
2884mch_exit_c(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002886 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002888 vtp_exit();
2889
Bram Moolenaar955f1982017-02-05 15:10:51 +01002890 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 if (g_fWindInitCalled)
2892 settmode(TMODE_COOK);
2893
Bram Moolenaar0f873732019-12-05 20:28:46 +01002894 ml_close_all(TRUE); // remove all memfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895
2896 if (g_fWindInitCalled)
2897 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002898# ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02002899 mch_restore_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 /*
2901 * Restore both the small and big icons of the console window to
2902 * what they were at startup. Don't do this when the window is
2903 * closed, Vim would hang here.
2904 */
2905 if (g_fCanChangeIcon && !g_fForceExit)
2906 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002907# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002909# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 if (fdDump)
2911 {
2912 time_t t;
2913
2914 time(&t);
2915 fputs(ctime(&t), fdDump);
2916 fclose(fdDump);
2917 }
2918 fdDump = NULL;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002919# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 }
2921
2922 SetConsoleCursorInfo(g_hConOut, &g_cci);
2923 SetConsoleMode(g_hConIn, g_cmodein);
2924 SetConsoleMode(g_hConOut, g_cmodeout);
2925
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002926# ifdef DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 dyn_libintl_end();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002928# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929
2930 exit(r);
2931}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002932#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002934 void
2935mch_init(void)
2936{
2937#ifdef VIMDLL
2938 if (gui.starting)
2939 mch_init_g();
2940 else
2941 mch_init_c();
2942#elif defined(FEAT_GUI_MSWIN)
2943 mch_init_g();
2944#else
2945 mch_init_c();
2946#endif
2947}
2948
2949 void
2950mch_exit(int r)
2951{
Bram Moolenaar173d8412020-04-19 14:02:26 +02002952#ifdef FEAT_NETBEANS_INTG
2953 netbeans_send_disconnect();
2954#endif
2955
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002956#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02002957 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002958 mch_exit_g(r);
2959 else
2960 mch_exit_c(r);
2961#elif defined(FEAT_GUI_MSWIN)
2962 mch_exit_g(r);
2963#else
2964 mch_exit_c(r);
2965#endif
2966}
2967
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968/*
2969 * Do we have an interactive window?
2970 */
2971 int
2972mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002973 int argc UNUSED,
2974 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975{
2976 get_exe_name();
2977
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002978#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002979 return OK; // GUI always has a tty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980#else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002981# ifdef VIMDLL
2982 if (gui.in_use)
2983 return OK;
2984# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 if (isatty(1))
2986 return OK;
2987 return FAIL;
2988#endif
2989}
2990
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002991/*
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01002992 * Set the case of the file name, if it already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 * When "len" is > 0, also expand short to long filenames.
2994 */
2995 void
2996fname_case(
2997 char_u *name,
2998 int len)
2999{
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003000 int flen;
3001 WCHAR *p;
3002 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00003004 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003005 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006 return;
3007
3008 slash_adjust(name);
3009
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003010 p = enc_to_utf16(name, NULL);
3011 if (p == NULL)
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003012 return;
3013
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003014 if (GetLongPathNameW(p, buf, _MAX_PATH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003016 char_u *q = utf16_to_enc(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003018 if (q != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003020 if (len > 0 || flen >= (int)STRLEN(q))
3021 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
3022 vim_free(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023 }
3024 }
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003025 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026}
3027
3028
3029/*
3030 * Insert user name in s[len].
3031 */
3032 int
3033mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003034 char_u *s,
3035 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003037 WCHAR wszUserName[256 + 1]; // UNLEN is 256
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003038 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003040 if (GetUserNameW(wszUserName, &wcch))
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003041 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003042 char_u *p = utf16_to_enc(wszUserName, NULL);
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003043
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003044 if (p != NULL)
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003045 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003046 vim_strncpy(s, p, len - 1);
3047 vim_free(p);
3048 return OK;
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003049 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 s[0] = NUL;
3052 return FAIL;
3053}
3054
3055
3056/*
3057 * Insert host name in s[len].
3058 */
3059 void
3060mch_get_host_name(
3061 char_u *s,
3062 int len)
3063{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003064 WCHAR wszHostName[256 + 1];
3065 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003067 if (GetComputerNameW(wszHostName, &wcch))
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003068 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003069 char_u *p = utf16_to_enc(wszHostName, NULL);
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003070
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003071 if (p != NULL)
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003072 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003073 vim_strncpy(s, p, len - 1);
3074 vim_free(p);
3075 return;
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003076 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078}
3079
3080
3081/*
3082 * return process ID
3083 */
3084 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003085mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086{
3087 return (long)GetCurrentProcessId();
3088}
3089
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003090/*
3091 * return TRUE if process "pid" is still running
3092 */
3093 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02003094mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003095{
3096 HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, 0, (DWORD)pid);
3097 DWORD status = 0;
3098 int ret = FALSE;
3099
3100 if (hProcess == NULL)
3101 return FALSE; // might not have access
3102 if (GetExitCodeProcess(hProcess, &status) )
3103 ret = status == STILL_ACTIVE;
3104 CloseHandle(hProcess);
3105 return ret;
3106}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107
3108/*
3109 * Get name of current directory into buffer 'buf' of length 'len' bytes.
3110 * Return OK for success, FAIL for failure.
3111 */
3112 int
3113mch_dirname(
3114 char_u *buf,
3115 int len)
3116{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003117 WCHAR wbuf[_MAX_PATH + 1];
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003118
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 /*
3120 * Originally this was:
3121 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3122 * But the Win32s known bug list says that getcwd() doesn't work
3123 * so use the Win32 system call instead. <Negri>
3124 */
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003125 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003127 WCHAR wcbuf[_MAX_PATH + 1];
3128 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003130 if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003132 p = utf16_to_enc(wcbuf, NULL);
3133 if (STRLEN(p) >= (size_t)len)
Bram Moolenaarcea1f9e2018-08-19 14:38:42 +02003134 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003135 // long path name is too long, fall back to short one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003137 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 }
3139 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003140 if (p == NULL)
3141 p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003142
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003143 if (p != NULL)
3144 {
3145 vim_strncpy(buf, p, len - 1);
3146 vim_free(p);
3147 return OK;
3148 }
3149 }
3150 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151}
3152
3153/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003154 * Get file permissions for "name".
3155 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 */
3157 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003158mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003160 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003161 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003163 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003164 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165}
3166
3167
3168/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003169 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003170 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003171 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 */
3173 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003174mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003176 long n;
3177 WCHAR *p;
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003178
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003179 p = enc_to_utf16(name, NULL);
3180 if (p == NULL)
3181 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003183 n = _wchmod(p, perm);
3184 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003185 if (n == -1)
3186 return FAIL;
3187
3188 win32_set_archive(name);
3189
3190 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191}
3192
3193/*
3194 * Set hidden flag for "name".
3195 */
3196 void
3197mch_hide(char_u *name)
3198{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003199 int attrs = win32_getattrs(name);
3200 if (attrs == -1)
3201 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003203 attrs |= FILE_ATTRIBUTE_HIDDEN;
3204 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205}
3206
3207/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003208 * Return TRUE if file "name" exists and is hidden.
3209 */
3210 int
3211mch_ishidden(char_u *name)
3212{
3213 int f = win32_getattrs(name);
3214
3215 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003216 return FALSE; // file does not exist at all
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003217
3218 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3219}
3220
3221/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222 * return TRUE if "name" is a directory
3223 * return FALSE if "name" is not a directory or upon error
3224 */
3225 int
3226mch_isdir(char_u *name)
3227{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003228 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229
3230 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003231 return FALSE; // file does not exist at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232
3233 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3234}
3235
3236/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003237 * return TRUE if "name" is a directory, NOT a symlink to a directory
3238 * return FALSE if "name" is not a directory
3239 * return FALSE for error
3240 */
3241 int
3242mch_isrealdir(char_u *name)
3243{
3244 return mch_isdir(name) && !mch_is_symbolic_link(name);
3245}
3246
3247/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003248 * Create directory "name".
3249 * Return 0 on success, -1 on error.
3250 */
3251 int
3252mch_mkdir(char_u *name)
3253{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003254 WCHAR *p;
3255 int retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003256
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003257 p = enc_to_utf16(name, NULL);
3258 if (p == NULL)
3259 return -1;
3260 retval = _wmkdir(p);
3261 vim_free(p);
3262 return retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003263}
3264
3265/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003266 * Delete directory "name".
3267 * Return 0 on success, -1 on error.
3268 */
3269 int
3270mch_rmdir(char_u *name)
3271{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003272 WCHAR *p;
3273 int retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003274
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003275 p = enc_to_utf16(name, NULL);
3276 if (p == NULL)
3277 return -1;
3278 retval = _wrmdir(p);
3279 vim_free(p);
3280 return retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003281}
3282
3283/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003284 * Return TRUE if file "fname" has more than one link.
3285 */
3286 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003287mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003288{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003289 BY_HANDLE_FILE_INFORMATION info;
3290
3291 return win32_fileinfo(fname, &info) == FILEINFO_OK
3292 && info.nNumberOfLinks > 1;
3293}
3294
3295/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003296 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003297 */
3298 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003299mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003300{
3301 HANDLE hFind;
3302 int res = FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003303 DWORD fileFlags = 0, reparseTag = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003304 WCHAR *wn;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003305 WIN32_FIND_DATAW findDataW;
3306
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003307 wn = enc_to_utf16(name, NULL);
3308 if (wn == NULL)
3309 return FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003310
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003311 hFind = FindFirstFileW(wn, &findDataW);
3312 vim_free(wn);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003313 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003314 {
3315 fileFlags = findDataW.dwFileAttributes;
3316 reparseTag = findDataW.dwReserved0;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003317 FindClose(hFind);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003318 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003319
3320 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003321 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3322 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003323 res = TRUE;
3324
3325 return res;
3326}
3327
3328/*
3329 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3330 * link.
3331 */
3332 int
3333mch_is_linked(char_u *fname)
3334{
3335 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3336 return TRUE;
3337 return FALSE;
3338}
3339
3340/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003341 * Get the by-handle-file-information for "fname".
3342 * Returns FILEINFO_OK when OK.
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003343 * Returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003344 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3345 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3346 */
3347 int
3348win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3349{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003350 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003351 int res = FILEINFO_READ_FAIL;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003352 WCHAR *wn;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003353
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003354 wn = enc_to_utf16(fname, NULL);
3355 if (wn == NULL)
3356 return FILEINFO_ENC_FAIL;
3357
3358 hFile = CreateFileW(wn, // file name
3359 GENERIC_READ, // access mode
3360 FILE_SHARE_READ | FILE_SHARE_WRITE, // share mode
3361 NULL, // security descriptor
3362 OPEN_EXISTING, // creation disposition
3363 FILE_FLAG_BACKUP_SEMANTICS, // file attributes
3364 NULL); // handle to template file
3365 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003366
3367 if (hFile != INVALID_HANDLE_VALUE)
3368 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003369 if (GetFileInformationByHandle(hFile, info) != 0)
3370 res = FILEINFO_OK;
3371 else
3372 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003373 CloseHandle(hFile);
3374 }
3375
Bram Moolenaar03f48552006-02-28 23:52:23 +00003376 return res;
3377}
3378
3379/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003380 * get file attributes for `name'
3381 * -1 : error
3382 * else FILE_ATTRIBUTE_* defined in winnt.h
3383 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003384 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003385win32_getattrs(char_u *name)
3386{
3387 int attr;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003388 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003389
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003390 p = enc_to_utf16(name, NULL);
3391 if (p == NULL)
3392 return INVALID_FILE_ATTRIBUTES;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003393
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003394 attr = GetFileAttributesW(p);
3395 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003396
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003397 return attr;
3398}
3399
3400/*
3401 * set file attributes for `name' to `attrs'
3402 *
3403 * return -1 for failure, 0 otherwise
3404 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003405 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003406win32_setattrs(char_u *name, int attrs)
3407{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003408 int res;
3409 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003410
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003411 p = enc_to_utf16(name, NULL);
3412 if (p == NULL)
3413 return -1;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003414
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003415 res = SetFileAttributesW(p, attrs);
3416 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003417
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003418 return res ? 0 : -1;
3419}
3420
3421/*
3422 * Set archive flag for "name".
3423 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003424 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003425win32_set_archive(char_u *name)
3426{
3427 int attrs = win32_getattrs(name);
3428 if (attrs == -1)
3429 return -1;
3430
3431 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3432 return win32_setattrs(name, attrs);
3433}
3434
3435/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 * Return TRUE if file or directory "name" is writable (not readonly).
3437 * Strange semantics of Win32: a readonly directory is writable, but you can't
3438 * delete a file. Let's say this means it is writable.
3439 */
3440 int
3441mch_writable(char_u *name)
3442{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003443 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003445 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3446 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447}
3448
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003450 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003451 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003452 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3453 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 */
3455 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003456mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457{
Bram Moolenaar95da1362020-05-30 18:37:55 +02003458 return executable_exists((char *)name, path, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460
3461/*
3462 * Check what "name" is:
3463 * NODE_NORMAL: file or directory (or doesn't exist)
3464 * NODE_WRITABLE: writable device, socket, fifo, etc.
3465 * NODE_OTHER: non-writable things
3466 */
3467 int
3468mch_nodetype(char_u *name)
3469{
3470 HANDLE hFile;
3471 int type;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003472 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473
Bram Moolenaar0f873732019-12-05 20:28:46 +01003474 // We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3475 // read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3476 // here.
Bram Moolenaar043545e2006-10-10 16:44:07 +00003477 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3478 return NODE_WRITABLE;
3479
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003480 wn = enc_to_utf16(name, NULL);
3481 if (wn == NULL)
3482 return NODE_NORMAL;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003483
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003484 hFile = CreateFileW(wn, // file name
3485 GENERIC_WRITE, // access mode
3486 0, // share mode
3487 NULL, // security descriptor
3488 OPEN_EXISTING, // creation disposition
3489 0, // file attributes
3490 NULL); // handle to template file
3491 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 if (hFile == INVALID_HANDLE_VALUE)
3493 return NODE_NORMAL;
3494
3495 type = GetFileType(hFile);
3496 CloseHandle(hFile);
3497 if (type == FILE_TYPE_CHAR)
3498 return NODE_WRITABLE;
3499 if (type == FILE_TYPE_DISK)
3500 return NODE_NORMAL;
3501 return NODE_OTHER;
3502}
3503
3504#ifdef HAVE_ACL
3505struct my_acl
3506{
3507 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3508 PSID pSidOwner;
3509 PSID pSidGroup;
3510 PACL pDacl;
3511 PACL pSacl;
3512};
3513#endif
3514
3515/*
3516 * Return a pointer to the ACL of file "fname" in allocated memory.
3517 * Return NULL if the ACL is not available for whatever reason.
3518 */
3519 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003520mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521{
3522#ifndef HAVE_ACL
3523 return (vim_acl_T)NULL;
3524#else
3525 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003526 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003528 p = ALLOC_CLEAR_ONE(struct my_acl);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003529 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003531 WCHAR *wn;
Bram Moolenaar27515922013-06-29 15:36:26 +02003532
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003533 wn = enc_to_utf16(fname, NULL);
3534 if (wn == NULL)
3535 return NULL;
3536
3537 // Try to retrieve the entire security descriptor.
3538 err = GetNamedSecurityInfoW(
3539 wn, // Abstract filename
3540 SE_FILE_OBJECT, // File Object
3541 OWNER_SECURITY_INFORMATION |
3542 GROUP_SECURITY_INFORMATION |
3543 DACL_SECURITY_INFORMATION |
3544 SACL_SECURITY_INFORMATION,
3545 &p->pSidOwner, // Ownership information.
3546 &p->pSidGroup, // Group membership.
3547 &p->pDacl, // Discretionary information.
3548 &p->pSacl, // For auditing purposes.
3549 &p->pSecurityDescriptor);
3550 if (err == ERROR_ACCESS_DENIED ||
3551 err == ERROR_PRIVILEGE_NOT_HELD)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003552 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003553 // Retrieve only DACL.
3554 (void)GetNamedSecurityInfoW(
3555 wn,
3556 SE_FILE_OBJECT,
3557 DACL_SECURITY_INFORMATION,
3558 NULL,
3559 NULL,
3560 &p->pDacl,
3561 NULL,
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003562 &p->pSecurityDescriptor);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003563 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003564 if (p->pSecurityDescriptor == NULL)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003565 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003566 mch_free_acl((vim_acl_T)p);
3567 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003569 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570 }
3571
3572 return (vim_acl_T)p;
3573#endif
3574}
3575
Bram Moolenaar27515922013-06-29 15:36:26 +02003576#ifdef HAVE_ACL
3577/*
3578 * Check if "acl" contains inherited ACE.
3579 */
3580 static BOOL
3581is_acl_inherited(PACL acl)
3582{
3583 DWORD i;
3584 ACL_SIZE_INFORMATION acl_info;
3585 PACCESS_ALLOWED_ACE ace;
3586
3587 acl_info.AceCount = 0;
3588 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3589 for (i = 0; i < acl_info.AceCount; i++)
3590 {
3591 GetAce(acl, i, (LPVOID *)&ace);
3592 if (ace->Header.AceFlags & INHERITED_ACE)
3593 return TRUE;
3594 }
3595 return FALSE;
3596}
3597#endif
3598
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599/*
3600 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3601 * Errors are ignored.
3602 * This must only be called with "acl" equal to what mch_get_acl() returned.
3603 */
3604 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003605mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003606{
3607#ifdef HAVE_ACL
3608 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003609 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003610 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003612 if (p == NULL)
3613 return;
3614
3615 wn = enc_to_utf16(fname, NULL);
3616 if (wn == NULL)
3617 return;
3618
3619 // Set security flags
3620 if (p->pSidOwner)
3621 sec_info |= OWNER_SECURITY_INFORMATION;
3622 if (p->pSidGroup)
3623 sec_info |= GROUP_SECURITY_INFORMATION;
3624 if (p->pDacl)
Bram Moolenaar27515922013-06-29 15:36:26 +02003625 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003626 sec_info |= DACL_SECURITY_INFORMATION;
3627 // Do not inherit its parent's DACL.
3628 // If the DACL is inherited, Cygwin permissions would be changed.
3629 if (!is_acl_inherited(p->pDacl))
3630 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
Bram Moolenaar27515922013-06-29 15:36:26 +02003631 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003632 if (p->pSacl)
3633 sec_info |= SACL_SECURITY_INFORMATION;
3634
3635 (void)SetNamedSecurityInfoW(
3636 wn, // Abstract filename
3637 SE_FILE_OBJECT, // File Object
3638 sec_info,
3639 p->pSidOwner, // Ownership information.
3640 p->pSidGroup, // Group membership.
3641 p->pDacl, // Discretionary information.
3642 p->pSacl // For auditing purposes.
3643 );
3644 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645#endif
3646}
3647
3648 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003649mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650{
3651#ifdef HAVE_ACL
3652 struct my_acl *p = (struct my_acl *)acl;
3653
3654 if (p != NULL)
3655 {
3656 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3657 vim_free(p);
3658 }
3659#endif
3660}
3661
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003662#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663
3664/*
3665 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3666 */
3667 static BOOL WINAPI
3668handler_routine(
3669 DWORD dwCtrlType)
3670{
Bram Moolenaar589b1102017-08-12 16:39:05 +02003671 INPUT_RECORD ir;
3672 DWORD out;
3673
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 switch (dwCtrlType)
3675 {
3676 case CTRL_C_EVENT:
3677 if (ctrl_c_interrupts)
3678 g_fCtrlCPressed = TRUE;
3679 return TRUE;
3680
3681 case CTRL_BREAK_EVENT:
3682 g_fCBrkPressed = TRUE;
Bram Moolenaar589b1102017-08-12 16:39:05 +02003683 ctrl_break_was_pressed = TRUE;
Bram Moolenaar0f873732019-12-05 20:28:46 +01003684 // ReadConsoleInput is blocking, send a key event to continue.
Bram Moolenaar589b1102017-08-12 16:39:05 +02003685 ir.EventType = KEY_EVENT;
3686 ir.Event.KeyEvent.bKeyDown = TRUE;
3687 ir.Event.KeyEvent.wRepeatCount = 1;
3688 ir.Event.KeyEvent.wVirtualKeyCode = VK_CANCEL;
3689 ir.Event.KeyEvent.wVirtualScanCode = 0;
3690 ir.Event.KeyEvent.dwControlKeyState = 0;
3691 ir.Event.KeyEvent.uChar.UnicodeChar = 0;
3692 WriteConsoleInput(g_hConIn, &ir, 1, &out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 return TRUE;
3694
Bram Moolenaar0f873732019-12-05 20:28:46 +01003695 // fatal events: shut down gracefully
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 case CTRL_CLOSE_EVENT:
3697 case CTRL_LOGOFF_EVENT:
3698 case CTRL_SHUTDOWN_EVENT:
3699 windgoto((int)Rows - 1, 0);
3700 g_fForceExit = TRUE;
3701
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003702 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 (dwCtrlType == CTRL_CLOSE_EVENT
3704 ? _("close")
3705 : dwCtrlType == CTRL_LOGOFF_EVENT
3706 ? _("logoff")
3707 : _("shutdown")));
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003708# ifdef DEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 OutputDebugString(IObuff);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003710# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711
Bram Moolenaar0f873732019-12-05 20:28:46 +01003712 preserve_exit(); // output IObuff, preserve files and exit
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713
Bram Moolenaar0f873732019-12-05 20:28:46 +01003714 return TRUE; // not reached
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715
3716 default:
3717 return FALSE;
3718 }
3719}
3720
3721
3722/*
3723 * set the tty in (raw) ? "raw" : "cooked" mode
3724 */
3725 void
Bram Moolenaar26e86442020-05-17 14:06:16 +02003726mch_settmode(tmode_T tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727{
3728 DWORD cmodein;
3729 DWORD cmodeout;
3730 BOOL bEnableHandler;
3731
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003732# ifdef VIMDLL
3733 if (gui.in_use)
3734 return;
3735# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736 GetConsoleMode(g_hConIn, &cmodein);
3737 GetConsoleMode(g_hConOut, &cmodeout);
3738 if (tmode == TMODE_RAW)
3739 {
3740 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3741 ENABLE_ECHO_INPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 if (g_fMouseActive)
3743 cmodein |= ENABLE_MOUSE_INPUT;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003744 cmodeout &= ~(
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003745# ifdef FEAT_TERMGUICOLORS
Bram Moolenaar0f873732019-12-05 20:28:46 +01003746 // Do not turn off the ENABLE_PROCESSED_OUTPUT flag when using
3747 // VTP.
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003748 ((vtp_working) ? 0 : ENABLE_PROCESSED_OUTPUT) |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003749# else
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003750 ENABLE_PROCESSED_OUTPUT |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003751# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003752 ENABLE_WRAP_AT_EOL_OUTPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 bEnableHandler = TRUE;
3754 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01003755 else // cooked
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 {
3757 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3758 ENABLE_ECHO_INPUT);
3759 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3760 bEnableHandler = FALSE;
3761 }
3762 SetConsoleMode(g_hConIn, cmodein);
3763 SetConsoleMode(g_hConOut, cmodeout);
3764 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3765
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003766# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 if (fdDump)
3768 {
3769 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3770 tmode == TMODE_RAW ? "raw" :
3771 tmode == TMODE_COOK ? "cooked" : "normal",
3772 cmodein, cmodeout);
3773 fflush(fdDump);
3774 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003775# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776}
3777
3778
3779/*
3780 * Get the size of the current window in `Rows' and `Columns'
3781 * Return OK when size could be determined, FAIL otherwise.
3782 */
3783 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003784mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785{
3786 CONSOLE_SCREEN_BUFFER_INFO csbi;
3787
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003788# ifdef VIMDLL
3789 if (gui.in_use)
3790 return OK;
3791# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3793 {
3794 /*
3795 * For some reason, we are trying to get the screen dimensions
3796 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3797 * variables are really intended to mean the size of Vim screen
3798 * while in termcap mode.
3799 */
3800 Rows = g_cbTermcap.Info.dwSize.Y;
3801 Columns = g_cbTermcap.Info.dwSize.X;
3802 }
3803 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3804 {
3805 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3806 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3807 }
3808 else
3809 {
3810 Rows = 25;
3811 Columns = 80;
3812 }
3813 return OK;
3814}
3815
3816/*
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003817 * Resize console buffer to 'COORD'
3818 */
3819 static void
3820ResizeConBuf(
3821 HANDLE hConsole,
3822 COORD coordScreen)
3823{
3824 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3825 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003826# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003827 if (fdDump)
3828 {
3829 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3830 GetLastError());
3831 fflush(fdDump);
3832 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003833# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003834 }
3835}
3836
3837/*
3838 * Resize console window size to 'srWindowRect'
3839 */
3840 static void
3841ResizeWindow(
3842 HANDLE hConsole,
3843 SMALL_RECT srWindowRect)
3844{
3845 if (!SetConsoleWindowInfo(hConsole, TRUE, &srWindowRect))
3846 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003847# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003848 if (fdDump)
3849 {
3850 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3851 GetLastError());
3852 fflush(fdDump);
3853 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003854# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003855 }
3856}
3857
3858/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 * Set a console window to `xSize' * `ySize'
3860 */
3861 static void
3862ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003863 HANDLE hConsole,
3864 int xSize,
3865 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003867 CONSOLE_SCREEN_BUFFER_INFO csbi; // hold current console buffer info
3868 SMALL_RECT srWindowRect; // hold the new console size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 COORD coordScreen;
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003870 COORD cursor;
Bram Moolenaar2551c032018-08-23 22:38:31 +02003871 static int resized = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003873# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 if (fdDump)
3875 {
3876 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3877 fflush(fdDump);
3878 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003879# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880
Bram Moolenaar0f873732019-12-05 20:28:46 +01003881 // get the largest size we can size the console window to
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882 coordScreen = GetLargestConsoleWindowSize(hConsole);
3883
Bram Moolenaar0f873732019-12-05 20:28:46 +01003884 // define the new console window size and scroll position
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3886 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3887 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3888
3889 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3890 {
3891 int sx, sy;
3892
3893 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3894 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3895 if (sy < ySize || sx < xSize)
3896 {
3897 /*
3898 * Increasing number of lines/columns, do buffer first.
3899 * Use the maximal size in x and y direction.
3900 */
3901 if (sy < ySize)
3902 coordScreen.Y = ySize;
3903 else
3904 coordScreen.Y = sy;
3905 if (sx < xSize)
3906 coordScreen.X = xSize;
3907 else
3908 coordScreen.X = sx;
3909 SetConsoleScreenBufferSize(hConsole, coordScreen);
3910 }
3911 }
3912
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003913 // define the new console buffer size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 coordScreen.X = xSize;
3915 coordScreen.Y = ySize;
3916
Bram Moolenaar2551c032018-08-23 22:38:31 +02003917 // In the new console call API, only the first time in reverse order
3918 if (!vtp_working || resized)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 {
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003920 ResizeWindow(hConsole, srWindowRect);
3921 ResizeConBuf(hConsole, coordScreen);
3922 }
3923 else
3924 {
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003925 // Workaround for a Windows 10 bug
3926 cursor.X = srWindowRect.Left;
3927 cursor.Y = srWindowRect.Top;
3928 SetConsoleCursorPosition(hConsole, cursor);
3929
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003930 ResizeConBuf(hConsole, coordScreen);
3931 ResizeWindow(hConsole, srWindowRect);
Bram Moolenaar2551c032018-08-23 22:38:31 +02003932 resized = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 }
3934}
3935
3936
3937/*
3938 * Set the console window to `Rows' * `Columns'
3939 */
3940 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003941mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942{
3943 COORD coordScreen;
3944
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003945# ifdef VIMDLL
3946 if (gui.in_use)
3947 return;
3948# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01003949 // Don't change window size while still starting up
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 if (suppress_winsize != 0)
3951 {
3952 suppress_winsize = 2;
3953 return;
3954 }
3955
3956 if (term_console)
3957 {
3958 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3959
Bram Moolenaar0f873732019-12-05 20:28:46 +01003960 // Clamp Rows and Columns to reasonable values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961 if (Rows > coordScreen.Y)
3962 Rows = coordScreen.Y;
3963 if (Columns > coordScreen.X)
3964 Columns = coordScreen.X;
3965
3966 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3967 }
3968}
3969
3970/*
3971 * Rows and/or Columns has changed.
3972 */
3973 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003974mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003976# ifdef VIMDLL
3977 if (gui.in_use)
3978 return;
3979# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3981}
3982
3983
3984/*
3985 * Called when started up, to set the winsize that was delayed.
3986 */
3987 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003988mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989{
3990 if (suppress_winsize == 2)
3991 {
3992 suppress_winsize = 0;
3993 mch_set_shellsize();
3994 shell_resized();
3995 }
3996 suppress_winsize = 0;
3997}
Bram Moolenaar0f873732019-12-05 20:28:46 +01003998#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004000 static BOOL
4001vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01004002 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004003 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01004004 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004005 STARTUPINFO *si,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004006 PROCESS_INFORMATION *pi,
4007 LPVOID *env,
4008 char *cwd)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004009{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004010 BOOL ret = FALSE;
4011 WCHAR *wcmd, *wcwd = NULL;
4012
4013 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4014 if (wcmd == NULL)
4015 return FALSE;
4016 if (cwd != NULL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004017 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004018 wcwd = enc_to_utf16((char_u *)cwd, NULL);
4019 if (wcwd == NULL)
4020 goto theend;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004021 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004022
4023 ret = CreateProcessW(
4024 NULL, // Executable name
4025 wcmd, // Command to execute
4026 NULL, // Process security attributes
4027 NULL, // Thread security attributes
4028 inherit_handles, // Inherit handles
4029 flags, // Creation flags
4030 env, // Environment
4031 wcwd, // Current directory
4032 (LPSTARTUPINFOW)si, // Startup information
4033 pi); // Process information
4034theend:
4035 vim_free(wcmd);
4036 vim_free(wcwd);
4037 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004038}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039
4040
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004041 static HINSTANCE
4042vim_shell_execute(
4043 char *cmd,
4044 INT n_show_cmd)
4045{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004046 HINSTANCE ret;
4047 WCHAR *wcmd;
4048
4049 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4050 if (wcmd == NULL)
4051 return (HINSTANCE) 0;
4052
4053 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd);
4054 vim_free(wcmd);
4055 return ret;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004056}
4057
4058
Bram Moolenaar4f974752019-02-17 17:44:42 +01004059#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060
4061/*
4062 * Specialised version of system() for Win32 GUI mode.
4063 * This version proceeds as follows:
4064 * 1. Create a console window for use by the subprocess
4065 * 2. Run the subprocess (it gets the allocated console by default)
4066 * 3. Wait for the subprocess to terminate and get its exit code
4067 * 4. Prompt the user to press a key to close the console window
4068 */
4069 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004070mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071{
4072 STARTUPINFO si;
4073 PROCESS_INFORMATION pi;
4074 DWORD ret = 0;
4075 HWND hwnd = GetFocus();
4076
4077 si.cb = sizeof(si);
4078 si.lpReserved = NULL;
4079 si.lpDesktop = NULL;
4080 si.lpTitle = NULL;
4081 si.dwFlags = STARTF_USESHOWWINDOW;
4082 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004083 * It's nicer to run a filter command in a minimized window.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004084 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004086 if (options & SHELL_DOOUT)
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004087 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 else
4089 si.wShowWindow = SW_SHOWNORMAL;
4090 si.cbReserved2 = 0;
4091 si.lpReserved2 = NULL;
4092
Bram Moolenaar0f873732019-12-05 20:28:46 +01004093 // Now, run the command
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004094 vim_create_process(cmd, FALSE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004095 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE,
4096 &si, &pi, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097
Bram Moolenaar0f873732019-12-05 20:28:46 +01004098 // Wait for the command to terminate before continuing
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004100# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 int delay = 1;
4102
Bram Moolenaar0f873732019-12-05 20:28:46 +01004103 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 for (;;)
4105 {
4106 MSG msg;
4107
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004108 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 {
4110 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004111 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004112 delay = 1;
4113 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 }
4115 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4116 break;
4117
Bram Moolenaar0f873732019-12-05 20:28:46 +01004118 // We start waiting for a very short time and then increase it, so
4119 // that we respond quickly when the process is quick, and don't
4120 // consume too much overhead when it's slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 if (delay < 50)
4122 delay += 10;
4123 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004124# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 WaitForSingleObject(pi.hProcess, INFINITE);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004126# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127
Bram Moolenaar0f873732019-12-05 20:28:46 +01004128 // Get the command exit code
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 GetExitCodeProcess(pi.hProcess, &ret);
4130 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131
Bram Moolenaar0f873732019-12-05 20:28:46 +01004132 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 CloseHandle(pi.hThread);
4134 CloseHandle(pi.hProcess);
4135
Bram Moolenaar0f873732019-12-05 20:28:46 +01004136 // Try to get input focus back. Doesn't always work though.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4138
4139 return ret;
4140}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004141
4142/*
4143 * Thread launched by the gui to send the current buffer data to the
4144 * process. This way avoid to hang up vim totally if the children
4145 * process take a long time to process the lines.
4146 */
Bram Moolenaar4c38d662016-08-03 20:54:57 +02004147 static unsigned int __stdcall
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004148sub_process_writer(LPVOID param)
4149{
4150 HANDLE g_hChildStd_IN_Wr = param;
4151 linenr_T lnum = curbuf->b_op_start.lnum;
4152 DWORD len = 0;
4153 DWORD l;
4154 char_u *lp = ml_get(lnum);
4155 char_u *s;
4156 int written = 0;
4157
4158 for (;;)
4159 {
4160 l = (DWORD)STRLEN(lp + written);
4161 if (l == 0)
4162 len = 0;
4163 else if (lp[written] == NL)
4164 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004165 // NL -> NUL translation
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004166 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4167 }
4168 else
4169 {
4170 s = vim_strchr(lp + written, NL);
4171 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4172 s == NULL ? l : (DWORD)(s - (lp + written)),
4173 &len, NULL);
4174 }
4175 if (len == (int)l)
4176 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004177 // Finished a line, add a NL, unless this line should not have
4178 // one.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004179 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004180 || (!curbuf->b_p_bin
4181 && curbuf->b_p_fixeol)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004182 || (lnum != curbuf->b_no_eol_lnum
4183 && (lnum != curbuf->b_ml.ml_line_count
4184 || curbuf->b_p_eol)))
4185 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02004186 WriteFile(g_hChildStd_IN_Wr, "\n", 1,
4187 (LPDWORD)&vim_ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004188 }
4189
4190 ++lnum;
4191 if (lnum > curbuf->b_op_end.lnum)
4192 break;
4193
4194 lp = ml_get(lnum);
4195 written = 0;
4196 }
4197 else if (len > 0)
4198 written += len;
4199 }
4200
Bram Moolenaar0f873732019-12-05 20:28:46 +01004201 // finished all the lines, close pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004202 CloseHandle(g_hChildStd_IN_Wr);
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004203 return 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004204}
4205
4206
Bram Moolenaar0f873732019-12-05 20:28:46 +01004207# define BUFLEN 100 // length for buffer, stolen from unix version
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004208
4209/*
4210 * This function read from the children's stdout and write the
4211 * data on screen or in the buffer accordingly.
4212 */
4213 static void
4214dump_pipe(int options,
4215 HANDLE g_hChildStd_OUT_Rd,
4216 garray_T *ga,
4217 char_u buffer[],
4218 DWORD *buffer_off)
4219{
4220 DWORD availableBytes = 0;
4221 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004222 int ret;
4223 DWORD len;
4224 DWORD toRead;
4225 int repeatCount;
4226
Bram Moolenaar0f873732019-12-05 20:28:46 +01004227 // we query the pipe to see if there is any data to read
4228 // to avoid to perform a blocking read
4229 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, // pipe to query
4230 NULL, // optional buffer
4231 0, // buffer size
4232 NULL, // number of read bytes
4233 &availableBytes, // available bytes total
4234 NULL); // byteLeft
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004235
4236 repeatCount = 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004237 // We got real data in the pipe, read it
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004238 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004239 {
4240 repeatCount++;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004241 toRead = (DWORD)(BUFLEN - *buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004242 toRead = availableBytes < toRead ? availableBytes : toRead;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004243 ReadFile(g_hChildStd_OUT_Rd, buffer + *buffer_off, toRead , &len, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004244
Bram Moolenaar0f873732019-12-05 20:28:46 +01004245 // If we haven't read anything, there is a problem
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004246 if (len == 0)
4247 break;
4248
4249 availableBytes -= len;
4250
4251 if (options & SHELL_READ)
4252 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004253 // Do NUL -> NL translation, append NL separated
4254 // lines to the current buffer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004255 for (i = 0; i < len; ++i)
4256 {
4257 if (buffer[i] == NL)
4258 append_ga_line(ga);
4259 else if (buffer[i] == NUL)
4260 ga_append(ga, NL);
4261 else
4262 ga_append(ga, buffer[i]);
4263 }
4264 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004265 else if (has_mbyte)
4266 {
4267 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004268 int c;
4269 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004270
4271 len += *buffer_off;
4272 buffer[len] = NUL;
4273
Bram Moolenaar0f873732019-12-05 20:28:46 +01004274 // Check if the last character in buffer[] is
4275 // incomplete, keep these bytes for the next
4276 // round.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004277 for (p = buffer; p < buffer + len; p += l)
4278 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004279 l = MB_CPTR2LEN(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004280 if (l == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004281 l = 1; // NUL byte?
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004282 else if (MB_BYTE2LEN(*p) != l)
4283 break;
4284 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004285 if (p == buffer) // no complete character
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004286 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004287 // avoid getting stuck at an illegal byte
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004288 if (len >= 12)
4289 ++p;
4290 else
4291 {
4292 *buffer_off = len;
4293 return;
4294 }
4295 }
4296 c = *p;
4297 *p = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004298 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004299 if (p < buffer + len)
4300 {
4301 *p = c;
4302 *buffer_off = (DWORD)((buffer + len) - p);
4303 mch_memmove(buffer, p, *buffer_off);
4304 return;
4305 }
4306 *buffer_off = 0;
4307 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004308 else
4309 {
4310 buffer[len] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004311 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004312 }
4313
4314 windgoto(msg_row, msg_col);
4315 cursor_on();
4316 out_flush();
4317 }
4318}
4319
4320/*
4321 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4322 * for communication and doesn't open any new window.
4323 */
4324 static int
4325mch_system_piped(char *cmd, int options)
4326{
4327 STARTUPINFO si;
4328 PROCESS_INFORMATION pi;
4329 DWORD ret = 0;
4330
4331 HANDLE g_hChildStd_IN_Rd = NULL;
4332 HANDLE g_hChildStd_IN_Wr = NULL;
4333 HANDLE g_hChildStd_OUT_Rd = NULL;
4334 HANDLE g_hChildStd_OUT_Wr = NULL;
4335
Bram Moolenaar0f873732019-12-05 20:28:46 +01004336 char_u buffer[BUFLEN + 1]; // reading buffer + size
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004337 DWORD len;
4338
Bram Moolenaar0f873732019-12-05 20:28:46 +01004339 // buffer used to receive keys
4340 char_u ta_buf[BUFLEN + 1]; // TypeAHead
4341 int ta_len = 0; // valid bytes in ta_buf[]
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004342
4343 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004344 int noread_cnt = 0;
4345 garray_T ga;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004346 int delay = 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004347 DWORD buffer_off = 0; // valid bytes in buffer[]
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004348 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004349
4350 SECURITY_ATTRIBUTES saAttr;
4351
Bram Moolenaar0f873732019-12-05 20:28:46 +01004352 // Set the bInheritHandle flag so pipe handles are inherited.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004353 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4354 saAttr.bInheritHandle = TRUE;
4355 saAttr.lpSecurityDescriptor = NULL;
4356
4357 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004358 // Ensure the read handle to the pipe for STDOUT is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004359 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004360 // Create a pipe for the child process's STDIN.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004361 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004362 // Ensure the write handle to the pipe for STDIN is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004363 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004364 {
4365 CloseHandle(g_hChildStd_IN_Rd);
4366 CloseHandle(g_hChildStd_IN_Wr);
4367 CloseHandle(g_hChildStd_OUT_Rd);
4368 CloseHandle(g_hChildStd_OUT_Wr);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004369 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004370 }
4371
4372 si.cb = sizeof(si);
4373 si.lpReserved = NULL;
4374 si.lpDesktop = NULL;
4375 si.lpTitle = NULL;
4376 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4377
Bram Moolenaar0f873732019-12-05 20:28:46 +01004378 // set-up our file redirection
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004379 si.hStdError = g_hChildStd_OUT_Wr;
4380 si.hStdOutput = g_hChildStd_OUT_Wr;
4381 si.hStdInput = g_hChildStd_IN_Rd;
4382 si.wShowWindow = SW_HIDE;
4383 si.cbReserved2 = 0;
4384 si.lpReserved2 = NULL;
4385
4386 if (options & SHELL_READ)
4387 ga_init2(&ga, 1, BUFLEN);
4388
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004389 if (cmd != NULL)
4390 {
4391 p = (char *)vim_strsave((char_u *)cmd);
4392 if (p != NULL)
4393 unescape_shellxquote((char_u *)p, p_sxe);
4394 else
4395 p = cmd;
4396 }
4397
Bram Moolenaar0f873732019-12-05 20:28:46 +01004398 // Now, run the command.
4399 // About "Inherit handles" being TRUE: this command can be litigious,
4400 // handle inheritance was deactivated for pending temp file, but, if we
4401 // deactivate it, the pipes don't work for some reason.
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004402 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE,
4403 &si, &pi, NULL, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004404
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004405 if (p != cmd)
4406 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004407
Bram Moolenaar0f873732019-12-05 20:28:46 +01004408 // Close our unused side of the pipes
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004409 CloseHandle(g_hChildStd_IN_Rd);
4410 CloseHandle(g_hChildStd_OUT_Wr);
4411
4412 if (options & SHELL_WRITE)
4413 {
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004414 HANDLE thread = (HANDLE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004415 _beginthreadex(NULL, // security attributes
4416 0, // default stack size
4417 sub_process_writer, // function to be executed
4418 g_hChildStd_IN_Wr, // parameter
4419 0, // creation flag, start immediately
4420 NULL); // we don't care about thread id
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004421 CloseHandle(thread);
4422 g_hChildStd_IN_Wr = NULL;
4423 }
4424
Bram Moolenaar0f873732019-12-05 20:28:46 +01004425 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004426 for (;;)
4427 {
4428 MSG msg;
4429
Bram Moolenaar175d0702013-12-11 18:36:33 +01004430 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004431 {
4432 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004433 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004434 }
4435
Bram Moolenaar0f873732019-12-05 20:28:46 +01004436 // write pipe information in the window
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004437 if ((options & (SHELL_READ|SHELL_WRITE))
4438# ifdef FEAT_GUI
4439 || gui.in_use
4440# endif
4441 )
4442 {
4443 len = 0;
4444 if (!(options & SHELL_EXPAND)
4445 && ((options &
4446 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4447 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4448# ifdef FEAT_GUI
4449 || gui.in_use
4450# endif
4451 )
4452 && (ta_len > 0 || noread_cnt > 4))
4453 {
4454 if (ta_len == 0)
4455 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004456 // Get extra characters when we don't have any. Reset the
4457 // counter and timer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004458 noread_cnt = 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004459 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4460 }
4461 if (ta_len > 0 || len > 0)
4462 {
4463 /*
4464 * For pipes: Check for CTRL-C: send interrupt signal to
4465 * child. Check for CTRL-D: EOF, close pipe to child.
4466 */
4467 if (len == 1 && cmd != NULL)
4468 {
4469 if (ta_buf[ta_len] == Ctrl_C)
4470 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004471 // Learn what exit code is expected, for
4472 // now put 9 as SIGKILL
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004473 TerminateProcess(pi.hProcess, 9);
4474 }
4475 if (ta_buf[ta_len] == Ctrl_D)
4476 {
4477 CloseHandle(g_hChildStd_IN_Wr);
4478 g_hChildStd_IN_Wr = NULL;
4479 }
4480 }
4481
Bram Moolenaarf4140482020-02-15 23:06:45 +01004482 term_replace_bs_del_keycode(ta_buf, ta_len, len);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004483
4484 /*
4485 * For pipes: echo the typed characters. For a pty this
4486 * does not seem to work.
4487 */
4488 for (i = ta_len; i < ta_len + len; ++i)
4489 {
4490 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4491 msg_putchar(ta_buf[i]);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004492 else if (has_mbyte)
4493 {
4494 int l = (*mb_ptr2len)(ta_buf + i);
4495
4496 msg_outtrans_len(ta_buf + i, l);
4497 i += l - 1;
4498 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004499 else
4500 msg_outtrans_len(ta_buf + i, 1);
4501 }
4502 windgoto(msg_row, msg_col);
4503 out_flush();
4504
4505 ta_len += len;
4506
4507 /*
4508 * Write the characters to the child, unless EOF has been
4509 * typed for pipes. Write one character at a time, to
4510 * avoid losing too much typeahead. When writing buffer
4511 * lines, drop the typed characters (only check for
4512 * CTRL-C).
4513 */
4514 if (options & SHELL_WRITE)
4515 ta_len = 0;
4516 else if (g_hChildStd_IN_Wr != NULL)
4517 {
4518 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4519 1, &len, NULL);
4520 // if we are typing in, we want to keep things reactive
4521 delay = 1;
4522 if (len > 0)
4523 {
4524 ta_len -= len;
4525 mch_memmove(ta_buf, ta_buf + len, ta_len);
4526 }
4527 }
4528 }
4529 }
4530 }
4531
4532 if (ta_len)
4533 ui_inchar_undo(ta_buf, ta_len);
4534
4535 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4536 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004537 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004538 break;
4539 }
4540
4541 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004542 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004543
Bram Moolenaar0f873732019-12-05 20:28:46 +01004544 // We start waiting for a very short time and then increase it, so
4545 // that we respond quickly when the process is quick, and don't
4546 // consume too much overhead when it's slow.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004547 if (delay < 50)
4548 delay += 10;
4549 }
4550
Bram Moolenaar0f873732019-12-05 20:28:46 +01004551 // Close the pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004552 CloseHandle(g_hChildStd_OUT_Rd);
4553 if (g_hChildStd_IN_Wr != NULL)
4554 CloseHandle(g_hChildStd_IN_Wr);
4555
4556 WaitForSingleObject(pi.hProcess, INFINITE);
4557
Bram Moolenaar0f873732019-12-05 20:28:46 +01004558 // Get the command exit code
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004559 GetExitCodeProcess(pi.hProcess, &ret);
4560
4561 if (options & SHELL_READ)
4562 {
4563 if (ga.ga_len > 0)
4564 {
4565 append_ga_line(&ga);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004566 // remember that the NL was missing
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004567 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4568 }
4569 else
4570 curbuf->b_no_eol_lnum = 0;
4571 ga_clear(&ga);
4572 }
4573
Bram Moolenaar0f873732019-12-05 20:28:46 +01004574 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004575 CloseHandle(pi.hThread);
4576 CloseHandle(pi.hProcess);
4577
4578 return ret;
4579}
4580
4581 static int
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004582mch_system_g(char *cmd, int options)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004583{
Bram Moolenaar0f873732019-12-05 20:28:46 +01004584 // if we can pipe and the shelltemp option is off
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004585 if (!p_stmp)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004586 return mch_system_piped(cmd, options);
4587 else
4588 return mch_system_classic(cmd, options);
4589}
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004590#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004592#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004593 static int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02004594mch_system_c(char *cmd, int options UNUSED)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004595{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004596 int ret;
4597 WCHAR *wcmd;
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004598 char_u *buf;
4599 size_t len;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004600
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004601 // If the command starts and ends with double quotes, enclose the command
4602 // in parentheses.
4603 len = STRLEN(cmd);
4604 if (len >= 2 && cmd[0] == '"' && cmd[len - 1] == '"')
4605 {
4606 len += 3;
4607 buf = alloc(len);
4608 if (buf == NULL)
4609 return -1;
4610 vim_snprintf((char *)buf, len, "(%s)", cmd);
4611 wcmd = enc_to_utf16(buf, NULL);
4612 free(buf);
4613 }
4614 else
4615 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4616
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004617 if (wcmd == NULL)
4618 return -1;
4619
4620 ret = _wsystem(wcmd);
4621 vim_free(wcmd);
4622 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004623}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624
4625#endif
4626
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004627 static int
4628mch_system(char *cmd, int options)
4629{
4630#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004631 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004632 return mch_system_g(cmd, options);
4633 else
4634 return mch_system_c(cmd, options);
4635#elif defined(FEAT_GUI_MSWIN)
4636 return mch_system_g(cmd, options);
4637#else
4638 return mch_system_c(cmd, options);
4639#endif
4640}
4641
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004642#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4643/*
4644 * Use a terminal window to run a shell command in.
4645 */
4646 static int
4647mch_call_shell_terminal(
4648 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004649 int options UNUSED) // SHELL_*, see vim.h
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004650{
4651 jobopt_T opt;
4652 char_u *newcmd = NULL;
4653 typval_T argvar[2];
4654 long_u cmdlen;
4655 int retval = -1;
4656 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004657 job_T *job;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004658 aco_save_T aco;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004659 oparg_T oa; // operator arguments
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004660
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004661 if (cmd == NULL)
4662 cmdlen = STRLEN(p_sh) + 1;
4663 else
4664 cmdlen = STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004665 newcmd = alloc(cmdlen);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004666 if (newcmd == NULL)
4667 return 255;
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004668 if (cmd == NULL)
4669 {
4670 STRCPY(newcmd, p_sh);
4671 ch_log(NULL, "starting terminal to run a shell");
4672 }
4673 else
4674 {
4675 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", p_sh, p_shcf, cmd);
4676 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4677 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004678
4679 init_job_options(&opt);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004680
4681 argvar[0].v_type = VAR_STRING;
4682 argvar[0].vval.v_string = newcmd;
4683 argvar[1].v_type = VAR_UNKNOWN;
4684 buf = term_start(argvar, NULL, &opt, TERM_START_SYSTEM);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004685 if (buf == NULL)
Bram Moolenaar9029b912019-03-21 19:58:00 +01004686 {
4687 vim_free(newcmd);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004688 return 255;
Bram Moolenaar9029b912019-03-21 19:58:00 +01004689 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004690
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004691 job = term_getjob(buf->b_term);
4692 ++job->jv_refcount;
4693
Bram Moolenaar0f873732019-12-05 20:28:46 +01004694 // Find a window to make "buf" curbuf.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004695 aucmd_prepbuf(&aco, buf);
4696
4697 clear_oparg(&oa);
4698 while (term_use_loop())
4699 {
4700 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4701 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004702 // If terminal_loop() returns OK we got a key that is handled
4703 // in Normal model. We don't do redrawing anyway.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004704 if (terminal_loop(TRUE) == OK)
4705 normal_cmd(&oa, TRUE);
4706 }
4707 else
4708 normal_cmd(&oa, TRUE);
4709 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004710 retval = job->jv_exitval;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004711 ch_log(NULL, "system command finished");
4712
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004713 job_unref(job);
4714
Bram Moolenaar0f873732019-12-05 20:28:46 +01004715 // restore curwin/curbuf and a few other things
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004716 aucmd_restbuf(&aco);
4717
4718 wait_return(TRUE);
4719 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4720
4721 vim_free(newcmd);
4722 return retval;
4723}
4724#endif
4725
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726/*
4727 * Either execute a command by calling the shell or start a new shell
4728 */
4729 int
4730mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004731 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004732 int options) // SHELL_*, see vim.h
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733{
4734 int x = 0;
4735 int tmode = cur_tmode;
4736#ifdef FEAT_TITLE
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004737 WCHAR szShellTitle[512];
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004738
Bram Moolenaar0f873732019-12-05 20:28:46 +01004739 // Change the title to reflect that we are in a subshell.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004740 if (GetConsoleTitleW(szShellTitle,
4741 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0)
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004742 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004743 if (cmd == NULL)
4744 wcscat(szShellTitle, L" :sh");
4745 else
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004746 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004747 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004748
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004749 if (wn != NULL)
4750 {
4751 wcscat(szShellTitle, L" - !");
4752 if ((wcslen(szShellTitle) + wcslen(wn) <
4753 sizeof(szShellTitle)/sizeof(WCHAR)))
4754 wcscat(szShellTitle, wn);
4755 SetConsoleTitleW(szShellTitle);
4756 vim_free(wn);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004757 }
4758 }
4759 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760#endif
4761
4762 out_flush();
4763
4764#ifdef MCH_WRITE_DUMP
4765 if (fdDump)
4766 {
4767 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4768 fflush(fdDump);
4769 }
4770#endif
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004771#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004772 // TODO: make the terminal window work with input or output redirected.
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004773 if (
4774# ifdef VIMDLL
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004775 gui.in_use &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004776# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004777 vim_strchr(p_go, GO_TERMINAL) != NULL
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004778 && (options & (SHELL_FILTER|SHELL_DOOUT|SHELL_WRITE|SHELL_READ)) == 0)
4779 {
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004780 char_u *cmdbase = cmd;
4781
Bram Moolenaar4d5c1262019-09-20 17:20:02 +02004782 if (cmdbase != NULL)
4783 // Skip a leading quote and (.
4784 while (*cmdbase == '"' || *cmdbase == '(')
4785 ++cmdbase;
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004786
4787 // Check the command does not begin with "start "
Bram Moolenaar36e7a822019-11-13 21:49:24 +01004788 if (cmdbase == NULL || STRNICMP(cmdbase, "start", 5) != 0
4789 || !VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004790 {
4791 // Use a terminal window to run the command in.
4792 x = mch_call_shell_terminal(cmd, options);
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004793# ifdef FEAT_TITLE
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004794 resettitle();
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004795# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004796 return x;
4797 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004798 }
4799#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800
4801 /*
4802 * Catch all deadly signals while running the external command, because a
4803 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4804 */
4805 signal(SIGINT, SIG_IGN);
4806#if defined(__GNUC__) && !defined(__MINGW32__)
4807 signal(SIGKILL, SIG_IGN);
4808#else
4809 signal(SIGBREAK, SIG_IGN);
4810#endif
4811 signal(SIGILL, SIG_IGN);
4812 signal(SIGFPE, SIG_IGN);
4813 signal(SIGSEGV, SIG_IGN);
4814 signal(SIGTERM, SIG_IGN);
4815 signal(SIGABRT, SIG_IGN);
4816
4817 if (options & SHELL_COOKED)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004818 settmode(TMODE_COOK); // set to normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819
4820 if (cmd == NULL)
4821 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004822 x = mch_system((char *)p_sh, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 }
4824 else
4825 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004826 // we use "command" or "cmd" to start the shell; slow but easy
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004827 char_u *newcmd = NULL;
4828 char_u *cmdbase = cmd;
4829 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004830
Bram Moolenaar0f873732019-12-05 20:28:46 +01004831 // Skip a leading ", ( and "(.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004832 if (*cmdbase == '"' )
4833 ++cmdbase;
4834 if (*cmdbase == '(')
4835 ++cmdbase;
4836
Bram Moolenaar1c465442017-03-12 20:10:05 +01004837 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004838 {
4839 STARTUPINFO si;
4840 PROCESS_INFORMATION pi;
4841 DWORD flags = CREATE_NEW_CONSOLE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004842 INT n_show_cmd = SW_SHOWNORMAL;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004843 char_u *p;
4844
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004845 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004846 si.cb = sizeof(si);
4847 si.lpReserved = NULL;
4848 si.lpDesktop = NULL;
4849 si.lpTitle = NULL;
4850 si.dwFlags = 0;
4851 si.cbReserved2 = 0;
4852 si.lpReserved2 = NULL;
4853
4854 cmdbase = skipwhite(cmdbase + 5);
4855 if ((STRNICMP(cmdbase, "/min", 4) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004856 && VIM_ISWHITE(cmdbase[4]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004857 {
4858 cmdbase = skipwhite(cmdbase + 4);
4859 si.dwFlags = STARTF_USESHOWWINDOW;
4860 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004861 n_show_cmd = SW_SHOWMINNOACTIVE;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004862 }
4863 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004864 && VIM_ISWHITE(cmdbase[2]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004865 {
4866 cmdbase = skipwhite(cmdbase + 2);
4867 flags = CREATE_NO_WINDOW;
4868 si.dwFlags = STARTF_USESTDHANDLES;
4869 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004870 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004871 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004872 NULL, // Security att.
4873 OPEN_EXISTING, // Open flags
4874 FILE_ATTRIBUTE_NORMAL, // File att.
4875 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004876 si.hStdOutput = si.hStdInput;
4877 si.hStdError = si.hStdInput;
4878 }
4879
Bram Moolenaar0f873732019-12-05 20:28:46 +01004880 // Remove a trailing ", ) and )" if they have a match
4881 // at the start of the command.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004882 if (cmdbase > cmd)
4883 {
4884 p = cmdbase + STRLEN(cmdbase);
4885 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4886 *--p = NUL;
4887 if (p > cmdbase && p[-1] == ')'
4888 && (*cmd =='(' || cmd[1] == '('))
4889 *--p = NUL;
4890 }
4891
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004892 newcmd = cmdbase;
4893 unescape_shellxquote(cmdbase, p_sxe);
4894
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004895 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004896 * If creating new console, arguments are passed to the
4897 * 'cmd.exe' as-is. If it's not, arguments are not treated
4898 * correctly for current 'cmd.exe'. So unescape characters in
4899 * shellxescape except '|' for avoiding to be treated as
4900 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004901 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004902 if (flags != CREATE_NEW_CONSOLE)
4903 {
4904 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004905 char_u *cmd_shell = mch_getenv("COMSPEC");
4906
4907 if (cmd_shell == NULL || *cmd_shell == NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004908 cmd_shell = (char_u *)default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004909
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004910 subcmd = vim_strsave_escaped_ext(cmdbase,
4911 (char_u *)"|", '^', FALSE);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004912 if (subcmd != NULL)
4913 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004914 // make "cmd.exe /c arguments"
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004915 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004916 newcmd = alloc(cmdlen);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004917 if (newcmd != NULL)
4918 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004919 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004920 else
4921 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004922 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004923 }
4924 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004925
4926 /*
4927 * Now, start the command as a process, so that it doesn't
4928 * inherit our handles which causes unpleasant dangling swap
4929 * files if we exit before the spawned process
4930 */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004931 if (vim_create_process((char *)newcmd, FALSE, flags,
4932 &si, &pi, NULL, NULL))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004933 x = 0;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004934 else if (vim_shell_execute((char *)newcmd, n_show_cmd)
4935 > (HINSTANCE)32)
4936 x = 0;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004937 else
4938 {
4939 x = -1;
Bram Moolenaar4f974752019-02-17 17:44:42 +01004940#ifdef FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004941# ifdef VIMDLL
4942 if (gui.in_use)
4943# endif
4944 emsg(_("E371: Command not found"));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004945#endif
4946 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004947
4948 if (newcmd != cmdbase)
4949 vim_free(newcmd);
4950
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004951 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004952 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004953 // Close the handle to \\.\NUL created above.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004954 CloseHandle(si.hStdInput);
4955 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004956 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004957 CloseHandle(pi.hThread);
4958 CloseHandle(pi.hProcess);
4959 }
4960 else
4961 {
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004962 cmdlen =
Bram Moolenaar4f974752019-02-17 17:44:42 +01004963#ifdef FEAT_GUI_MSWIN
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004964 ((gui.in_use || gui.starting) ?
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004965 (!s_dont_use_vimrun && p_stmp ?
4966 STRLEN(vimrun_path) : STRLEN(p_sh) + STRLEN(p_shcf))
4967 : 0) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968#endif
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004969 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004970
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004971 newcmd = alloc(cmdlen);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004972 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01004974#if defined(FEAT_GUI_MSWIN)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004975 if (
4976# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004977 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004978# endif
4979 need_vimrun_warning)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 {
Bram Moolenaar63e43442016-11-19 17:28:44 +01004981 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
4982 "External commands will not pause after completion.\n"
4983 "See :help win32-vimrun for more information.");
4984 char *title = _("Vim Warning");
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004985 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
4986 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
Bram Moolenaar63e43442016-11-19 17:28:44 +01004987
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004988 if (wmsg != NULL && wtitle != NULL)
4989 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
4990 vim_free(wmsg);
4991 vim_free(wtitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 need_vimrun_warning = FALSE;
4993 }
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 !s_dont_use_vimrun && p_stmp)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02004999 // Use vimrun to execute the command. It opens a console
5000 // window, which can be closed without killing Vim.
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005001 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 vimrun_path,
5003 (msg_silent != 0 || (options & SHELL_DOOUT))
5004 ? "-s " : "",
5005 p_sh, p_shcf, cmd);
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005006 else if (
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005007# ifdef VIMDLL
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005008 (gui.in_use || gui.starting) &&
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005009# endif
Bram Moolenaar0e6bfb92019-07-31 20:53:56 +02005010 s_dont_use_vimrun && STRCMP(p_shcf, "/c") == 0)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005011 // workaround for the case that "vimrun" does not exist
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005012 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s %s %s",
5013 p_sh, p_shcf, p_sh, p_shcf, cmd);
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005014 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005016 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00005017 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01005019 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 }
5022 }
5023
5024 if (tmode == TMODE_RAW)
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005025 {
5026 // The shell may have messed with the mode, always set it.
5027 cur_tmode = TMODE_UNKNOWN;
Bram Moolenaar0f873732019-12-05 20:28:46 +01005028 settmode(TMODE_RAW); // set to raw mode
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030
Bram Moolenaar0f873732019-12-05 20:28:46 +01005031 // Print the return value, unless "vimrun" was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
Bram Moolenaar4f974752019-02-17 17:44:42 +01005033#if defined(FEAT_GUI_MSWIN)
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02005034 && ((gui.in_use || gui.starting) ?
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005035 ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp) : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036#endif
5037 )
5038 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005039 smsg(_("shell returned %d"), x);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 msg_putchar('\n');
5041 }
5042#ifdef FEAT_TITLE
5043 resettitle();
5044#endif
5045
5046 signal(SIGINT, SIG_DFL);
5047#if defined(__GNUC__) && !defined(__MINGW32__)
5048 signal(SIGKILL, SIG_DFL);
5049#else
5050 signal(SIGBREAK, SIG_DFL);
5051#endif
5052 signal(SIGILL, SIG_DFL);
5053 signal(SIGFPE, SIG_DFL);
5054 signal(SIGSEGV, SIG_DFL);
5055 signal(SIGTERM, SIG_DFL);
5056 signal(SIGABRT, SIG_DFL);
5057
5058 return x;
5059}
5060
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005061#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005062 static HANDLE
5063job_io_file_open(
Bram Moolenaar972c3b82017-01-12 21:44:49 +01005064 char_u *fname,
5065 DWORD dwDesiredAccess,
5066 DWORD dwShareMode,
5067 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
5068 DWORD dwCreationDisposition,
5069 DWORD dwFlagsAndAttributes)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005070{
5071 HANDLE h;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005072 WCHAR *wn;
Bram Moolenaara12a1612019-01-24 16:39:02 +01005073
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005074 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005075 if (wn == NULL)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005076 return INVALID_HANDLE_VALUE;
5077
5078 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
5079 lpSecurityAttributes, dwCreationDisposition,
5080 dwFlagsAndAttributes, NULL);
5081 vim_free(wn);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005082 return h;
5083}
5084
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005085/*
5086 * Turn the dictionary "env" into a NUL separated list that can be used as the
5087 * environment argument of vim_create_process().
5088 */
Bram Moolenaarba6febd2017-10-30 21:56:23 +01005089 void
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005090win32_build_env(dict_T *env, garray_T *gap, int is_terminal)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005091{
5092 hashitem_T *hi;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005093 long_u todo = env != NULL ? env->dv_hashtab.ht_used : 0;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005094 LPVOID base = GetEnvironmentStringsW();
5095
Bram Moolenaar0f873732019-12-05 20:28:46 +01005096 // for last \0
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005097 if (ga_grow(gap, 1) == FAIL)
5098 return;
5099
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005100 if (env != NULL)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005101 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005102 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005103 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005104 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005105 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005106 typval_T *item = &dict_lookup(hi)->di_tv;
5107 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01005108 WCHAR *wval = enc_to_utf16(tv_get_string(item), NULL);
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005109 --todo;
5110 if (wkey != NULL && wval != NULL)
5111 {
5112 size_t n;
5113 size_t lkey = wcslen(wkey);
5114 size_t lval = wcslen(wval);
Bram Moolenaar60104f12017-08-14 23:25:04 +02005115
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005116 if (ga_grow(gap, (int)(lkey + lval + 2)) != OK)
5117 continue;
5118 for (n = 0; n < lkey; n++)
5119 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n];
5120 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'=';
5121 for (n = 0; n < lval; n++)
5122 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n];
5123 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5124 }
Bram Moolenaarbdace832019-03-02 10:13:42 +01005125 vim_free(wkey);
5126 vim_free(wval);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005127 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005128 }
5129 }
5130
Bram Moolenaar355757a2020-02-10 22:06:32 +01005131 if (base)
5132 {
5133 WCHAR *p = (WCHAR*) base;
5134
5135 // for last \0
5136 if (ga_grow(gap, 1) == FAIL)
5137 return;
5138
5139 while (*p != 0 || *(p + 1) != 0)
5140 {
5141 if (ga_grow(gap, 1) == OK)
5142 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
5143 p++;
5144 }
5145 FreeEnvironmentStrings(base);
5146 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5147 }
5148
Bram Moolenaar493359e2018-06-12 20:25:52 +02005149# if defined(FEAT_CLIENTSERVER) || defined(FEAT_TERMINAL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005150 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005151# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005152 char_u *servername = get_vim_var_str(VV_SEND_SERVER);
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005153 size_t servername_len = STRLEN(servername);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005154# endif
5155# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005156 char_u *version = get_vim_var_str(VV_VERSION);
5157 size_t version_len = STRLEN(version);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005158# endif
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005159 // size of "VIM_SERVERNAME=" and value,
5160 // plus "VIM_TERMINAL=" and value,
5161 // plus two terminating NULs
5162 size_t n = 0
Bram Moolenaar493359e2018-06-12 20:25:52 +02005163# ifdef FEAT_CLIENTSERVER
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005164 + 15 + servername_len
Bram Moolenaar493359e2018-06-12 20:25:52 +02005165# endif
5166# ifdef FEAT_TERMINAL
5167 + 13 + version_len + 2
5168# endif
5169 ;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005170
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005171 if (ga_grow(gap, (int)n) == OK)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005172 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005173# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005174 for (n = 0; n < 15; n++)
5175 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5176 (WCHAR)"VIM_SERVERNAME="[n];
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005177 for (n = 0; n < servername_len; n++)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005178 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5179 (WCHAR)servername[n];
5180 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
Bram Moolenaar493359e2018-06-12 20:25:52 +02005181# endif
5182# ifdef FEAT_TERMINAL
5183 if (is_terminal)
5184 {
5185 for (n = 0; n < 13; n++)
5186 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5187 (WCHAR)"VIM_TERMINAL="[n];
5188 for (n = 0; n < version_len; n++)
5189 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5190 (WCHAR)version[n];
5191 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5192 }
5193# endif
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005194 }
5195 }
Bram Moolenaar79c6b512018-06-12 21:11:12 +02005196# endif
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005197}
5198
Bram Moolenaarb091f302019-01-19 14:37:00 +01005199/*
5200 * Create a pair of pipes.
5201 * Return TRUE for success, FALSE for failure.
5202 */
5203 static BOOL
5204create_pipe_pair(HANDLE handles[2])
5205{
5206 static LONG s;
5207 char name[64];
5208 SECURITY_ATTRIBUTES sa;
5209
5210 sprintf(name, "\\\\?\\pipe\\vim-%08lx-%08lx",
5211 GetCurrentProcessId(),
5212 InterlockedIncrement(&s));
5213
5214 // Create named pipe. Max size of named pipe is 65535.
5215 handles[1] = CreateNamedPipe(
5216 name,
5217 PIPE_ACCESS_OUTBOUND | FILE_FLAG_OVERLAPPED,
5218 PIPE_TYPE_BYTE | PIPE_NOWAIT,
Bram Moolenaar24058382019-01-24 23:11:49 +01005219 1, MAX_NAMED_PIPE_SIZE, 0, 0, NULL);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005220
5221 if (handles[1] == INVALID_HANDLE_VALUE)
5222 return FALSE;
5223
5224 sa.nLength = sizeof(sa);
5225 sa.bInheritHandle = TRUE;
5226 sa.lpSecurityDescriptor = NULL;
5227
5228 handles[0] = CreateFile(name,
5229 FILE_GENERIC_READ,
5230 FILE_SHARE_READ, &sa,
5231 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
5232
5233 if (handles[0] == INVALID_HANDLE_VALUE)
5234 {
Bram Moolenaar6982f422019-02-16 16:48:01 +01005235 CloseHandle(handles[1]);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005236 return FALSE;
5237 }
5238
5239 return TRUE;
5240}
5241
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005242 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005243mch_job_start(char *cmd, job_T *job, jobopt_T *options)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005244{
5245 STARTUPINFO si;
5246 PROCESS_INFORMATION pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005247 HANDLE jo;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005248 SECURITY_ATTRIBUTES saAttr;
5249 channel_T *channel = NULL;
Bram Moolenaard8070362016-02-15 21:56:54 +01005250 HANDLE ifd[2];
5251 HANDLE ofd[2];
5252 HANDLE efd[2];
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005253 garray_T ga;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005254
5255 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5256 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5257 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
5258 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
5259 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5260 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
5261 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
5262
5263 if (use_out_for_err && use_null_for_out)
5264 use_null_for_err = TRUE;
Bram Moolenaard8070362016-02-15 21:56:54 +01005265
5266 ifd[0] = INVALID_HANDLE_VALUE;
5267 ifd[1] = INVALID_HANDLE_VALUE;
5268 ofd[0] = INVALID_HANDLE_VALUE;
5269 ofd[1] = INVALID_HANDLE_VALUE;
5270 efd[0] = INVALID_HANDLE_VALUE;
5271 efd[1] = INVALID_HANDLE_VALUE;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005272 ga_init2(&ga, (int)sizeof(wchar_t), 500);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005273
Bram Moolenaar14207f42016-10-27 21:13:10 +02005274 jo = CreateJobObject(NULL, NULL);
5275 if (jo == NULL)
5276 {
5277 job->jv_status = JOB_FAILED;
5278 goto failed;
5279 }
5280
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005281 if (options->jo_env != NULL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005282 win32_build_env(options->jo_env, &ga, FALSE);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005283
Bram Moolenaar76467df2016-02-12 19:30:26 +01005284 ZeroMemory(&pi, sizeof(pi));
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005285 ZeroMemory(&si, sizeof(si));
5286 si.cb = sizeof(si);
Bram Moolenaard8070362016-02-15 21:56:54 +01005287 si.dwFlags |= STARTF_USESHOWWINDOW;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005288 si.wShowWindow = SW_HIDE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005289
Bram Moolenaard8070362016-02-15 21:56:54 +01005290 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5291 saAttr.bInheritHandle = TRUE;
5292 saAttr.lpSecurityDescriptor = NULL;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005293
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005294 if (use_file_for_in)
5295 {
5296 char_u *fname = options->jo_io_name[PART_IN];
5297
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005298 ifd[0] = job_io_file_open(fname, GENERIC_READ,
5299 FILE_SHARE_READ | FILE_SHARE_WRITE,
5300 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
5301 if (ifd[0] == INVALID_HANDLE_VALUE)
Bram Moolenaar94d01912016-03-08 13:48:51 +01005302 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005303 semsg(_(e_notopen), fname);
Bram Moolenaar94d01912016-03-08 13:48:51 +01005304 goto failed;
5305 }
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005306 }
Bram Moolenaarb091f302019-01-19 14:37:00 +01005307 else if (!use_null_for_in
5308 && (!create_pipe_pair(ifd)
5309 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005310 goto failed;
5311
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005312 if (use_file_for_out)
5313 {
5314 char_u *fname = options->jo_io_name[PART_OUT];
5315
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005316 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
5317 FILE_SHARE_READ | FILE_SHARE_WRITE,
5318 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5319 if (ofd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005320 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005321 semsg(_(e_notopen), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005322 goto failed;
5323 }
5324 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005325 else if (!use_null_for_out &&
5326 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005327 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005328 goto failed;
5329
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005330 if (use_file_for_err)
5331 {
5332 char_u *fname = options->jo_io_name[PART_ERR];
5333
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005334 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
5335 FILE_SHARE_READ | FILE_SHARE_WRITE,
5336 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5337 if (efd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005338 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005339 semsg(_(e_notopen), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005340 goto failed;
5341 }
5342 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005343 else if (!use_out_for_err && !use_null_for_err &&
5344 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005345 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaard8070362016-02-15 21:56:54 +01005346 goto failed;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005347
Bram Moolenaard8070362016-02-15 21:56:54 +01005348 si.dwFlags |= STARTF_USESTDHANDLES;
5349 si.hStdInput = ifd[0];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005350 si.hStdOutput = ofd[1];
5351 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
5352
5353 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5354 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005355 if (options->jo_set & JO_CHANNEL)
5356 {
5357 channel = options->jo_channel;
5358 if (channel != NULL)
5359 ++channel->ch_refcount;
5360 }
5361 else
5362 channel = add_channel();
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005363 if (channel == NULL)
5364 goto failed;
5365 }
Bram Moolenaard8070362016-02-15 21:56:54 +01005366
5367 if (!vim_create_process(cmd, TRUE,
Bram Moolenaar14207f42016-10-27 21:13:10 +02005368 CREATE_SUSPENDED |
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005369 CREATE_DEFAULT_ERROR_MODE |
5370 CREATE_NEW_PROCESS_GROUP |
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005371 CREATE_UNICODE_ENVIRONMENT |
Bram Moolenaar76467df2016-02-12 19:30:26 +01005372 CREATE_NEW_CONSOLE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005373 &si, &pi,
5374 ga.ga_data,
5375 (char *)options->jo_cwd))
Bram Moolenaar76467df2016-02-12 19:30:26 +01005376 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005377 CloseHandle(jo);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005378 job->jv_status = JOB_FAILED;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005379 goto failed;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005380 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005381
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005382 ga_clear(&ga);
5383
Bram Moolenaar14207f42016-10-27 21:13:10 +02005384 if (!AssignProcessToJobObject(jo, pi.hProcess))
5385 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005386 // if failing, switch the way to terminate
5387 // process with TerminateProcess.
Bram Moolenaar14207f42016-10-27 21:13:10 +02005388 CloseHandle(jo);
5389 jo = NULL;
5390 }
5391 ResumeThread(pi.hThread);
Bram Moolenaar75578a32016-03-10 16:33:31 +01005392 CloseHandle(pi.hThread);
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005393 job->jv_proc_info = pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005394 job->jv_job_object = jo;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005395 job->jv_status = JOB_STARTED;
5396
Bram Moolenaar641ad6c2016-09-01 18:32:11 +02005397 CloseHandle(ifd[0]);
5398 CloseHandle(ofd[1]);
5399 if (!use_out_for_err && !use_null_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005400 CloseHandle(efd[1]);
Bram Moolenaard8070362016-02-15 21:56:54 +01005401
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005402 job->jv_channel = channel;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005403 if (channel != NULL)
5404 {
5405 channel_set_pipes(channel,
5406 use_file_for_in || use_null_for_in
5407 ? INVALID_FD : (sock_T)ifd[1],
5408 use_file_for_out || use_null_for_out
5409 ? INVALID_FD : (sock_T)ofd[0],
5410 use_out_for_err || use_file_for_err || use_null_for_err
5411 ? INVALID_FD : (sock_T)efd[0]);
5412 channel_set_job(channel, job, options);
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005413 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005414 return;
5415
5416failed:
Bram Moolenaard8070362016-02-15 21:56:54 +01005417 CloseHandle(ifd[0]);
5418 CloseHandle(ofd[0]);
5419 CloseHandle(efd[0]);
5420 CloseHandle(ifd[1]);
5421 CloseHandle(ofd[1]);
5422 CloseHandle(efd[1]);
Bram Moolenaarde279892016-03-11 22:19:44 +01005423 channel_unref(channel);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005424 ga_clear(&ga);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005425}
5426
5427 char *
5428mch_job_status(job_T *job)
5429{
5430 DWORD dwExitCode = 0;
5431
Bram Moolenaar76467df2016-02-12 19:30:26 +01005432 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
5433 || dwExitCode != STILL_ACTIVE)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005434 {
Bram Moolenaareab089d2016-02-21 19:32:02 +01005435 job->jv_exitval = (int)dwExitCode;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005436 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005437 {
5438 ch_log(job->jv_channel, "Job ended");
5439 job->jv_status = JOB_ENDED;
5440 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005441 return "dead";
5442 }
5443 return "run";
5444}
5445
Bram Moolenaar97792de2016-10-15 18:36:49 +02005446 job_T *
5447mch_detect_ended_job(job_T *job_list)
5448{
5449 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
5450 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
5451 job_T *job = job_list;
5452
5453 while (job != NULL)
5454 {
5455 DWORD n;
5456 DWORD result;
5457
5458 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
5459 && job != NULL; job = job->jv_next)
5460 {
5461 if (job->jv_status == JOB_STARTED)
5462 {
5463 jobHandles[n] = job->jv_proc_info.hProcess;
5464 jobArray[n] = job;
5465 ++n;
5466 }
5467 }
5468 if (n == 0)
5469 continue;
5470 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
5471 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
5472 {
5473 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
5474
5475 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
5476 return wait_job;
5477 }
5478 }
5479 return NULL;
5480}
5481
Bram Moolenaarfb630902016-10-29 14:55:00 +02005482 static BOOL
5483terminate_all(HANDLE process, int code)
5484{
5485 PROCESSENTRY32 pe;
5486 HANDLE h = INVALID_HANDLE_VALUE;
5487 DWORD pid = GetProcessId(process);
5488
5489 if (pid != 0)
5490 {
5491 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5492 if (h != INVALID_HANDLE_VALUE)
5493 {
5494 pe.dwSize = sizeof(PROCESSENTRY32);
5495 if (!Process32First(h, &pe))
5496 goto theend;
5497
5498 do
5499 {
5500 if (pe.th32ParentProcessID == pid)
5501 {
5502 HANDLE ph = OpenProcess(
5503 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
5504 if (ph != NULL)
5505 {
5506 terminate_all(ph, code);
5507 CloseHandle(ph);
5508 }
5509 }
5510 } while (Process32Next(h, &pe));
5511
5512 CloseHandle(h);
5513 }
5514 }
5515
5516theend:
5517 return TerminateProcess(process, code);
5518}
5519
5520/*
5521 * Send a (deadly) signal to "job".
5522 * Return FAIL if it didn't work.
5523 */
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005524 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005525mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005526{
Bram Moolenaar923d9262016-02-25 20:56:01 +01005527 int ret;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005528
Bram Moolenaar923d9262016-02-25 20:56:01 +01005529 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
Bram Moolenaar76467df2016-02-12 19:30:26 +01005530 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005531 // deadly signal
Bram Moolenaar14207f42016-10-27 21:13:10 +02005532 if (job->jv_job_object != NULL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005533 {
5534 if (job->jv_channel != NULL && job->jv_channel->ch_anonymous_pipe)
5535 job->jv_channel->ch_killing = TRUE;
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005536 return TerminateJobObject(job->jv_job_object, -1) ? OK : FAIL;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005537 }
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005538 return terminate_all(job->jv_proc_info.hProcess, -1) ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005539 }
5540
5541 if (!AttachConsole(job->jv_proc_info.dwProcessId))
5542 return FAIL;
5543 ret = GenerateConsoleCtrlEvent(
Bram Moolenaar923d9262016-02-25 20:56:01 +01005544 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
5545 job->jv_proc_info.dwProcessId)
5546 ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005547 FreeConsole();
5548 return ret;
5549}
5550
5551/*
5552 * Clear the data related to "job".
5553 */
5554 void
5555mch_clear_job(job_T *job)
5556{
5557 if (job->jv_status != JOB_FAILED)
5558 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005559 if (job->jv_job_object != NULL)
5560 CloseHandle(job->jv_job_object);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005561 CloseHandle(job->jv_proc_info.hProcess);
5562 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005563}
5564#endif
5565
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005567#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568
5569/*
5570 * Start termcap mode
5571 */
5572 static void
5573termcap_mode_start(void)
5574{
5575 DWORD cmodein;
5576
5577 if (g_fTermcapMode)
5578 return;
5579
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005580 if (!p_rs && USE_VTP)
5581 vtp_printf("\033[?1049h");
5582
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 SaveConsoleBuffer(&g_cbNonTermcap);
5584
5585 if (g_cbTermcap.IsValid)
5586 {
5587 /*
5588 * We've been in termcap mode before. Restore certain screen
5589 * characteristics, including the buffer size and the window
5590 * size. Since we will be redrawing the screen, we don't need
5591 * to restore the actual contents of the buffer.
5592 */
5593 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005594 reset_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
5596 Rows = g_cbTermcap.Info.dwSize.Y;
5597 Columns = g_cbTermcap.Info.dwSize.X;
5598 }
5599 else
5600 {
5601 /*
5602 * This is our first time entering termcap mode. Clear the console
5603 * screen buffer, and resize the buffer to match the current window
5604 * size. We will use this as the size of our editing environment.
5605 */
5606 ClearConsoleBuffer(g_attrCurrent);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005607 set_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
5609 }
5610
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005611# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 resettitle();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005613# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614
5615 GetConsoleMode(g_hConIn, &cmodein);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616 if (g_fMouseActive)
5617 cmodein |= ENABLE_MOUSE_INPUT;
5618 else
5619 cmodein &= ~ENABLE_MOUSE_INPUT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 cmodein |= ENABLE_WINDOW_INPUT;
5621 SetConsoleMode(g_hConIn, cmodein);
5622
5623 redraw_later_clear();
5624 g_fTermcapMode = TRUE;
5625}
5626
5627
5628/*
5629 * End termcap mode
5630 */
5631 static void
5632termcap_mode_end(void)
5633{
5634 DWORD cmodein;
5635 ConsoleBuffer *cb;
5636 COORD coord;
5637 DWORD dwDummy;
5638
5639 if (!g_fTermcapMode)
5640 return;
5641
5642 SaveConsoleBuffer(&g_cbTermcap);
5643
5644 GetConsoleMode(g_hConIn, &cmodein);
5645 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
5646 SetConsoleMode(g_hConIn, cmodein);
5647
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005648# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005649 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005650# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 cb = &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005652# endif
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005653 RestoreConsoleBuffer(cb, p_rs);
Bram Moolenaardf543822020-01-30 11:53:59 +01005654 restore_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 SetConsoleCursorInfo(g_hConOut, &g_cci);
5656
5657 if (p_rs || exiting)
5658 {
5659 /*
5660 * Clear anything that happens to be on the current line.
5661 */
5662 coord.X = 0;
5663 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
5664 FillConsoleOutputCharacter(g_hConOut, ' ',
5665 cb->Info.dwSize.X, coord, &dwDummy);
5666 /*
5667 * The following is just for aesthetics. If we are exiting without
5668 * restoring the screen, then we want to have a prompt string
5669 * appear at the bottom line. However, the command interpreter
5670 * seems to always advance the cursor one line before displaying
5671 * the prompt string, which causes the screen to scroll. To
5672 * counter this, move the cursor up one line before exiting.
5673 */
5674 if (exiting && !p_rs)
5675 coord.Y--;
5676 /*
5677 * Position the cursor at the leftmost column of the desired row.
5678 */
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005679 SetConsoleCursorPosition(g_hConOut, coord);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 }
5681
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005682 if (!p_rs && USE_VTP)
Bram Moolenaar0afdcf82020-04-01 18:29:10 +02005683 vtp_printf("\033[?1049l");
5684
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 g_fTermcapMode = FALSE;
5686}
Bram Moolenaar0f873732019-12-05 20:28:46 +01005687#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688
5689
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005690#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691 void
5692mch_write(
Bram Moolenaar1266d672017-02-01 13:43:36 +01005693 char_u *s UNUSED,
5694 int len UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695{
Bram Moolenaar0f873732019-12-05 20:28:46 +01005696 // never used
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697}
5698
5699#else
5700
5701/*
5702 * clear `n' chars, starting from `coord'
5703 */
5704 static void
5705clear_chars(
5706 COORD coord,
5707 DWORD n)
5708{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005709 if (!USE_VTP)
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02005710 {
5711 DWORD dwDummy;
5712
5713 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5714 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord,
5715 &dwDummy);
5716 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005717 else
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02005718 {
5719 set_console_color_rgb();
5720 gotoxy(coord.X + 1, coord.Y + 1);
5721 vtp_printf("\033[%dX", n);
5722 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723}
5724
5725
5726/*
5727 * Clear the screen
5728 */
5729 static void
5730clear_screen(void)
5731{
5732 g_coord.X = g_coord.Y = 0;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005733
5734 if (!USE_VTP)
5735 clear_chars(g_coord, Rows * Columns);
5736 else
5737 {
5738 set_console_color_rgb();
5739 gotoxy(1, 1);
5740 vtp_printf("\033[2J");
5741 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742}
5743
5744
5745/*
5746 * Clear to end of display
5747 */
5748 static void
5749clear_to_end_of_display(void)
5750{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005751 COORD save = g_coord;
5752
5753 if (!USE_VTP)
5754 clear_chars(g_coord, (Rows - g_coord.Y - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 * Columns + (Columns - g_coord.X));
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005756 else
5757 {
5758 set_console_color_rgb();
5759 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5760 vtp_printf("\033[0J");
5761
5762 gotoxy(save.X + 1, save.Y + 1);
5763 g_coord = save;
5764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765}
5766
5767
5768/*
5769 * Clear to end of line
5770 */
5771 static void
5772clear_to_end_of_line(void)
5773{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005774 COORD save = g_coord;
5775
5776 if (!USE_VTP)
5777 clear_chars(g_coord, Columns - g_coord.X);
5778 else
5779 {
5780 set_console_color_rgb();
5781 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5782 vtp_printf("\033[0K");
5783
5784 gotoxy(save.X + 1, save.Y + 1);
5785 g_coord = save;
5786 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787}
5788
5789
5790/*
5791 * Scroll the scroll region up by `cLines' lines
5792 */
5793 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005794scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795{
5796 COORD oldcoord = g_coord;
5797
5798 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5799 delete_lines(cLines);
5800
5801 g_coord = oldcoord;
5802}
5803
5804
5805/*
5806 * Set the scroll region
5807 */
5808 static void
5809set_scroll_region(
5810 unsigned left,
5811 unsigned top,
5812 unsigned right,
5813 unsigned bottom)
5814{
5815 if (left >= right
5816 || top >= bottom
5817 || right > (unsigned) Columns - 1
5818 || bottom > (unsigned) Rows - 1)
5819 return;
5820
5821 g_srScrollRegion.Left = left;
5822 g_srScrollRegion.Top = top;
5823 g_srScrollRegion.Right = right;
5824 g_srScrollRegion.Bottom = bottom;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005825}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005826
Bram Moolenaar6982f422019-02-16 16:48:01 +01005827 static void
5828set_scroll_region_tb(
5829 unsigned top,
5830 unsigned bottom)
5831{
5832 if (top >= bottom || bottom > (unsigned)Rows - 1)
5833 return;
5834
5835 g_srScrollRegion.Top = top;
5836 g_srScrollRegion.Bottom = bottom;
5837}
5838
5839 static void
5840set_scroll_region_lr(
5841 unsigned left,
5842 unsigned right)
5843{
5844 if (left >= right || right > (unsigned)Columns - 1)
5845 return;
5846
5847 g_srScrollRegion.Left = left;
5848 g_srScrollRegion.Right = right;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005849}
5850
5851
5852/*
5853 * Insert `cLines' lines at the current cursor position
5854 */
5855 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005856insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005858 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 COORD dest;
5860 CHAR_INFO fill;
5861
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005862 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5863
Bram Moolenaar6982f422019-02-16 16:48:01 +01005864 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 dest.Y = g_coord.Y + cLines;
5866
Bram Moolenaar6982f422019-02-16 16:48:01 +01005867 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868 source.Top = g_coord.Y;
5869 source.Right = g_srScrollRegion.Right;
5870 source.Bottom = g_srScrollRegion.Bottom - cLines;
5871
Bram Moolenaar6982f422019-02-16 16:48:01 +01005872 clip.Left = g_srScrollRegion.Left;
5873 clip.Top = g_coord.Y;
5874 clip.Right = g_srScrollRegion.Right;
5875 clip.Bottom = g_srScrollRegion.Bottom;
5876
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005877 fill.Char.AsciiChar = ' ';
5878 if (!USE_VTP)
5879 fill.Attributes = g_attrCurrent;
5880 else
5881 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005882
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005883 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005884
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005885 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5886
Bram Moolenaar6982f422019-02-16 16:48:01 +01005887 // Here we have to deal with a win32 console flake: If the scroll
5888 // region looks like abc and we scroll c to a and fill with d we get
5889 // cbd... if we scroll block c one line at a time to a, we get cdd...
5890 // vim expects cdd consistently... So we have to deal with that
5891 // here... (this also occurs scrolling the same way in the other
5892 // direction).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893
5894 if (source.Bottom < dest.Y)
5895 {
5896 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005897 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898
Bram Moolenaar6982f422019-02-16 16:48:01 +01005899 coord.X = source.Left;
5900 for (i = clip.Top; i < dest.Y; ++i)
5901 {
5902 coord.Y = i;
5903 clear_chars(coord, source.Right - source.Left + 1);
5904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005906
5907 if (USE_WT)
5908 {
5909 COORD coord;
5910 int i;
5911
5912 coord.X = source.Left;
5913 for (i = source.Top; i < dest.Y; ++i)
5914 {
5915 coord.Y = i;
5916 clear_chars(coord, source.Right - source.Left + 1);
5917 }
5918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919}
5920
5921
5922/*
5923 * Delete `cLines' lines at the current cursor position
5924 */
5925 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005926delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005928 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929 COORD dest;
5930 CHAR_INFO fill;
5931 int nb;
5932
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005933 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5934
Bram Moolenaar6982f422019-02-16 16:48:01 +01005935 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936 dest.Y = g_coord.Y;
5937
Bram Moolenaar6982f422019-02-16 16:48:01 +01005938 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939 source.Top = g_coord.Y + cLines;
5940 source.Right = g_srScrollRegion.Right;
5941 source.Bottom = g_srScrollRegion.Bottom;
5942
Bram Moolenaar6982f422019-02-16 16:48:01 +01005943 clip.Left = g_srScrollRegion.Left;
5944 clip.Top = g_coord.Y;
5945 clip.Right = g_srScrollRegion.Right;
5946 clip.Bottom = g_srScrollRegion.Bottom;
5947
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005948 fill.Char.AsciiChar = ' ';
5949 if (!USE_VTP)
5950 fill.Attributes = g_attrCurrent;
5951 else
5952 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005954 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005955
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005956 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5957
Bram Moolenaar6982f422019-02-16 16:48:01 +01005958 // Here we have to deal with a win32 console flake; See insert_lines()
5959 // above.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960
5961 nb = dest.Y + (source.Bottom - source.Top) + 1;
5962
5963 if (nb < source.Top)
5964 {
5965 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005966 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967
Bram Moolenaar6982f422019-02-16 16:48:01 +01005968 coord.X = source.Left;
5969 for (i = nb; i < clip.Bottom; ++i)
5970 {
5971 coord.Y = i;
5972 clear_chars(coord, source.Right - source.Left + 1);
5973 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005975
5976 if (USE_WT)
5977 {
5978 COORD coord;
5979 int i;
5980
5981 coord.X = source.Left;
5982 for (i = nb; i <= source.Bottom; ++i)
5983 {
5984 coord.Y = i;
5985 clear_chars(coord, source.Right - source.Left + 1);
5986 }
5987 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988}
5989
5990
5991/*
Bram Moolenaar2313b612019-09-27 14:14:32 +02005992 * Set the cursor position to (x,y) (1-based).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993 */
5994 static void
5995gotoxy(
5996 unsigned x,
5997 unsigned y)
5998{
5999 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
6000 return;
6001
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006002 if (!USE_VTP)
Bram Moolenaar2313b612019-09-27 14:14:32 +02006003 {
Bram Moolenaar82e743c2020-03-26 15:39:53 +01006004 // There are reports of double-width characters not displayed
6005 // correctly. This workaround should fix it, similar to how it's done
6006 // for VTP.
6007 g_coord.X = 0;
6008 SetConsoleCursorPosition(g_hConOut, g_coord);
6009
Bram Moolenaar2313b612019-09-27 14:14:32 +02006010 // external cursor coords are 1-based; internal are 0-based
6011 g_coord.X = x - 1;
6012 g_coord.Y = y - 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006013 SetConsoleCursorPosition(g_hConOut, g_coord);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006014 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006015 else
Bram Moolenaar2313b612019-09-27 14:14:32 +02006016 {
6017 // Move the cursor to the left edge of the screen to prevent screen
Bram Moolenaara1299742019-10-10 16:36:00 +02006018 // destruction. Insider build bug. Always enabled because it's cheap
6019 // and avoids mistakes with recognizing the build.
6020 vtp_printf("\033[%d;%dH", g_coord.Y + 1, 1);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006021
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006022 vtp_printf("\033[%d;%dH", y, x);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006023
6024 g_coord.X = x - 1;
6025 g_coord.Y = y - 1;
6026 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027}
6028
6029
6030/*
6031 * Set the current text attribute = (foreground | background)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006032 * See ../runtime/doc/os_win32.txt for the numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006033 */
6034 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006035textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006037 g_attrCurrent = wAttr & 0xff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038
6039 SetConsoleTextAttribute(g_hConOut, wAttr);
6040}
6041
6042
6043 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006044textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006046 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006048 if (!USE_VTP)
6049 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6050 else
6051 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052}
6053
6054
6055 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006056textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006058 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006060 if (!USE_VTP)
6061 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6062 else
6063 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006064}
6065
6066
6067/*
6068 * restore the default text attribute (whatever we started with)
6069 */
6070 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006071normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006073 if (!USE_VTP)
6074 textattr(g_attrDefault);
6075 else
6076 vtp_sgr_bulk(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077}
6078
6079
6080static WORD g_attrPreStandout = 0;
6081
6082/*
6083 * Make the text standout, by brightening it
6084 */
6085 static void
6086standout(void)
6087{
6088 g_attrPreStandout = g_attrCurrent;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006089
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
6091}
6092
6093
6094/*
6095 * Turn off standout mode
6096 */
6097 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006098standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099{
6100 if (g_attrPreStandout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101 textattr(g_attrPreStandout);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006102
6103 g_attrPreStandout = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104}
6105
6106
6107/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00006108 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109 */
6110 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006111mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112{
6113 char_u *p;
6114 int n;
6115
6116 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
6117 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006118 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006119# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006120 !p_tgc &&
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006121# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006122 T_ME[0] == ESC && T_ME[1] == '|')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 {
6124 p = T_ME + 2;
6125 n = getdigits(&p);
6126 if (*p == 'm' && n > 0)
6127 {
6128 cterm_normal_fg_color = (n & 0xf) + 1;
6129 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
6130 }
6131 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006132# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006133 cterm_normal_fg_gui_color = INVALCOLOR;
6134 cterm_normal_bg_gui_color = INVALCOLOR;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006135# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136}
6137
6138
6139/*
6140 * visual bell: flash the screen
6141 */
6142 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006143visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144{
6145 COORD coordOrigin = {0, 0};
6146 WORD attrFlash = ~g_attrCurrent & 0xff;
6147
6148 DWORD dwDummy;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006149 LPWORD oldattrs = ALLOC_MULT(WORD, Rows * Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150
6151 if (oldattrs == NULL)
6152 return;
6153 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
6154 coordOrigin, &dwDummy);
6155 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
6156 coordOrigin, &dwDummy);
6157
Bram Moolenaar0f873732019-12-05 20:28:46 +01006158 Sleep(15); // wait for 15 msec
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006159 if (!USE_VTP)
6160 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 coordOrigin, &dwDummy);
6162 vim_free(oldattrs);
6163}
6164
6165
6166/*
6167 * Make the cursor visible or invisible
6168 */
6169 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006170cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171{
6172 s_cursor_visible = fVisible;
Bram Moolenaar2695de62020-04-17 21:13:01 +02006173
6174 if (USE_VTP)
6175 vtp_printf("\033[?25%c", fVisible ? 'h' : 'l');
6176
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006177# ifdef MCH_CURSOR_SHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178 mch_update_cursor();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006179# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180}
6181
6182
6183/*
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006184 * Write "cbToWrite" bytes in `pchBuf' to the screen.
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006185 * Returns the number of bytes actually written (at least one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006187 static DWORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188write_chars(
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006189 char_u *pchBuf,
6190 DWORD cbToWrite)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006192 COORD coord = g_coord;
6193 DWORD written;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006194 DWORD n, cchwritten;
6195 static DWORD cells;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006196 static WCHAR *unicodebuf = NULL;
6197 static int unibuflen = 0;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006198 static int length;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006199 int cp = enc_utf8 ? CP_UTF8 : enc_codepage;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006200 static WCHAR *utf8spbuf = NULL;
6201 static int utf8splength;
6202 static DWORD utf8spcells;
6203 static WCHAR **utf8usingbuf = &unicodebuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006205 if (cbToWrite != 1 || *pchBuf != ' ' || !enc_utf8)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006206 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006207 utf8usingbuf = &unicodebuf;
6208 do
6209 {
6210 length = MultiByteToWideChar(cp, 0, (LPCSTR)pchBuf, cbToWrite,
6211 unicodebuf, unibuflen);
6212 if (length && length <= unibuflen)
6213 break;
6214 vim_free(unicodebuf);
6215 unicodebuf = length ? LALLOC_MULT(WCHAR, length) : NULL;
6216 unibuflen = unibuflen ? 0 : length;
6217 } while(1);
6218 cells = mb_string2cells(pchBuf, cbToWrite);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006219 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006220 else // cbToWrite == 1 && *pchBuf == ' ' && enc_utf8
6221 {
6222 if (utf8usingbuf != &utf8spbuf)
6223 {
6224 if (utf8spbuf == NULL)
6225 {
6226 cells = mb_string2cells((char_u *)" ", 1);
6227 length = MultiByteToWideChar(CP_UTF8, 0, " ", 1, NULL, 0);
6228 utf8spbuf = LALLOC_MULT(WCHAR, length);
6229 if (utf8spbuf != NULL)
6230 {
6231 MultiByteToWideChar(CP_UTF8, 0, " ", 1, utf8spbuf, length);
6232 utf8usingbuf = &utf8spbuf;
6233 utf8splength = length;
6234 utf8spcells = cells;
6235 }
6236 }
6237 else
6238 {
6239 utf8usingbuf = &utf8spbuf;
6240 length = utf8splength;
6241 cells = utf8spcells;
6242 }
6243 }
6244 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006245
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006246 if (!USE_VTP)
6247 {
6248 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
6249 coord, &written);
6250 // When writing fails or didn't write a single character, pretend one
6251 // character was written, otherwise we get stuck.
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006252 if (WriteConsoleOutputCharacterW(g_hConOut, *utf8usingbuf, length,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006253 coord, &cchwritten) == 0
6254 || cchwritten == 0 || cchwritten == (DWORD)-1)
6255 cchwritten = 1;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006256 }
6257 else
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006258 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006259 if (WriteConsoleW(g_hConOut, *utf8usingbuf, length, &cchwritten,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006260 NULL) == 0 || cchwritten == 0)
6261 cchwritten = 1;
6262 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006263
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006264 if (cchwritten == length)
6265 {
6266 written = cbToWrite;
6267 g_coord.X += (SHORT)cells;
6268 }
6269 else
6270 {
6271 char_u *p = pchBuf;
6272 for (n = 0; n < cchwritten; n++)
6273 MB_CPTR_ADV(p);
6274 written = p - pchBuf;
6275 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006276 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277
6278 while (g_coord.X > g_srScrollRegion.Right)
6279 {
6280 g_coord.X -= (SHORT) Columns;
6281 if (g_coord.Y < g_srScrollRegion.Bottom)
6282 g_coord.Y++;
6283 }
6284
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006285 // Cursor under VTP is always in the correct position, no need to reset.
6286 if (!USE_VTP)
6287 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288
6289 return written;
6290}
6291
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006292 static char_u *
6293get_seq(
6294 int *args,
6295 int *count,
6296 char_u *head)
6297{
6298 int argc;
6299 char_u *p;
6300
6301 if (head == NULL || *head != '\033')
6302 return NULL;
6303
6304 argc = 0;
6305 p = head;
6306 ++p;
6307 do
6308 {
6309 ++p;
6310 args[argc] = getdigits(&p);
6311 argc += (argc < 15) ? 1 : 0;
6312 } while (*p == ';');
6313 *count = argc;
6314
6315 return p;
6316}
6317
6318 static char_u *
6319get_sgr(
6320 int *args,
6321 int *count,
6322 char_u *head)
6323{
6324 char_u *p = get_seq(args, count, head);
6325
6326 return (p && *p == 'm') ? ++p : NULL;
6327}
6328
6329/*
6330 * Pointer to next if SGR (^[[n;2;*;*;*m), NULL otherwise.
6331 */
6332 static char_u *
6333sgrn2(
6334 char_u *head,
6335 int n)
6336{
6337 int argc;
6338 int args[16];
6339 char_u *p = get_sgr(args, &argc, head);
6340
6341 return p && argc == 5 && args[0] == n && args[1] == 2 ? p : NULL;
6342}
6343
6344/*
6345 * Pointer to next if SGR(^[[nm)<space>ESC, NULL otherwise.
6346 */
6347 static char_u *
6348sgrnc(
6349 char_u *head,
6350 int n)
6351{
6352 int argc;
6353 int args[16];
6354 char_u *p = get_sgr(args, &argc, head);
6355
6356 return p && argc == 1 && args[0] == n && (p = skipwhite(p)) && *p == '\033'
6357 ? p : NULL;
6358}
6359
6360 static char_u *
6361skipblank(char_u *q)
6362{
6363 char_u *p = q;
6364
6365 while (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r')
6366 ++p;
6367 return p;
6368}
6369
6370/*
6371 * Pointer to the next if any whitespace that may follow SGR is ESC, otherwise
6372 * NULL.
6373 */
6374 static char_u *
6375sgrn2c(
6376 char_u *head,
6377 int n)
6378{
6379 char_u *p = sgrn2(head, n);
6380
6381 return p && *p != NUL && (p = skipblank(p)) && *p == '\033' ? p : NULL;
6382}
6383
6384/*
6385 * If there is only a newline between the sequence immediately following it,
6386 * a pointer to the character following the newline is returned.
6387 * Otherwise NULL.
6388 */
6389 static char_u *
6390sgrn2cn(
6391 char_u *head,
6392 int n)
6393{
6394 char_u *p = sgrn2(head, n);
6395
6396 return p && p[0] == 0x0a && p[1] == '\033' ? ++p : NULL;
6397}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006398
6399/*
6400 * mch_write(): write the output buffer to the screen, translating ESC
6401 * sequences into calls to console output routines.
6402 */
6403 void
6404mch_write(
6405 char_u *s,
6406 int len)
6407{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006408# ifdef VIMDLL
6409 if (gui.in_use)
6410 return;
6411# endif
6412
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413 s[len] = NUL;
6414
6415 if (!term_console)
6416 {
6417 write(1, s, (unsigned)len);
6418 return;
6419 }
6420
Bram Moolenaar0f873732019-12-05 20:28:46 +01006421 // translate ESC | sequences into faked bios calls
Bram Moolenaar071d4272004-06-13 20:20:40 +00006422 while (len--)
6423 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006424 int prefix = -1;
6425 char_u ch;
6426
6427 // While processing a sequence, on rare occasions it seems that another
6428 // sequence may be inserted asynchronously.
6429 if (len < 0)
6430 {
6431 redraw_all_later(CLEAR);
6432 return;
6433 }
6434
6435 while((ch = s[++prefix]))
6436 if (ch <= 0x1e && !(ch != '\n' && ch != '\r' && ch != '\b'
6437 && ch != '\a' && ch != '\033'))
6438 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006439
6440 if (p_wd)
6441 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006442 WaitForChar(p_wd, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 if (prefix != 0)
6444 prefix = 1;
6445 }
6446
6447 if (prefix != 0)
6448 {
6449 DWORD nWritten;
6450
6451 nWritten = write_chars(s, prefix);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006452# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 if (fdDump)
6454 {
6455 fputc('>', fdDump);
6456 fwrite(s, sizeof(char_u), nWritten, fdDump);
6457 fputs("<\n", fdDump);
6458 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006459# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460 len -= (nWritten - 1);
6461 s += nWritten;
6462 }
6463 else if (s[0] == '\n')
6464 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006465 // \n, newline: go to the beginning of the next line or scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466 if (g_coord.Y == g_srScrollRegion.Bottom)
6467 {
6468 scroll(1);
6469 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
6470 }
6471 else
6472 {
6473 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
6474 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006475# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006476 if (fdDump)
6477 fputs("\\n\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006478# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 s++;
6480 }
6481 else if (s[0] == '\r')
6482 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006483 // \r, carriage return: go to beginning of line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006485# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006486 if (fdDump)
6487 fputs("\\r\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006488# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 s++;
6490 }
6491 else if (s[0] == '\b')
6492 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006493 // \b, backspace: move cursor one position left
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494 if (g_coord.X > g_srScrollRegion.Left)
6495 g_coord.X--;
6496 else if (g_coord.Y > g_srScrollRegion.Top)
6497 {
6498 g_coord.X = g_srScrollRegion.Right;
6499 g_coord.Y--;
6500 }
6501 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006502# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006503 if (fdDump)
6504 fputs("\\b\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006505# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 s++;
6507 }
6508 else if (s[0] == '\a')
6509 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006510 // \a, bell
Bram Moolenaar071d4272004-06-13 20:20:40 +00006511 MessageBeep(0xFFFFFFFF);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006512# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 if (fdDump)
6514 fputs("\\a\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006515# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516 s++;
6517 }
6518 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
6519 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006520# ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006521 char_u *old_s = s;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006522# endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006523 char_u *p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006524 int arg1 = 0, arg2 = 0, argc = 0, args[16];
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006525 char_u *sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006526
6527 switch (s[2])
6528 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529 case '0': case '1': case '2': case '3': case '4':
6530 case '5': case '6': case '7': case '8': case '9':
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006531 if (*(p = get_seq(args, &argc, s)) != 'm')
6532 goto notsgr;
6533
6534 p = s;
6535
6536 // Handling frequent optional sequences. Output to the screen
6537 // takes too long, so do not output as much as possible.
6538
6539 // If resetFG,FG,BG,<cr>,BG,FG are connected, the preceding
6540 // resetFG,FG,BG are omitted.
6541 if (sgrn2(sgrn2(sgrn2cn(sgrn2(sgrnc(p, 39), 38), 48), 48), 38))
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006542 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006543 p = sgrn2(sgrn2(sgrnc(p, 39), 38), 48);
6544 len = len + 1 - (int)(p - s);
6545 s = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546 break;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006548
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006549 // If FG,BG,BG,FG of SGR are connected, the first FG can be
6550 // omitted.
6551 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 48), 38))
6552 p = sp;
6553
6554 // If FG,BG,FG,BG of SGR are connected, the first FG can be
6555 // omitted.
6556 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 38), 48))
6557 p = sp;
6558
6559 // If BG,BG of SGR are connected, the first BG can be omitted.
6560 if (sgrn2((sp = sgrn2(p, 48)), 48))
6561 p = sp;
6562
6563 // If restoreFG and FG are connected, the restoreFG can be
6564 // omitted.
6565 if (sgrn2((sp = sgrnc(p, 39)), 38))
6566 p = sp;
6567
6568 p = get_seq(args, &argc, p);
6569
6570notsgr:
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006571 arg1 = args[0];
6572 arg2 = args[1];
6573 if (*p == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006574 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006575 if (argc == 1 && args[0] == 0)
6576 normvideo();
6577 else if (argc == 1)
6578 {
6579 if (USE_VTP)
6580 textcolor((WORD) arg1);
6581 else
6582 textattr((WORD) arg1);
6583 }
6584 else if (USE_VTP)
6585 vtp_sgr_bulks(argc, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006587 else if (argc == 2 && *p == 'H')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006589 gotoxy(arg2, arg1);
6590 }
6591 else if (argc == 2 && *p == 'r')
6592 {
6593 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
6594 }
Bram Moolenaar6982f422019-02-16 16:48:01 +01006595 else if (argc == 2 && *p == 'R')
6596 {
6597 set_scroll_region_tb(arg1, arg2);
6598 }
6599 else if (argc == 2 && *p == 'V')
6600 {
6601 set_scroll_region_lr(arg1, arg2);
6602 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006603 else if (argc == 1 && *p == 'A')
6604 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006605 gotoxy(g_coord.X + 1,
6606 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
6607 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006608 else if (argc == 1 && *p == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609 {
6610 textbackground((WORD) arg1);
6611 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006612 else if (argc == 1 && *p == 'C')
6613 {
6614 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
6615 g_coord.Y + 1);
6616 }
6617 else if (argc == 1 && *p == 'f')
6618 {
6619 textcolor((WORD) arg1);
6620 }
6621 else if (argc == 1 && *p == 'H')
6622 {
6623 gotoxy(1, arg1);
6624 }
6625 else if (argc == 1 && *p == 'L')
6626 {
6627 insert_lines(arg1);
6628 }
6629 else if (argc == 1 && *p == 'M')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006630 {
6631 delete_lines(arg1);
6632 }
6633
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006634 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635 s = p + 1;
6636 break;
6637
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638 case 'A':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006639 gotoxy(g_coord.X + 1,
6640 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
6641 goto got3;
6642
6643 case 'B':
6644 visual_bell();
6645 goto got3;
6646
6647 case 'C':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
6649 g_coord.Y + 1);
6650 goto got3;
6651
6652 case 'E':
6653 termcap_mode_end();
6654 goto got3;
6655
6656 case 'F':
6657 standout();
6658 goto got3;
6659
6660 case 'f':
6661 standend();
6662 goto got3;
6663
6664 case 'H':
6665 gotoxy(1, 1);
6666 goto got3;
6667
6668 case 'j':
6669 clear_to_end_of_display();
6670 goto got3;
6671
6672 case 'J':
6673 clear_screen();
6674 goto got3;
6675
6676 case 'K':
6677 clear_to_end_of_line();
6678 goto got3;
6679
6680 case 'L':
6681 insert_lines(1);
6682 goto got3;
6683
6684 case 'M':
6685 delete_lines(1);
6686 goto got3;
6687
6688 case 'S':
6689 termcap_mode_start();
6690 goto got3;
6691
6692 case 'V':
6693 cursor_visible(TRUE);
6694 goto got3;
6695
6696 case 'v':
6697 cursor_visible(FALSE);
6698 goto got3;
6699
6700 got3:
6701 s += 3;
6702 len -= 2;
6703 }
6704
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006705# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706 if (fdDump)
6707 {
6708 fputs("ESC | ", fdDump);
6709 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
6710 fputc('\n', fdDump);
6711 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006712# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006713 }
6714 else
6715 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006716 // Write a single character
Bram Moolenaar071d4272004-06-13 20:20:40 +00006717 DWORD nWritten;
6718
6719 nWritten = write_chars(s, 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006720# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006721 if (fdDump)
6722 {
6723 fputc('>', fdDump);
6724 fwrite(s, sizeof(char_u), nWritten, fdDump);
6725 fputs("<\n", fdDump);
6726 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006727# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728
6729 len -= (nWritten - 1);
6730 s += nWritten;
6731 }
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 fflush(fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006737# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738}
6739
Bram Moolenaar0f873732019-12-05 20:28:46 +01006740#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741
6742
6743/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01006744 * Delay for "msec" milliseconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006745 */
6746 void
6747mch_delay(
6748 long msec,
Bram Moolenaar0981c872020-08-23 14:28:37 +02006749 int flags UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006751#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006752 Sleep((int)msec); // never wait for input
6753#else // Console
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006754# ifdef VIMDLL
6755 if (gui.in_use)
6756 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006757 Sleep((int)msec); // never wait for input
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006758 return;
6759 }
6760# endif
Bram Moolenaar0981c872020-08-23 14:28:37 +02006761 if (flags & MCH_DELAY_IGNOREINPUT)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006762# ifdef FEAT_MZSCHEME
6763 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
6764 {
6765 int towait = p_mzq;
6766
Bram Moolenaar0f873732019-12-05 20:28:46 +01006767 // if msec is large enough, wait by portions in p_mzq
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006768 while (msec > 0)
6769 {
6770 mzvim_check_threads();
6771 if (msec < towait)
6772 towait = msec;
6773 Sleep(towait);
6774 msec -= towait;
6775 }
6776 }
6777 else
6778# endif
6779 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006781 WaitForChar(msec, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006782#endif
6783}
6784
6785
6786/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01006787 * This version of remove is not scared by a readonly (backup) file.
6788 * This can also remove a symbolic link like Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006789 * Return 0 for success, -1 for failure.
6790 */
6791 int
6792mch_remove(char_u *name)
6793{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006794 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006795 int n;
6796
Bram Moolenaar203258c2016-01-17 22:15:16 +01006797 /*
6798 * On Windows, deleting a directory's symbolic link is done by
6799 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
6800 */
6801 if (mch_isdir(name) && mch_is_symbolic_link(name))
6802 return mch_rmdir(name);
6803
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006804 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
6805
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006806 wn = enc_to_utf16(name, NULL);
6807 if (wn == NULL)
6808 return -1;
6809
6810 n = DeleteFileW(wn) ? 0 : -1;
6811 vim_free(wn);
6812 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813}
6814
6815
6816/*
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006817 * Check for an "interrupt signal": CTRL-break or CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818 */
6819 void
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02006820mch_breakcheck(int force UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006822#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
6823# ifdef VIMDLL
6824 if (!gui.in_use)
6825# endif
6826 if (g_fCtrlCPressed || g_fCBrkPressed)
6827 {
6828 ctrl_break_was_pressed = g_fCBrkPressed;
6829 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6830 got_int = TRUE;
6831 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832#endif
6833}
6834
Bram Moolenaar0f873732019-12-05 20:28:46 +01006835// physical RAM to leave for the OS
Bram Moolenaaree273972016-01-02 21:11:51 +01006836#define WINNT_RESERVE_BYTES (256*1024*1024)
Bram Moolenaaree273972016-01-02 21:11:51 +01006837
6838/*
6839 * How much main memory in KiB that can be used by VIM.
6840 */
Bram Moolenaaree273972016-01-02 21:11:51 +01006841 long_u
Bram Moolenaar1266d672017-02-01 13:43:36 +01006842mch_total_mem(int special UNUSED)
Bram Moolenaaree273972016-01-02 21:11:51 +01006843{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006844 MEMORYSTATUSEX ms;
6845
Bram Moolenaar0f873732019-12-05 20:28:46 +01006846 // Need to use GlobalMemoryStatusEx() when there is more memory than
6847 // what fits in 32 bits.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006848 ms.dwLength = sizeof(MEMORYSTATUSEX);
6849 GlobalMemoryStatusEx(&ms);
6850 if (ms.ullAvailVirtual < ms.ullTotalPhys)
Bram Moolenaaree273972016-01-02 21:11:51 +01006851 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006852 // Process address space fits in physical RAM, use all of it.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006853 return (long_u)(ms.ullAvailVirtual / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006854 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006855 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
Bram Moolenaaree273972016-01-02 21:11:51 +01006856 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006857 // Catch old NT box or perverse hardware setup.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006858 return (long_u)((ms.ullTotalPhys / 2) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006859 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006860 // Use physical RAM less reserve for OS + data.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006861 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006862}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006865 * mch_wrename() works around a bug in rename (aka MoveFile) in
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
6867 * file whose short file name is "FOO.BAR" (its long file name will
6868 * be correct: "foo.bar~"). Because a file can be accessed by
6869 * either its SFN or its LFN, "foo.bar" has effectively been
6870 * renamed to "foo.bar", which is not at all what was wanted. This
6871 * seems to happen only when renaming files with three-character
6872 * extensions by appending a suffix that does not include ".".
6873 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
6874 *
6875 * There is another problem, which isn't really a bug but isn't right either:
6876 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
6877 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
6878 * service pack 6. Doesn't seem to happen on Windows 98.
6879 *
6880 * Like rename(), returns 0 upon success, non-zero upon failure.
6881 * Should probably set errno appropriately when errors occur.
6882 */
6883 int
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006884mch_wrename(WCHAR *wold, WCHAR *wnew)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006886 WCHAR *p;
6887 int i;
6888 WCHAR szTempFile[_MAX_PATH + 1];
6889 WCHAR szNewPath[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890 HANDLE hf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006892 // No need to play tricks unless the file name contains a "~" as the
6893 // seventh character.
6894 p = wold;
6895 for (i = 0; wold[i] != NUL; ++i)
6896 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
6897 && wold[i + 1] != 0)
6898 p = wold + i + 1;
6899 if ((int)(wold + i - p) < 8 || p[6] != '~')
6900 return (MoveFileW(wold, wnew) == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006901
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006902 // Get base path of new file name. Undocumented feature: If pszNewFile is
6903 // a directory, no error is returned and pszFilePart will be NULL.
6904 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 return -1;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006906 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006908 // Get (and create) a unique temporary file name in directory of new file
6909 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910 return -2;
6911
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006912 // blow the temp file away
6913 if (!DeleteFileW(szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914 return -3;
6915
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006916 // rename old file to the temp file
6917 if (!MoveFileW(wold, szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006918 return -4;
6919
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006920 // now create an empty file called pszOldFile; this prevents the operating
6921 // system using pszOldFile as an alias (SFN) if we're renaming within the
6922 // same directory. For example, we're editing a file called
6923 // filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
6924 // to filena~1.txt~ (i.e., we're making a backup while writing it), the
6925 // SFN for filena~1.txt~ will be filena~1.txt, by default, which will
6926 // cause all sorts of problems later in buf_write(). So, we create an
6927 // empty file called filena~1.txt and the system will have to find some
6928 // other SFN for filena~1.txt~, such as filena~2.txt
6929 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6931 return -5;
6932 if (!CloseHandle(hf))
6933 return -6;
6934
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006935 // rename the temp file to the new file
6936 if (!MoveFileW(szTempFile, wnew))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006938 // Renaming failed. Rename the file back to its old name, so that it
6939 // looks like nothing happened.
6940 (void)MoveFileW(szTempFile, wold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006941 return -7;
6942 }
6943
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006944 // Seems to be left around on Novell filesystems
6945 DeleteFileW(szTempFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006946
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006947 // finally, remove the empty old file
6948 if (!DeleteFileW(wold))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006949 return -8;
6950
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006951 return 0;
6952}
6953
6954
6955/*
6956 * Converts the filenames to UTF-16, then call mch_wrename().
6957 * Like rename(), returns 0 upon success, non-zero upon failure.
6958 */
6959 int
6960mch_rename(
6961 const char *pszOldFile,
6962 const char *pszNewFile)
6963{
6964 WCHAR *wold = NULL;
6965 WCHAR *wnew = NULL;
6966 int retval = -1;
6967
6968 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
6969 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
6970 if (wold != NULL && wnew != NULL)
6971 retval = mch_wrename(wold, wnew);
6972 vim_free(wold);
6973 vim_free(wnew);
6974 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975}
6976
6977/*
6978 * Get the default shell for the current hardware platform
6979 */
6980 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006981default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006982{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006983 return "cmd.exe";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984}
6985
6986/*
6987 * mch_access() extends access() to do more detailed check on network drives.
6988 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
6989 */
6990 int
6991mch_access(char *n, int p)
6992{
6993 HANDLE hFile;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006994 int retval = -1; // default: fail
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006995 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006997 wn = enc_to_utf16((char_u *)n, NULL);
6998 if (wn == NULL)
6999 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01007001 if (mch_isdir((char_u *)n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003 WCHAR TempNameW[_MAX_PATH + 16] = L"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004
7005 if (p & R_OK)
7006 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007007 // Read check is performed by seeing if we can do a find file on
7008 // the directory for any file.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007009 int i;
7010 WIN32_FIND_DATAW d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007011
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007012 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
7013 TempNameW[i] = wn[i];
7014 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
7015 TempNameW[i++] = '\\';
7016 TempNameW[i++] = '*';
7017 TempNameW[i++] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007019 hFile = FindFirstFileW(TempNameW, &d);
7020 if (hFile == INVALID_HANDLE_VALUE)
7021 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007022 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023 (void)FindClose(hFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024 }
7025
7026 if (p & W_OK)
7027 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007028 // Trying to create a temporary file in the directory should catch
7029 // directories on read-only network shares. However, in
7030 // directories whose ACL allows writes but denies deletes will end
7031 // up keeping the temporary file :-(.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007032 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
7033 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007034 else
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007035 DeleteFileW(TempNameW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036 }
7037 }
7038 else
7039 {
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007040 // Don't consider a file read-only if another process has opened it.
7041 DWORD share_mode = FILE_SHARE_READ | FILE_SHARE_WRITE;
7042
Bram Moolenaar0f873732019-12-05 20:28:46 +01007043 // Trying to open the file for the required access does ACL, read-only
7044 // network share, and file attribute checks.
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007045 DWORD access_mode = ((p & W_OK) ? GENERIC_WRITE : 0)
7046 | ((p & R_OK) ? GENERIC_READ : 0);
7047
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007048 hFile = CreateFileW(wn, access_mode, share_mode,
7049 NULL, OPEN_EXISTING, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 if (hFile == INVALID_HANDLE_VALUE)
7051 goto getout;
7052 CloseHandle(hFile);
7053 }
7054
Bram Moolenaar0f873732019-12-05 20:28:46 +01007055 retval = 0; // success
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056getout:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058 return retval;
7059}
7060
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007062 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063 */
7064 int
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007065mch_open(const char *name, int flags, int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066{
7067 WCHAR *wn;
7068 int f;
7069
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007070 wn = enc_to_utf16((char_u *)name, NULL);
7071 if (wn == NULL)
7072 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007073
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007074 f = _wopen(wn, flags, mode);
7075 vim_free(wn);
7076 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077}
7078
7079/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007080 * Version of fopen() that uses UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007081 */
7082 FILE *
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007083mch_fopen(const char *name, const char *mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084{
7085 WCHAR *wn, *wm;
7086 FILE *f = NULL;
7087
Bram Moolenaara12a1612019-01-24 16:39:02 +01007088#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0f873732019-12-05 20:28:46 +01007089 // Work around an annoying assertion in the Microsoft debug CRT
7090 // when mode's text/binary setting doesn't match _get_fmode().
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007091 char newMode = mode[strlen(mode) - 1];
7092 int oldMode = 0;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007093
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007094 _get_fmode(&oldMode);
7095 if (newMode == 't')
7096 _set_fmode(_O_TEXT);
7097 else if (newMode == 'b')
7098 _set_fmode(_O_BINARY);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007099#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007100 wn = enc_to_utf16((char_u *)name, NULL);
7101 wm = enc_to_utf16((char_u *)mode, NULL);
7102 if (wn != NULL && wm != NULL)
7103 f = _wfopen(wn, wm);
7104 vim_free(wn);
7105 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007106
Bram Moolenaara12a1612019-01-24 16:39:02 +01007107#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007108 _set_fmode(oldMode);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007109#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007110 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007111}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112
Bram Moolenaar071d4272004-06-13 20:20:40 +00007113/*
7114 * SUB STREAM (aka info stream) handling:
7115 *
7116 * NTFS can have sub streams for each file. Normal contents of file is
7117 * stored in the main stream, and extra contents (author information and
7118 * title and so on) can be stored in sub stream. After Windows 2000, user
7119 * can access and store those informations in sub streams via explorer's
7120 * property menuitem in right click menu. Those informations in sub streams
7121 * were lost when copying only the main stream. So we have to copy sub
7122 * streams.
7123 *
7124 * Incomplete explanation:
7125 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
7126 * More useful info and an example:
7127 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
7128 */
7129
7130/*
7131 * Copy info stream data "substream". Read from the file with BackupRead(sh)
7132 * and write to stream "substream" of file "to".
7133 * Errors are ignored.
7134 */
7135 static void
7136copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
7137{
7138 HANDLE hTo;
7139 WCHAR *to_name;
7140
7141 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
7142 wcscpy(to_name, to);
7143 wcscat(to_name, substream);
7144
7145 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
7146 FILE_ATTRIBUTE_NORMAL, NULL);
7147 if (hTo != INVALID_HANDLE_VALUE)
7148 {
7149 long done;
7150 DWORD todo;
7151 DWORD readcnt, written;
7152 char buf[4096];
7153
Bram Moolenaar0f873732019-12-05 20:28:46 +01007154 // Copy block of bytes at a time. Abort when something goes wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155 for (done = 0; done < len; done += written)
7156 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007157 // (size_t) cast for Borland C 5.5
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007158 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
7159 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007160 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
7161 FALSE, FALSE, context)
7162 || readcnt != todo
7163 || !WriteFile(hTo, buf, todo, &written, NULL)
7164 || written != todo)
7165 break;
7166 }
7167 CloseHandle(hTo);
7168 }
7169
7170 free(to_name);
7171}
7172
7173/*
7174 * Copy info streams from file "from" to file "to".
7175 */
7176 static void
7177copy_infostreams(char_u *from, char_u *to)
7178{
7179 WCHAR *fromw;
7180 WCHAR *tow;
7181 HANDLE sh;
7182 WIN32_STREAM_ID sid;
7183 int headersize;
7184 WCHAR streamname[_MAX_PATH];
7185 DWORD readcount;
7186 void *context = NULL;
7187 DWORD lo, hi;
7188 int len;
7189
Bram Moolenaar0f873732019-12-05 20:28:46 +01007190 // Convert the file names to wide characters.
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007191 fromw = enc_to_utf16(from, NULL);
7192 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007193 if (fromw != NULL && tow != NULL)
7194 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007195 // Open the file for reading.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007196 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
7197 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
7198 if (sh != INVALID_HANDLE_VALUE)
7199 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007200 // Use BackupRead() to find the info streams. Repeat until we
7201 // have done them all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007202 for (;;)
7203 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007204 // Get the header to find the length of the stream name. If
7205 // the "readcount" is zero we have done all info streams.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007206 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007207 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007208 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
7209 &readcount, FALSE, FALSE, &context)
7210 || readcount == 0)
7211 break;
7212
Bram Moolenaar0f873732019-12-05 20:28:46 +01007213 // We only deal with streams that have a name. The normal
7214 // file data appears to be without a name, even though docs
7215 // suggest it is called "::$DATA".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007216 if (sid.dwStreamNameSize > 0)
7217 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007218 // Read the stream name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007219 if (!BackupRead(sh, (LPBYTE)streamname,
7220 sid.dwStreamNameSize,
7221 &readcount, FALSE, FALSE, &context))
7222 break;
7223
Bram Moolenaar0f873732019-12-05 20:28:46 +01007224 // Copy an info stream with a name ":anything:$DATA".
7225 // Skip "::$DATA", it has no stream name (examples suggest
7226 // it might be used for the normal file contents).
7227 // Note that BackupRead() counts bytes, but the name is in
7228 // wide characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007229 len = readcount / sizeof(WCHAR);
7230 streamname[len] = 0;
7231 if (len > 7 && wcsicmp(streamname + len - 6,
7232 L":$DATA") == 0)
7233 {
7234 streamname[len - 6] = 0;
7235 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007236 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007237 }
7238 }
7239
Bram Moolenaar0f873732019-12-05 20:28:46 +01007240 // Advance to the next stream. We might try seeking too far,
7241 // but BackupSeek() doesn't skip over stream borders, thus
7242 // that's OK.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007243 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244 &lo, &hi, &context);
7245 }
7246
Bram Moolenaar0f873732019-12-05 20:28:46 +01007247 // Clear the context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007248 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
7249
7250 CloseHandle(sh);
7251 }
7252 }
7253 vim_free(fromw);
7254 vim_free(tow);
7255}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007256
7257/*
7258 * Copy file attributes from file "from" to file "to".
7259 * For Windows NT and later we copy info streams.
7260 * Always returns zero, errors are ignored.
7261 */
7262 int
7263mch_copy_file_attribute(char_u *from, char_u *to)
7264{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007265 // File streams only work on Windows NT and later.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007266 copy_infostreams(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267 return 0;
7268}
7269
7270#if defined(MYRESETSTKOFLW) || defined(PROTO)
7271/*
7272 * Recreate a destroyed stack guard page in win32.
7273 * Written by Benjamin Peterson.
7274 */
7275
Bram Moolenaar0f873732019-12-05 20:28:46 +01007276// These magic numbers are from the MS header files
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007277# define MIN_STACK_WINNT 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278
7279/*
7280 * This function does the same thing as _resetstkoflw(), which is only
7281 * available in DevStudio .net and later.
7282 * Returns 0 for failure, 1 for success.
7283 */
7284 int
7285myresetstkoflw(void)
7286{
7287 BYTE *pStackPtr;
7288 BYTE *pGuardPage;
7289 BYTE *pStackBase;
7290 BYTE *pLowestPossiblePage;
7291 MEMORY_BASIC_INFORMATION mbi;
7292 SYSTEM_INFO si;
7293 DWORD nPageSize;
7294 DWORD dummy;
7295
Bram Moolenaar0f873732019-12-05 20:28:46 +01007296 // We need to know the system page size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007297 GetSystemInfo(&si);
7298 nPageSize = si.dwPageSize;
7299
Bram Moolenaar0f873732019-12-05 20:28:46 +01007300 // ...and the current stack pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +00007301 pStackPtr = (BYTE*)_alloca(1);
7302
Bram Moolenaar0f873732019-12-05 20:28:46 +01007303 // ...and the base of the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
7305 return 0;
7306 pStackBase = (BYTE*)mbi.AllocationBase;
7307
Bram Moolenaar4b96df52020-01-26 22:00:26 +01007308 // ...and the page that's min_stack_req pages away from stack base; this is
Bram Moolenaar0f873732019-12-05 20:28:46 +01007309 // the lowest page we could use.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007310 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311
Bram Moolenaar071d4272004-06-13 20:20:40 +00007312 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007313 // We want the first committed page in the stack Start at the stack
7314 // base and move forward through memory until we find a committed block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007315 BYTE *pBlock = pStackBase;
7316
Bram Moolenaara466c992005-07-09 21:03:22 +00007317 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007318 {
7319 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
7320 return 0;
7321
7322 pBlock += mbi.RegionSize;
7323
7324 if (mbi.State & MEM_COMMIT)
7325 break;
7326 }
7327
Bram Moolenaar0f873732019-12-05 20:28:46 +01007328 // mbi now describes the first committed block in the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007329 if (mbi.Protect & PAGE_GUARD)
7330 return 1;
7331
Bram Moolenaar0f873732019-12-05 20:28:46 +01007332 // decide where the guard page should start
Bram Moolenaar071d4272004-06-13 20:20:40 +00007333 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
7334 pGuardPage = pLowestPossiblePage;
7335 else
7336 pGuardPage = (BYTE*)mbi.BaseAddress;
7337
Bram Moolenaar0f873732019-12-05 20:28:46 +01007338 // allocate the guard page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
7340 return 0;
7341
Bram Moolenaar0f873732019-12-05 20:28:46 +01007342 // apply the guard attribute to the page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007343 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
7344 &dummy))
7345 return 0;
7346 }
7347
7348 return 1;
7349}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007350#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007352
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007353/*
7354 * The command line arguments in UCS2
7355 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007356static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007357static LPWSTR *ArglistW = NULL;
7358static int global_argc = 0;
7359static char **global_argv;
7360
Bram Moolenaar0f873732019-12-05 20:28:46 +01007361static int used_file_argc = 0; // last argument in global_argv[] used
7362 // for the argument list.
7363static int *used_file_indexes = NULL; // indexes in global_argv[] for
7364 // command line arguments added to
7365 // the argument list
7366static int used_file_count = 0; // nr of entries in used_file_indexes
7367static int used_file_literal = FALSE; // take file names literally
7368static int used_file_full_path = FALSE; // file name was full path
7369static int used_file_diff_mode = FALSE; // file name was with diff mode
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007370static int used_alist_count = 0;
7371
7372
7373/*
7374 * Get the command line arguments. Unicode version.
7375 * Returns argc. Zero when something fails.
7376 */
7377 int
7378get_cmd_argsW(char ***argvp)
7379{
7380 char **argv = NULL;
7381 int argc = 0;
7382 int i;
7383
Bram Moolenaar14993322014-09-09 12:25:33 +02007384 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007385 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
7386 if (ArglistW != NULL)
7387 {
7388 argv = malloc((nArgsW + 1) * sizeof(char *));
7389 if (argv != NULL)
7390 {
7391 argc = nArgsW;
7392 argv[argc] = NULL;
7393 for (i = 0; i < argc; ++i)
7394 {
7395 int len;
7396
Bram Moolenaar0f873732019-12-05 20:28:46 +01007397 // Convert each Unicode argument to the current codepage.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007398 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007399 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007400 (LPSTR *)&argv[i], &len, 0, 0);
7401 if (argv[i] == NULL)
7402 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007403 // Out of memory, clear everything.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007404 while (i > 0)
7405 free(argv[--i]);
7406 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01007407 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007408 argc = 0;
7409 }
7410 }
7411 }
7412 }
7413
7414 global_argc = argc;
7415 global_argv = argv;
7416 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02007417 {
7418 if (used_file_indexes != NULL)
7419 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007420 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02007421 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007422
7423 if (argvp != NULL)
7424 *argvp = argv;
7425 return argc;
7426}
7427
7428 void
7429free_cmd_argsW(void)
7430{
7431 if (ArglistW != NULL)
7432 {
7433 GlobalFree(ArglistW);
7434 ArglistW = NULL;
7435 }
7436}
7437
7438/*
7439 * Remember "name" is an argument that was added to the argument list.
7440 * This avoids that we have to re-parse the argument list when fix_arg_enc()
7441 * is called.
7442 */
7443 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007444used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007445{
7446 int i;
7447
7448 if (used_file_indexes == NULL)
7449 return;
7450 for (i = used_file_argc + 1; i < global_argc; ++i)
7451 if (STRCMP(global_argv[i], name) == 0)
7452 {
7453 used_file_argc = i;
7454 used_file_indexes[used_file_count++] = i;
7455 break;
7456 }
7457 used_file_literal = literal;
7458 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007459 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007460}
7461
7462/*
7463 * Remember the length of the argument list as it was. If it changes then we
7464 * leave it alone when 'encoding' is set.
7465 */
7466 void
7467set_alist_count(void)
7468{
7469 used_alist_count = GARGCOUNT;
7470}
7471
7472/*
7473 * Fix the encoding of the command line arguments. Invoked when 'encoding'
7474 * has been changed while starting up. Use the UCS-2 command line arguments
7475 * and convert them to 'encoding'.
7476 */
7477 void
7478fix_arg_enc(void)
7479{
7480 int i;
7481 int idx;
7482 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007483 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007484
Bram Moolenaar0f873732019-12-05 20:28:46 +01007485 // Safety checks:
7486 // - if argument count differs between the wide and non-wide argument
7487 // list, something must be wrong.
7488 // - the file name arguments must have been located.
7489 // - the length of the argument list wasn't changed by the user.
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007490 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007491 || ArglistW == NULL
7492 || used_file_indexes == NULL
7493 || used_file_count == 0
7494 || used_alist_count != GARGCOUNT)
7495 return;
7496
Bram Moolenaar0f873732019-12-05 20:28:46 +01007497 // Remember the buffer numbers for the arguments.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02007498 fnum_list = ALLOC_MULT(int, GARGCOUNT);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007499 if (fnum_list == NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007500 return; // out of memory
Bram Moolenaar86b68352004-12-27 21:59:20 +00007501 for (i = 0; i < GARGCOUNT; ++i)
7502 fnum_list[i] = GARGLIST[i].ae_fnum;
7503
Bram Moolenaar0f873732019-12-05 20:28:46 +01007504 // Clear the argument list. Make room for the new arguments.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007505 alist_clear(&global_alist);
7506 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007507 return; // out of memory
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007508
7509 for (i = 0; i < used_file_count; ++i)
7510 {
7511 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007512 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007513 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007514 {
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007515 int literal = used_file_literal;
7516
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007517#ifdef FEAT_DIFF
Bram Moolenaar0f873732019-12-05 20:28:46 +01007518 // When using diff mode may need to concatenate file name to
7519 // directory name. Just like it's done in main().
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007520 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
7521 && !mch_isdir(alist_name(&GARGLIST[0])))
7522 {
7523 char_u *r;
7524
7525 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
7526 if (r != NULL)
7527 {
7528 vim_free(str);
7529 str = r;
7530 }
7531 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007532#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007533 // Re-use the old buffer by renaming it. When not using literal
7534 // names it's done by alist_expand() below.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007535 if (used_file_literal)
7536 buf_set_name(fnum_list[i], str);
7537
Bram Moolenaar0f873732019-12-05 20:28:46 +01007538 // Check backtick literal. backtick literal is already expanded in
7539 // main.c, so this part add str as literal.
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007540 if (literal == FALSE)
7541 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02007542 size_t len = STRLEN(str);
7543
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007544 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
7545 literal = TRUE;
7546 }
7547 alist_add(&global_alist, str, literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007548 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007549 }
7550
7551 if (!used_file_literal)
7552 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007553 // Now expand wildcards in the arguments.
7554 // Temporarily add '(' and ')' to 'isfname'. These are valid
7555 // filename characters but are excluded from 'isfname' to make
7556 // "gf" work on a file name in parenthesis (e.g.: see vim.h).
7557 // Also, unset wildignore to not be influenced by this option.
7558 // The arguments specified in command-line should be kept even if
7559 // encoding options were changed.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007560 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007561 do_cmdline_cmd((char_u *)":let SaVe_WIG = &wig|set wig=");
Bram Moolenaar86b68352004-12-27 21:59:20 +00007562 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007563 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007564 do_cmdline_cmd((char_u *)":let &wig = SaVe_WIG|unlet SaVe_WIG");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007565 }
7566
Bram Moolenaar0f873732019-12-05 20:28:46 +01007567 // If wildcard expansion failed, we are editing the first file of the
7568 // arglist and there is no file name: Edit the first argument now.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007569 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7570 {
7571 do_cmdline_cmd((char_u *)":rewind");
7572 if (GARGCOUNT == 1 && used_file_full_path)
Bram Moolenaarb7407d32018-02-03 17:36:27 +01007573 (void)vim_chdirfile(alist_name(&GARGLIST[0]), "drop");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007574 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007575
7576 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007577}
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007578
7579 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02007580mch_setenv(char *var, char *value, int x UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007581{
7582 char_u *envbuf;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007583 WCHAR *p;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007584
Bram Moolenaar964b3742019-05-24 18:54:09 +02007585 envbuf = alloc(STRLEN(var) + STRLEN(value) + 2);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007586 if (envbuf == NULL)
7587 return -1;
7588
7589 sprintf((char *)envbuf, "%s=%s", var, value);
7590
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007591 p = enc_to_utf16(envbuf, NULL);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007592
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007593 vim_free(envbuf);
7594 if (p == NULL)
7595 return -1;
7596 _wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007597#ifdef libintl_wputenv
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007598 libintl_wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007599#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007600 // Unlike Un*x systems, we can free the string for _wputenv().
7601 vim_free(p);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007602
7603 return 0;
7604}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007605
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007606/*
7607 * Support for 256 colors and 24-bit colors was added in Windows 10
7608 * version 1703 (Creators update).
7609 */
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007610#define VTP_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 15063)
7611
7612/*
7613 * Support for pseudo-console (ConPTY) was added in windows 10
Bram Moolenaar57da6982019-09-13 22:30:11 +02007614 * version 1809 (October 2018 update).
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007615 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007616#define CONPTY_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 17763)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007617
7618/*
7619 * ConPTY differences between versions, need different logic.
7620 * version 1903 (May 2019 update).
7621 */
7622#define CONPTY_1903_BUILD MAKE_VER(10, 0, 18362)
7623
7624/*
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007625 * version 1909 (November 2019 update).
7626 */
7627#define CONPTY_1909_BUILD MAKE_VER(10, 0, 18363)
7628
7629/*
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007630 * Stay ahead of the next update, and when it's done, fix this.
7631 * version ? (2020 update, temporarily use the build number of insider preview)
7632 */
7633#define CONPTY_NEXT_UPDATE_BUILD MAKE_VER(10, 0, 19587)
7634
7635/*
Bram Moolenaar57da6982019-09-13 22:30:11 +02007636 * Confirm until this version. Also the logic changes.
7637 * insider preview.
7638 */
Bram Moolenaar4c063dd2019-10-04 21:29:12 +02007639#define CONPTY_INSIDER_BUILD MAKE_VER(10, 0, 18995)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007640
7641/*
7642 * Not stable now.
7643 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007644#define CONPTY_STABLE_BUILD MAKE_VER(10, 0, 32767) // T.B.D.
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007645
7646 static void
7647vtp_flag_init(void)
7648{
7649 DWORD ver = get_build_number();
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007650#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007651 DWORD mode;
7652 HANDLE out;
7653
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007654# ifdef VIMDLL
7655 if (!gui.in_use)
7656# endif
7657 {
7658 out = GetStdHandle(STD_OUTPUT_HANDLE);
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007659
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007660 vtp_working = (ver >= VTP_FIRST_SUPPORT_BUILD) ? 1 : 0;
7661 GetConsoleMode(out, &mode);
7662 mode |= (ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
7663 if (SetConsoleMode(out, mode) == 0)
7664 vtp_working = 0;
7665 }
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007666#endif
7667
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007668 if (ver >= CONPTY_FIRST_SUPPORT_BUILD)
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007669 conpty_working = 1;
7670 if (ver >= CONPTY_STABLE_BUILD)
7671 conpty_stable = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007672
Bram Moolenaar57da6982019-09-13 22:30:11 +02007673 if (ver <= CONPTY_INSIDER_BUILD)
7674 conpty_type = 3;
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007675 if (ver <= CONPTY_1909_BUILD)
7676 conpty_type = 2;
Bram Moolenaar57da6982019-09-13 22:30:11 +02007677 if (ver <= CONPTY_1903_BUILD)
7678 conpty_type = 2;
7679 if (ver < CONPTY_FIRST_SUPPORT_BUILD)
7680 conpty_type = 1;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007681
7682 if (ver >= CONPTY_NEXT_UPDATE_BUILD)
7683 conpty_fix_type = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007684}
7685
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007686#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007687
7688 static void
7689vtp_init(void)
7690{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007691 HMODULE hKerneldll;
7692 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007693# ifdef FEAT_TERMGUICOLORS
7694 COLORREF fg, bg;
7695# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007696
Bram Moolenaar0f873732019-12-05 20:28:46 +01007697 // Use functions supported from Vista
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007698 hKerneldll = GetModuleHandle("kernel32.dll");
7699 if (hKerneldll != NULL)
7700 {
7701 pGetConsoleScreenBufferInfoEx =
7702 (PfnGetConsoleScreenBufferInfoEx)GetProcAddress(
7703 hKerneldll, "GetConsoleScreenBufferInfoEx");
7704 pSetConsoleScreenBufferInfoEx =
7705 (PfnSetConsoleScreenBufferInfoEx)GetProcAddress(
7706 hKerneldll, "SetConsoleScreenBufferInfoEx");
7707 if (pGetConsoleScreenBufferInfoEx != NULL
7708 && pSetConsoleScreenBufferInfoEx != NULL)
7709 has_csbiex = TRUE;
7710 }
7711
7712 csbi.cbSize = sizeof(csbi);
7713 if (has_csbiex)
7714 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007715 save_console_bg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_bg];
7716 save_console_fg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_fg];
Bram Moolenaardf543822020-01-30 11:53:59 +01007717 store_console_bg_rgb = save_console_bg_rgb;
7718 store_console_fg_rgb = save_console_fg_rgb;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007719
7720# ifdef FEAT_TERMGUICOLORS
7721 bg = (COLORREF)csbi.ColorTable[g_color_index_bg];
7722 fg = (COLORREF)csbi.ColorTable[g_color_index_fg];
7723 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7724 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7725 default_console_color_bg = bg;
7726 default_console_color_fg = fg;
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007727# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007728
7729 set_console_color_rgb();
7730}
7731
7732 static void
7733vtp_exit(void)
7734{
Bram Moolenaardf543822020-01-30 11:53:59 +01007735 restore_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007736}
7737
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007738 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007739vtp_printf(
7740 char *format,
7741 ...)
7742{
7743 char_u buf[100];
7744 va_list list;
7745 DWORD result;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007746 int len;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007747
7748 va_start(list, format);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007749 len = vim_vsnprintf((char *)buf, 100, (char *)format, list);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007750 va_end(list);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007751 WriteConsoleA(g_hConOut, buf, (DWORD)len, &result, NULL);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007752 return (int)result;
7753}
7754
7755 static void
7756vtp_sgr_bulk(
7757 int arg)
7758{
7759 int args[1];
7760
7761 args[0] = arg;
7762 vtp_sgr_bulks(1, args);
7763}
7764
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007765#define FAST256(x) \
7766 if ((*p-- = "0123456789"[(n = x % 10)]) \
7767 && x >= 10 && (*p-- = "0123456789"[((m = x % 100) - n) / 10]) \
7768 && x >= 100 && (*p-- = "012"[((x & 0xff) - m) / 100]));
7769
7770#define FAST256CASE(x) \
7771 case x: \
7772 FAST256(newargs[x - 1]);
7773
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007774 static void
7775vtp_sgr_bulks(
7776 int argc,
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007777 int *args)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007778{
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007779#define MAXSGR 16
7780#define SGRBUFSIZE 2 + 4 * MAXSGR + 1 // '\033[' + SGR + 'm'
7781 char_u buf[SGRBUFSIZE];
7782 char_u *p;
7783 int in, out;
7784 int newargs[16];
7785 static int sgrfgr = -1, sgrfgg, sgrfgb;
7786 static int sgrbgr = -1, sgrbgg, sgrbgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007787
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007788 if (argc == 0)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007789 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007790 sgrfgr = sgrbgr = -1;
7791 vtp_printf("033[m");
7792 return;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007793 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007794
7795 in = out = 0;
7796 while (in < argc)
7797 {
7798 int s = args[in];
7799 int copylen = 1;
7800
7801 if (s == 38)
7802 {
7803 if (argc - in >= 5 && args[in + 1] == 2)
7804 {
7805 if (sgrfgr == args[in + 2] && sgrfgg == args[in + 3]
7806 && sgrfgb == args[in + 4])
7807 {
7808 in += 5;
7809 copylen = 0;
7810 }
7811 else
7812 {
7813 sgrfgr = args[in + 2];
7814 sgrfgg = args[in + 3];
7815 sgrfgb = args[in + 4];
7816 copylen = 5;
7817 }
7818 }
7819 else if (argc - in >= 3 && args[in + 1] == 5)
7820 {
7821 sgrfgr = -1;
7822 copylen = 3;
7823 }
7824 }
7825 else if (s == 48)
7826 {
7827 if (argc - in >= 5 && args[in + 1] == 2)
7828 {
7829 if (sgrbgr == args[in + 2] && sgrbgg == args[in + 3]
7830 && sgrbgb == args[in + 4])
7831 {
7832 in += 5;
7833 copylen = 0;
7834 }
7835 else
7836 {
7837 sgrbgr = args[in + 2];
7838 sgrbgg = args[in + 3];
7839 sgrbgb = args[in + 4];
7840 copylen = 5;
7841 }
7842 }
7843 else if (argc - in >= 3 && args[in + 1] == 5)
7844 {
7845 sgrbgr = -1;
7846 copylen = 3;
7847 }
7848 }
7849 else if (30 <= s && s <= 39)
7850 sgrfgr = -1;
7851 else if (90 <= s && s <= 97)
7852 sgrfgr = -1;
7853 else if (40 <= s && s <= 49)
7854 sgrbgr = -1;
7855 else if (100 <= s && s <= 107)
7856 sgrbgr = -1;
7857 else if (s == 0)
7858 sgrfgr = sgrbgr = -1;
7859
7860 while (copylen--)
7861 newargs[out++] = args[in++];
7862 }
7863
7864 p = &buf[sizeof(buf) - 1];
7865 *p-- = 'm';
7866
7867 switch (out)
7868 {
7869 int n, m;
7870 DWORD r;
7871
7872 FAST256CASE(16);
7873 *p-- = ';';
7874 FAST256CASE(15);
7875 *p-- = ';';
7876 FAST256CASE(14);
7877 *p-- = ';';
7878 FAST256CASE(13);
7879 *p-- = ';';
7880 FAST256CASE(12);
7881 *p-- = ';';
7882 FAST256CASE(11);
7883 *p-- = ';';
7884 FAST256CASE(10);
7885 *p-- = ';';
7886 FAST256CASE(9);
7887 *p-- = ';';
7888 FAST256CASE(8);
7889 *p-- = ';';
7890 FAST256CASE(7);
7891 *p-- = ';';
7892 FAST256CASE(6);
7893 *p-- = ';';
7894 FAST256CASE(5);
7895 *p-- = ';';
7896 FAST256CASE(4);
7897 *p-- = ';';
7898 FAST256CASE(3);
7899 *p-- = ';';
7900 FAST256CASE(2);
7901 *p-- = ';';
7902 FAST256CASE(1);
7903 *p-- = '[';
7904 *p = '\033';
7905 WriteConsoleA(g_hConOut, p, (DWORD)(&buf[SGRBUFSIZE] - p), &r, NULL);
7906 default:
7907 break;
7908 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007909}
7910
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007911 static void
7912wt_init(void)
7913{
7914 wt_working = (mch_getenv("WT_SESSION") != NULL);
7915}
7916
7917 int
7918use_wt(void)
7919{
7920 return USE_WT;
7921}
7922
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007923# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007924 static int
7925ctermtoxterm(
7926 int cterm)
7927{
Bram Moolenaar9894e392018-05-05 14:29:06 +02007928 char_u r, g, b, idx;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007929
7930 cterm_color2rgb(cterm, &r, &g, &b, &idx);
7931 return (((int)r << 16) | ((int)g << 8) | (int)b);
7932}
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007933# endif
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007934
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007935 static void
7936set_console_color_rgb(void)
7937{
7938# ifdef FEAT_TERMGUICOLORS
7939 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaara050b942019-12-02 21:35:31 +01007940 guicolor_T fg, bg;
7941 int ctermfg, ctermbg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007942
7943 if (!USE_VTP)
7944 return;
7945
Bram Moolenaara050b942019-12-02 21:35:31 +01007946 get_default_console_color(&ctermfg, &ctermbg, &fg, &bg);
7947
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007948 if (USE_WT)
7949 {
7950 term_fg_rgb_color(fg);
7951 term_bg_rgb_color(bg);
7952 return;
7953 }
7954
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007955 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7956 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7957
7958 csbi.cbSize = sizeof(csbi);
7959 if (has_csbiex)
7960 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
7961
7962 csbi.cbSize = sizeof(csbi);
7963 csbi.srWindow.Right += 1;
7964 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01007965 store_console_bg_rgb = csbi.ColorTable[g_color_index_bg];
7966 store_console_fg_rgb = csbi.ColorTable[g_color_index_fg];
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007967 csbi.ColorTable[g_color_index_bg] = (COLORREF)bg;
7968 csbi.ColorTable[g_color_index_fg] = (COLORREF)fg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007969 if (has_csbiex)
7970 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
7971# endif
7972}
7973
Bram Moolenaara050b942019-12-02 21:35:31 +01007974# if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
7975 void
7976get_default_console_color(
7977 int *cterm_fg,
7978 int *cterm_bg,
7979 guicolor_T *gui_fg,
7980 guicolor_T *gui_bg)
7981{
7982 int id;
7983 guicolor_T guifg = INVALCOLOR;
7984 guicolor_T guibg = INVALCOLOR;
7985 int ctermfg = 0;
7986 int ctermbg = 0;
7987
7988 id = syn_name2id((char_u *)"Normal");
7989 if (id > 0 && p_tgc)
7990 syn_id2colors(id, &guifg, &guibg);
7991 if (guifg == INVALCOLOR)
7992 {
7993 ctermfg = -1;
7994 if (id > 0)
7995 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
7996 guifg = ctermfg != -1 ? ctermtoxterm(ctermfg)
7997 : default_console_color_fg;
7998 cterm_normal_fg_gui_color = guifg;
7999 ctermfg = ctermfg < 0 ? 0 : ctermfg;
8000 }
8001 if (guibg == INVALCOLOR)
8002 {
8003 ctermbg = -1;
8004 if (id > 0)
8005 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
8006 guibg = ctermbg != -1 ? ctermtoxterm(ctermbg)
8007 : default_console_color_bg;
8008 cterm_normal_bg_gui_color = guibg;
8009 ctermbg = ctermbg < 0 ? 0 : ctermbg;
8010 }
8011
8012 *cterm_fg = ctermfg;
8013 *cterm_bg = ctermbg;
8014 *gui_fg = guifg;
8015 *gui_bg = guibg;
8016}
8017# endif
8018
Bram Moolenaardf543822020-01-30 11:53:59 +01008019/*
8020 * Set the console colors to the original colors or the last set colors.
8021 */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008022 static void
8023reset_console_color_rgb(void)
8024{
8025# ifdef FEAT_TERMGUICOLORS
8026 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8027
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008028 if (USE_WT)
8029 return;
8030
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008031 csbi.cbSize = sizeof(csbi);
8032 if (has_csbiex)
8033 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8034
8035 csbi.cbSize = sizeof(csbi);
8036 csbi.srWindow.Right += 1;
8037 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01008038 csbi.ColorTable[g_color_index_bg] = (COLORREF)store_console_bg_rgb;
8039 csbi.ColorTable[g_color_index_fg] = (COLORREF)store_console_fg_rgb;
8040 if (has_csbiex)
8041 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8042# endif
8043}
8044
8045/*
8046 * Set the console colors to the original colors.
8047 */
8048 static void
8049restore_console_color_rgb(void)
8050{
8051# ifdef FEAT_TERMGUICOLORS
8052 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8053
8054 csbi.cbSize = sizeof(csbi);
8055 if (has_csbiex)
8056 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8057
8058 csbi.cbSize = sizeof(csbi);
8059 csbi.srWindow.Right += 1;
8060 csbi.srWindow.Bottom += 1;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02008061 csbi.ColorTable[g_color_index_bg] = (COLORREF)save_console_bg_rgb;
8062 csbi.ColorTable[g_color_index_fg] = (COLORREF)save_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008063 if (has_csbiex)
8064 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8065# endif
8066}
8067
8068 void
8069control_console_color_rgb(void)
8070{
8071 if (USE_VTP)
8072 set_console_color_rgb();
8073 else
8074 reset_console_color_rgb();
8075}
8076
8077 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008078use_vtp(void)
8079{
8080 return USE_VTP;
8081}
8082
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008083 int
8084is_term_win32(void)
8085{
8086 return T_NAME != NULL && STRCMP(T_NAME, "win32") == 0;
8087}
8088
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01008089 int
8090has_vtp_working(void)
8091{
8092 return vtp_working;
8093}
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008094
Bram Moolenaar6902c0e2019-02-16 14:07:37 +01008095#endif
8096
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008097 int
8098has_conpty_working(void)
8099{
8100 return conpty_working;
8101}
8102
8103 int
Bram Moolenaar57da6982019-09-13 22:30:11 +02008104get_conpty_type(void)
8105{
8106 return conpty_type;
8107}
8108
8109 int
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008110is_conpty_stable(void)
8111{
8112 return conpty_stable;
8113}
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008114
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02008115 int
8116get_conpty_fix_type(void)
8117{
8118 return conpty_fix_type;
8119}
8120
Bram Moolenaarafde13b2019-04-28 19:46:49 +02008121#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008122 void
8123resize_console_buf(void)
8124{
8125 CONSOLE_SCREEN_BUFFER_INFO csbi;
8126 COORD coord;
8127 SMALL_RECT newsize;
8128
8129 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
8130 {
8131 coord.X = SRWIDTH(csbi.srWindow);
8132 coord.Y = SRHEIGHT(csbi.srWindow);
8133 SetConsoleScreenBufferSize(g_hConOut, coord);
8134
8135 newsize.Left = 0;
8136 newsize.Top = 0;
8137 newsize.Right = coord.X - 1;
8138 newsize.Bottom = coord.Y - 1;
8139 SetConsoleWindowInfo(g_hConOut, TRUE, &newsize);
8140
8141 SetConsoleScreenBufferSize(g_hConOut, coord);
8142 }
8143}
8144#endif