blob: 972f10da5c234aefb585cb49ca70be8623ebf061 [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 Moolenaar29d2f452020-12-04 19:42:52 +0100863#ifdef _MSC_VER
864// Suppress the deprecation warning for using GetVersionEx().
865// It is needed for implementing "windowsversion()".
866# pragma warning(push)
867# pragma warning(disable: 4996)
868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869/*
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200870 * Set "win8_or_later" and fill in "windowsVersion" if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 */
872 void
873PlatformId(void)
874{
875 static int done = FALSE;
876
877 if (!done)
878 {
879 OSVERSIONINFO ovi;
880
881 ovi.dwOSVersionInfoSize = sizeof(ovi);
882 GetVersionEx(&ovi);
883
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200884#ifdef FEAT_EVAL
Bram Moolenaar0c1e3742019-12-27 13:49:24 +0100885 vim_snprintf(windowsVersion, sizeof(windowsVersion), "%d.%d",
886 (int)ovi.dwMajorVersion, (int)ovi.dwMinorVersion);
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200887#endif
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100888 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2)
889 || ovi.dwMajorVersion > 6)
890 win8_or_later = TRUE;
891
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892#ifdef HAVE_ACL
Bram Moolenaar0f873732019-12-05 20:28:46 +0100893 // Enable privilege for getting or setting SACLs.
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200894 win32_enable_privilege(SE_SECURITY_NAME, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895#endif
896 done = TRUE;
897 }
898}
Bram Moolenaar29d2f452020-12-04 19:42:52 +0100899#ifdef _MSC_VER
900# pragma warning(pop)
901#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200903#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100905# define SHIFT (SHIFT_PRESSED)
906# define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)
907# define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)
908# define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909
910
Bram Moolenaar0f873732019-12-05 20:28:46 +0100911// When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode.
912// We map function keys to their ANSI terminal equivalents, as produced
913// by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any
914// ANSI key with a value >= '\300' is nonstandard, but provided anyway
915// so that the user can have access to all SHIFT-, CTRL-, and ALT-
916// combinations of function/arrow/etc keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917
Bram Moolenaard6f676d2005-06-01 21:51:55 +0000918static const struct
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919{
920 WORD wVirtKey;
921 BOOL fAnsiKey;
922 int chAlone;
923 int chShift;
924 int chCtrl;
925 int chAlt;
926} VirtKeyMap[] =
927{
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200928// Key ANSI alone shift ctrl alt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, },
930
931 { VK_F1, TRUE, ';', 'T', '^', 'h', },
932 { VK_F2, TRUE, '<', 'U', '_', 'i', },
933 { VK_F3, TRUE, '=', 'V', '`', 'j', },
934 { VK_F4, TRUE, '>', 'W', 'a', 'k', },
935 { VK_F5, TRUE, '?', 'X', 'b', 'l', },
936 { VK_F6, TRUE, '@', 'Y', 'c', 'm', },
937 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', },
938 { VK_F8, TRUE, 'B', '[', 'e', 'o', },
939 { VK_F9, TRUE, 'C', '\\', 'f', 'p', },
940 { VK_F10, TRUE, 'D', ']', 'g', 'q', },
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200941 { VK_F11, TRUE, '\205', '\207', '\211', '\213', },
942 { VK_F12, TRUE, '\206', '\210', '\212', '\214', },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200944 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', },
945 { VK_UP, TRUE, 'H', '\304', '\305', '\306', },
946 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, // PgUp
947 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', },
948 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', },
949 { VK_END, TRUE, 'O', '\315', 'u', '\316', },
950 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', },
951 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, // PgDn
952 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', },
953 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', },
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100954 { VK_BACK, TRUE, 'x', 'y', 'z', '{', }, // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200956 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, // PrtScrn
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100958# if 0
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200959 // Most people don't have F13-F20, but what the hell...
960 { VK_F13, TRUE, '\332', '\333', '\334', '\335', },
961 { VK_F14, TRUE, '\336', '\337', '\340', '\341', },
962 { VK_F15, TRUE, '\342', '\343', '\344', '\345', },
963 { VK_F16, TRUE, '\346', '\347', '\350', '\351', },
964 { VK_F17, TRUE, '\352', '\353', '\354', '\355', },
965 { VK_F18, TRUE, '\356', '\357', '\360', '\361', },
966 { VK_F19, TRUE, '\362', '\363', '\364', '\365', },
967 { VK_F20, TRUE, '\366', '\367', '\370', '\371', },
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100968# endif
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200969 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, // keyp '+'
970 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, // keyp '-'
971 // { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, // keyp '/'
972 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, // keyp '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200974 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', },
975 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', },
976 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', },
977 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', },
978 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', },
979 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', },
980 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', },
981 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', },
982 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', },
983 // Sorry, out of number space! <negri>
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100984 { VK_NUMPAD9,TRUE, '\376', '\377', '|', '}', },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985};
986
987
Bram Moolenaar0f873732019-12-05 20:28:46 +0100988/*
989 * The return code indicates key code size.
990 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992win32_kbd_patch_key(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000993 KEY_EVENT_RECORD *pker)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994{
995 UINT uMods = pker->dwControlKeyState;
996 static int s_iIsDead = 0;
997 static WORD awAnsiCode[2];
998 static BYTE abKeystate[256];
999
1000
1001 if (s_iIsDead == 2)
1002 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001003 pker->UChar = (WCHAR) awAnsiCode[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 s_iIsDead = 0;
1005 return 1;
1006 }
1007
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001008 if (pker->UChar != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 return 1;
1010
Bram Moolenaara80faa82020-04-12 19:37:17 +02001011 CLEAR_FIELD(abKeystate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012
Bram Moolenaar0f873732019-12-05 20:28:46 +01001013 // Clear any pending dead keys
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001014 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015
1016 if (uMods & SHIFT_PRESSED)
1017 abKeystate[VK_SHIFT] = 0x80;
1018 if (uMods & CAPSLOCK_ON)
1019 abKeystate[VK_CAPITAL] = 1;
1020
1021 if ((uMods & ALT_GR) == ALT_GR)
1022 {
1023 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] =
1024 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80;
1025 }
1026
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001027 s_iIsDead = ToUnicode(pker->wVirtualKeyCode, pker->wVirtualScanCode,
1028 abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029
1030 if (s_iIsDead > 0)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001031 pker->UChar = (WCHAR) awAnsiCode[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032
1033 return s_iIsDead;
1034}
1035
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036static BOOL g_fJustGotFocus = FALSE;
1037
1038/*
1039 * Decode a KEY_EVENT into one or two keystrokes
1040 */
1041 static BOOL
1042decode_key_event(
1043 KEY_EVENT_RECORD *pker,
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001044 WCHAR *pch,
1045 WCHAR *pch2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 int *pmodifiers,
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02001047 BOOL fDoPost UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048{
1049 int i;
1050 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL);
1051
1052 *pch = *pch2 = NUL;
1053 g_fJustGotFocus = FALSE;
1054
Bram Moolenaar0f873732019-12-05 20:28:46 +01001055 // ignore key up events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 if (!pker->bKeyDown)
1057 return FALSE;
1058
Bram Moolenaar0f873732019-12-05 20:28:46 +01001059 // ignore some keystrokes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 switch (pker->wVirtualKeyCode)
1061 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001062 // modifiers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 case VK_SHIFT:
1064 case VK_CONTROL:
Bram Moolenaar0f873732019-12-05 20:28:46 +01001065 case VK_MENU: // Alt key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 return FALSE;
1067
1068 default:
1069 break;
1070 }
1071
Bram Moolenaar0f873732019-12-05 20:28:46 +01001072 // special cases
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001073 if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001075 // Ctrl-6 is Ctrl-^
Bram Moolenaar071d4272004-06-13 20:20:40 +00001076 if (pker->wVirtualKeyCode == '6')
1077 {
1078 *pch = Ctrl_HAT;
1079 return TRUE;
1080 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001081 // Ctrl-2 is Ctrl-@
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 else if (pker->wVirtualKeyCode == '2')
1083 {
1084 *pch = NUL;
1085 return TRUE;
1086 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001087 // Ctrl-- is Ctrl-_
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 else if (pker->wVirtualKeyCode == 0xBD)
1089 {
1090 *pch = Ctrl__;
1091 return TRUE;
1092 }
1093 }
1094
Bram Moolenaar0f873732019-12-05 20:28:46 +01001095 // Shift-TAB
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED))
1097 {
1098 *pch = K_NUL;
1099 *pch2 = '\017';
1100 return TRUE;
1101 }
1102
1103 for (i = sizeof(VirtKeyMap) / sizeof(VirtKeyMap[0]); --i >= 0; )
1104 {
1105 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode)
1106 {
1107 if (nModifs == 0)
1108 *pch = VirtKeyMap[i].chAlone;
1109 else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0)
1110 *pch = VirtKeyMap[i].chShift;
1111 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0)
1112 *pch = VirtKeyMap[i].chCtrl;
1113 else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0)
1114 *pch = VirtKeyMap[i].chAlt;
1115
1116 if (*pch != 0)
1117 {
1118 if (VirtKeyMap[i].fAnsiKey)
1119 {
1120 *pch2 = *pch;
1121 *pch = K_NUL;
1122 }
1123
1124 return TRUE;
1125 }
1126 }
1127 }
1128
1129 i = win32_kbd_patch_key(pker);
1130
1131 if (i < 0)
1132 *pch = NUL;
1133 else
1134 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001135 *pch = (i > 0) ? pker->UChar : NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136
1137 if (pmodifiers != NULL)
1138 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001139 // Pass on the ALT key as a modifier, but only when not combined
1140 // with CTRL (which is ALTGR).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0)
1142 *pmodifiers |= MOD_MASK_ALT;
1143
Bram Moolenaar0f873732019-12-05 20:28:46 +01001144 // Pass on SHIFT only for special keys, because we don't know when
1145 // it's already included with the character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 if ((nModifs & SHIFT) != 0 && *pch <= 0x20)
1147 *pmodifiers |= MOD_MASK_SHIFT;
1148
Bram Moolenaar0f873732019-12-05 20:28:46 +01001149 // Pass on CTRL only for non-special keys, because we don't know
1150 // when it's already included with the character. And not when
1151 // combined with ALT (which is ALTGR).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0
1153 && *pch >= 0x20 && *pch < 0x80)
1154 *pmodifiers |= MOD_MASK_CTRL;
1155 }
1156 }
1157
1158 return (*pch != NUL);
1159}
1160
Bram Moolenaar0f873732019-12-05 20:28:46 +01001161#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162
1163
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164/*
1165 * For the GUI the mouse handling is in gui_w32.c.
1166 */
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001167#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001169mch_setmouse(int on UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170{
1171}
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001172#else
Bram Moolenaar0f873732019-12-05 20:28:46 +01001173static int g_fMouseAvail = FALSE; // mouse present
1174static int g_fMouseActive = FALSE; // mouse enabled
1175static int g_nMouseClick = -1; // mouse status
1176static int g_xMouse; // mouse x coordinate
1177static int g_yMouse; // mouse y coordinate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178
1179/*
1180 * Enable or disable mouse input
1181 */
1182 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001183mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184{
1185 DWORD cmodein;
1186
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001187# ifdef VIMDLL
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001188 if (gui.in_use)
1189 return;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001190# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 if (!g_fMouseAvail)
1192 return;
1193
1194 g_fMouseActive = on;
1195 GetConsoleMode(g_hConIn, &cmodein);
1196
1197 if (g_fMouseActive)
1198 cmodein |= ENABLE_MOUSE_INPUT;
1199 else
1200 cmodein &= ~ENABLE_MOUSE_INPUT;
1201
1202 SetConsoleMode(g_hConIn, cmodein);
1203}
1204
Bram Moolenaar157d8132018-03-06 17:09:20 +01001205
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001206# if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar157d8132018-03-06 17:09:20 +01001207/*
1208 * Called when 'balloonevalterm' changed.
1209 */
1210 void
1211mch_bevalterm_changed(void)
1212{
1213 mch_setmouse(g_fMouseActive);
1214}
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001215# endif
Bram Moolenaar157d8132018-03-06 17:09:20 +01001216
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217/*
1218 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT,
1219 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse
1220 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG
1221 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type,
1222 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick,
1223 * and we return the mouse position in g_xMouse and g_yMouse.
1224 *
1225 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more
1226 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only
1227 * by MOUSE_LEFT, _MIDDLE, or _RIGHT.
1228 *
1229 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE,
1230 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, ....
1231 *
1232 * Windows will send us MOUSE_MOVED notifications whenever the mouse
1233 * moves, even if it stays within the same character cell. We ignore
1234 * all MOUSE_MOVED messages if the position hasn't really changed, and
1235 * we ignore all MOUSE_MOVED messages where no button is held down (i.e.,
1236 * we're only interested in MOUSE_DRAG).
1237 *
1238 * All of this is complicated by the code that fakes MOUSE_MIDDLE on
1239 * 2-button mouses by pressing the left & right buttons simultaneously.
1240 * In practice, it's almost impossible to click both at the same time,
1241 * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE
1242 * in such cases, if the user is clicking quickly.
1243 */
1244 static BOOL
1245decode_mouse_event(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001246 MOUSE_EVENT_RECORD *pmer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247{
1248 static int s_nOldButton = -1;
1249 static int s_nOldMouseClick = -1;
1250 static int s_xOldMouse = -1;
1251 static int s_yOldMouse = -1;
1252 static linenr_T s_old_topline = 0;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001253# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 static int s_old_topfill = 0;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001255# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 static int s_cClicks = 1;
1257 static BOOL s_fReleased = TRUE;
1258 static DWORD s_dwLastClickTime = 0;
1259 static BOOL s_fNextIsMiddle = FALSE;
1260
Bram Moolenaar0f873732019-12-05 20:28:46 +01001261 static DWORD cButtons = 0; // number of buttons supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262
1263 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED;
1264 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED;
1265 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED;
1266 const DWORD LEFT_RIGHT = LEFT | RIGHT;
1267
1268 int nButton;
1269
1270 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons))
1271 cButtons = 2;
1272
1273 if (!g_fMouseAvail || !g_fMouseActive)
1274 {
1275 g_nMouseClick = -1;
1276 return FALSE;
1277 }
1278
Bram Moolenaar0f873732019-12-05 20:28:46 +01001279 // get a spurious MOUSE_EVENT immediately after receiving focus; ignore
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 if (g_fJustGotFocus)
1281 {
1282 g_fJustGotFocus = FALSE;
1283 return FALSE;
1284 }
1285
Bram Moolenaar0f873732019-12-05 20:28:46 +01001286 // unprocessed mouse click?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 if (g_nMouseClick != -1)
1288 return TRUE;
1289
1290 nButton = -1;
1291 g_xMouse = pmer->dwMousePosition.X;
1292 g_yMouse = pmer->dwMousePosition.Y;
1293
1294 if (pmer->dwEventFlags == MOUSE_MOVED)
1295 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001296 // Ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these
1297 // events even when the mouse moves only within a char cell.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse)
1299 return FALSE;
1300 }
1301
Bram Moolenaar0f873732019-12-05 20:28:46 +01001302 // If no buttons are pressed...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0)
1304 {
Bram Moolenaar157d8132018-03-06 17:09:20 +01001305 nButton = MOUSE_RELEASE;
1306
Bram Moolenaar0f873732019-12-05 20:28:46 +01001307 // If the last thing returned was MOUSE_RELEASE, ignore this
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 if (s_fReleased)
Bram Moolenaar157d8132018-03-06 17:09:20 +01001309 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001310# ifdef FEAT_BEVAL_TERM
Bram Moolenaar0f873732019-12-05 20:28:46 +01001311 // do return mouse move events when we want them
Bram Moolenaar157d8132018-03-06 17:09:20 +01001312 if (p_bevalterm)
1313 nButton = MOUSE_DRAG;
1314 else
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001315# endif
Bram Moolenaar157d8132018-03-06 17:09:20 +01001316 return FALSE;
1317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 s_fReleased = TRUE;
1320 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001321 else // one or more buttons pressed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001323 // on a 2-button mouse, hold down left and right buttons
1324 // simultaneously to get MIDDLE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325
1326 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG)
1327 {
1328 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT);
1329
Bram Moolenaar0f873732019-12-05 20:28:46 +01001330 // if either left or right button only is pressed, see if the
1331 // next mouse event has both of them pressed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 if (dwLR == LEFT || dwLR == RIGHT)
1333 {
1334 for (;;)
1335 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001336 // wait a short time for next input event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 if (WaitForSingleObject(g_hConIn, p_mouset / 3)
1338 != WAIT_OBJECT_0)
1339 break;
1340 else
1341 {
1342 DWORD cRecords = 0;
1343 INPUT_RECORD ir;
1344 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent;
1345
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001346 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347
1348 if (cRecords == 0 || ir.EventType != MOUSE_EVENT
1349 || !(pmer2->dwButtonState & LEFT_RIGHT))
1350 break;
1351 else
1352 {
1353 if (pmer2->dwEventFlags != MOUSE_MOVED)
1354 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001355 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356
1357 return decode_mouse_event(pmer2);
1358 }
1359 else if (s_xOldMouse == pmer2->dwMousePosition.X &&
1360 s_yOldMouse == pmer2->dwMousePosition.Y)
1361 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001362 // throw away spurious mouse move
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001363 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364
Bram Moolenaar0f873732019-12-05 20:28:46 +01001365 // are there any more mouse events in queue?
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001366 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367
1368 if (cRecords==0 || ir.EventType != MOUSE_EVENT)
1369 break;
1370 }
1371 else
1372 break;
1373 }
1374 }
1375 }
1376 }
1377 }
1378
1379 if (s_fNextIsMiddle)
1380 {
1381 nButton = (pmer->dwEventFlags == MOUSE_MOVED)
1382 ? MOUSE_DRAG : MOUSE_MIDDLE;
1383 s_fNextIsMiddle = FALSE;
1384 }
1385 else if (cButtons == 2 &&
1386 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT))
1387 {
1388 nButton = MOUSE_MIDDLE;
1389
1390 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED)
1391 {
1392 s_fNextIsMiddle = TRUE;
1393 nButton = MOUSE_RELEASE;
1394 }
1395 }
1396 else if ((pmer->dwButtonState & LEFT) == LEFT)
1397 nButton = MOUSE_LEFT;
1398 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE)
1399 nButton = MOUSE_MIDDLE;
1400 else if ((pmer->dwButtonState & RIGHT) == RIGHT)
1401 nButton = MOUSE_RIGHT;
1402
1403 if (! s_fReleased && ! s_fNextIsMiddle
1404 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG)
1405 return FALSE;
1406
1407 s_fReleased = s_fNextIsMiddle;
1408 }
1409
1410 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK)
1411 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001412 // button pressed or released, without mouse moving
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 if (nButton != -1 && nButton != MOUSE_RELEASE)
1414 {
1415 DWORD dwCurrentTime = GetTickCount();
1416
1417 if (s_xOldMouse != g_xMouse
1418 || s_yOldMouse != g_yMouse
1419 || s_nOldButton != nButton
1420 || s_old_topline != curwin->w_topline
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001421# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 || s_old_topfill != curwin->w_topfill
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001423# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001424 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset)
1425 {
1426 s_cClicks = 1;
1427 }
1428 else if (++s_cClicks > 4)
1429 {
1430 s_cClicks = 1;
1431 }
1432
1433 s_dwLastClickTime = dwCurrentTime;
1434 }
1435 }
1436 else if (pmer->dwEventFlags == MOUSE_MOVED)
1437 {
1438 if (nButton != -1 && nButton != MOUSE_RELEASE)
1439 nButton = MOUSE_DRAG;
1440
1441 s_cClicks = 1;
1442 }
1443
1444 if (nButton == -1)
1445 return FALSE;
1446
1447 if (nButton != MOUSE_RELEASE)
1448 s_nOldButton = nButton;
1449
1450 g_nMouseClick = nButton;
1451
1452 if (pmer->dwControlKeyState & SHIFT_PRESSED)
1453 g_nMouseClick |= MOUSE_SHIFT;
1454 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
1455 g_nMouseClick |= MOUSE_CTRL;
1456 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
1457 g_nMouseClick |= MOUSE_ALT;
1458
1459 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE)
1460 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks);
1461
Bram Moolenaar0f873732019-12-05 20:28:46 +01001462 // only pass on interesting (i.e., different) mouse events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001463 if (s_xOldMouse == g_xMouse
1464 && s_yOldMouse == g_yMouse
1465 && s_nOldMouseClick == g_nMouseClick)
1466 {
1467 g_nMouseClick = -1;
1468 return FALSE;
1469 }
1470
1471 s_xOldMouse = g_xMouse;
1472 s_yOldMouse = g_yMouse;
1473 s_old_topline = curwin->w_topline;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001474# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 s_old_topfill = curwin->w_topfill;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001476# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 s_nOldMouseClick = g_nMouseClick;
1478
1479 return TRUE;
1480}
1481
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001482#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483
1484
1485#ifdef MCH_CURSOR_SHAPE
1486/*
1487 * Set the shape of the cursor.
1488 * 'thickness' can be from 1 (thin) to 99 (block)
1489 */
1490 static void
1491mch_set_cursor_shape(int thickness)
1492{
1493 CONSOLE_CURSOR_INFO ConsoleCursorInfo;
1494 ConsoleCursorInfo.dwSize = thickness;
1495 ConsoleCursorInfo.bVisible = s_cursor_visible;
1496
1497 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
1498 if (s_cursor_visible)
1499 SetConsoleCursorPosition(g_hConOut, g_coord);
1500}
1501
1502 void
1503mch_update_cursor(void)
1504{
1505 int idx;
1506 int thickness;
1507
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001508# ifdef VIMDLL
1509 if (gui.in_use)
1510 return;
1511# endif
1512
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 /*
1514 * How the cursor is drawn depends on the current mode.
1515 */
1516 idx = get_shape_idx(FALSE);
1517
1518 if (shape_table[idx].shape == SHAPE_BLOCK)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001519 thickness = 99; // 100 doesn't work on W95
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 else
1521 thickness = shape_table[idx].percentage;
1522 mch_set_cursor_shape(thickness);
1523}
1524#endif
1525
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001526#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527/*
1528 * Handle FOCUS_EVENT.
1529 */
1530 static void
1531handle_focus_event(INPUT_RECORD ir)
1532{
1533 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus;
1534 ui_focus_change((int)g_fJustGotFocus);
1535}
1536
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001537static void ResizeConBuf(HANDLE hConsole, COORD coordScreen);
1538
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539/*
1540 * Wait until console input from keyboard or mouse is available,
1541 * or the time is up.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001542 * When "ignore_input" is TRUE even wait when input is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 * Return TRUE if something is available FALSE if not.
1544 */
1545 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001546WaitForChar(long msec, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547{
1548 DWORD dwNow = 0, dwEndTime = 0;
1549 INPUT_RECORD ir;
1550 DWORD cRecords;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001551 WCHAR ch, ch2;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001552# ifdef FEAT_TIMERS
Bram Moolenaar40b1b542016-04-20 20:18:23 +02001553 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001554# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555
1556 if (msec > 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001557 // Wait until the specified time has elapsed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 dwEndTime = GetTickCount() + msec;
1559 else if (msec < 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001560 // Wait forever.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 dwEndTime = INFINITE;
1562
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01001563 // We need to loop until the end of the time period, because
1564 // we might get multiple unusable mouse events in that time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 for (;;)
1566 {
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001567 // Only process messages when waiting.
1568 if (msec != 0)
1569 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001570# ifdef MESSAGE_QUEUE
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001571 parse_queued_messages();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001572# endif
1573# ifdef FEAT_MZSCHEME
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001574 mzvim_check_threads();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001575# endif
1576# ifdef FEAT_CLIENTSERVER
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001577 serverProcessPendingMessages();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001578# endif
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001579 }
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001580
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001581 if (g_nMouseClick != -1
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001582# ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001583 || (!ignore_input && input_available())
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001584# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 )
1586 return TRUE;
1587
1588 if (msec > 0)
1589 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001590 // If the specified wait time has passed, return. Beware that
1591 // GetTickCount() may wrap around (overflow).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 dwNow = GetTickCount();
Bram Moolenaarb7512b72013-08-10 12:45:09 +02001593 if ((int)(dwNow - dwEndTime) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 break;
1595 }
1596 if (msec != 0)
1597 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001598 DWORD dwWaitTime = dwEndTime - dwNow;
1599
Bram Moolenaarc478ee32020-12-01 21:27:51 +01001600 // Don't wait for more than 11 msec to avoid dropping characters,
1601 // check channel while waiting for input and handle a callback from
1602 // 'balloonexpr'.
1603 if (dwWaitTime > 11)
1604 dwWaitTime = 11;
1605
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001606# ifdef FEAT_MZSCHEME
Bram Moolenaarc478ee32020-12-01 21:27:51 +01001607 if (mzthreads_allowed() && p_mzq > 0 && (long)dwWaitTime > p_mzq)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001608 dwWaitTime = p_mzq; // don't wait longer than 'mzquantum'
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001609# endif
1610# ifdef FEAT_TIMERS
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001611 // When waiting very briefly don't trigger timers.
1612 if (dwWaitTime > 10)
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001613 {
1614 long due_time;
1615
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001616 // Trigger timers and then get the time in msec until the next
1617 // one is due. Wait up to that time.
1618 due_time = check_due_timer();
1619 if (typebuf.tb_change_cnt != tb_change_cnt)
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001620 {
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001621 // timer may have used feedkeys().
1622 return FALSE;
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001623 }
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001624 if (due_time > 0 && dwWaitTime > (DWORD)due_time)
1625 dwWaitTime = due_time;
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001626 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001627# endif
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001628 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001629# ifdef FEAT_CLIENTSERVER
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001630 // Wait for either an event on the console input or a
1631 // message in the client-server window.
1632 msg_wait_for_multiple_objects(1, &g_hConIn, FALSE,
1633 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001634# else
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001635 wait_for_single_object(g_hConIn, dwWaitTime)
1636 != WAIT_OBJECT_0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001637# endif
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001638 )
1639 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 }
1641
1642 cRecords = 0;
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001643 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001645# ifdef FEAT_MBYTE_IME
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 if (State & CMDLINE && msg_row == Rows - 1)
1647 {
1648 CONSOLE_SCREEN_BUFFER_INFO csbi;
1649
1650 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
1651 {
1652 if (csbi.dwCursorPosition.Y != msg_row)
1653 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001654 // The screen is now messed up, must redraw the
1655 // command line and later all the windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 redraw_all_later(CLEAR);
1657 cmdline_row -= (msg_row - csbi.dwCursorPosition.Y);
1658 redrawcmd();
1659 }
1660 }
1661 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001662# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663
1664 if (cRecords > 0)
1665 {
1666 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown)
1667 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001668# ifdef FEAT_MBYTE_IME
Bram Moolenaar0f873732019-12-05 20:28:46 +01001669 // Windows IME sends two '\n's with only one 'ENTER'. First:
1670 // wVirtualKeyCode == 13. second: wVirtualKeyCode == 0
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001671 if (ir.Event.KeyEvent.UChar == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 && ir.Event.KeyEvent.wVirtualKeyCode == 13)
1673 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001674 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 continue;
1676 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001677# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2,
1679 NULL, FALSE))
1680 return TRUE;
1681 }
1682
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001683 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684
1685 if (ir.EventType == FOCUS_EVENT)
1686 handle_focus_event(ir);
1687 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
Bram Moolenaarc33ecb22018-02-11 16:40:45 +01001688 {
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001689 COORD dwSize = ir.Event.WindowBufferSizeEvent.dwSize;
1690
Bram Moolenaar36698e32019-12-11 22:57:40 +01001691 // Only call shell_resized() when the size actually changed to
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001692 // avoid the screen is cleared.
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001693 if (dwSize.X != Columns || dwSize.Y != Rows)
1694 {
1695 CONSOLE_SCREEN_BUFFER_INFO csbi;
1696 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
Bram Moolenaar36698e32019-12-11 22:57:40 +01001697 dwSize.X = csbi.srWindow.Right - csbi.srWindow.Left + 1;
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001698 dwSize.Y = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
Bram Moolenaar36698e32019-12-11 22:57:40 +01001699 if (dwSize.X != Columns || dwSize.Y != Rows)
1700 {
1701 ResizeConBuf(g_hConOut, dwSize);
1702 shell_resized();
1703 }
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001704 }
Bram Moolenaarc33ecb22018-02-11 16:40:45 +01001705 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 else if (ir.EventType == MOUSE_EVENT
1707 && decode_mouse_event(&ir.Event.MouseEvent))
1708 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 }
1710 else if (msec == 0)
1711 break;
1712 }
1713
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001714# ifdef FEAT_CLIENTSERVER
Bram Moolenaar0f873732019-12-05 20:28:46 +01001715 // Something might have been received while we were waiting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 if (input_available())
1717 return TRUE;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001718# endif
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001719
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 return FALSE;
1721}
1722
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723/*
1724 * return non-zero if a character is available
1725 */
1726 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001727mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001729# ifdef VIMDLL
1730 if (gui.in_use)
1731 return TRUE;
1732# endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001733 return WaitForChar(0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001735
1736# if defined(FEAT_TERMINAL) || defined(PROTO)
1737/*
1738 * Check for any pending input or messages.
1739 */
1740 int
1741mch_check_messages(void)
1742{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001743# ifdef VIMDLL
1744 if (gui.in_use)
1745 return TRUE;
1746# endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001747 return WaitForChar(0L, TRUE);
1748}
1749# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750
1751/*
1752 * Create the console input. Used when reading stdin doesn't work.
1753 */
1754 static void
1755create_conin(void)
1756{
1757 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE,
1758 FILE_SHARE_READ|FILE_SHARE_WRITE,
1759 (LPSECURITY_ATTRIBUTES) NULL,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001760 OPEN_EXISTING, 0, (HANDLE)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 did_create_conin = TRUE;
1762}
1763
1764/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001765 * Get a keystroke or a mouse event, use a blocking wait.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001767 static WCHAR
1768tgetch(int *pmodifiers, WCHAR *pch2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769{
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001770 WCHAR ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771
1772 for (;;)
1773 {
1774 INPUT_RECORD ir;
1775 DWORD cRecords = 0;
1776
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001777# ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001778 (void)WaitForChar(-1L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 if (input_available())
1780 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 if (g_nMouseClick != -1)
1782 return 0;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001783# endif
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001784 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 {
1786 if (did_create_conin)
1787 read_error_exit();
1788 create_conin();
1789 continue;
1790 }
1791
1792 if (ir.EventType == KEY_EVENT)
1793 {
1794 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2,
1795 pmodifiers, TRUE))
1796 return ch;
1797 }
1798 else if (ir.EventType == FOCUS_EVENT)
1799 handle_focus_event(ir);
1800 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
1801 shell_resized();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 else if (ir.EventType == MOUSE_EVENT)
1803 {
1804 if (decode_mouse_event(&ir.Event.MouseEvent))
1805 return 0;
1806 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 }
1808}
Bram Moolenaar0f873732019-12-05 20:28:46 +01001809#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810
1811
1812/*
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02001813 * mch_inchar(): low-level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 * Get one or more characters from the keyboard or the mouse.
1815 * If time == 0, do not wait for characters.
1816 * If time == n, wait a short time for characters.
1817 * If time == -1, wait forever for characters.
1818 * Returns the number of characters read into buf.
1819 */
1820 int
1821mch_inchar(
Bram Moolenaar1266d672017-02-01 13:43:36 +01001822 char_u *buf UNUSED,
1823 int maxlen UNUSED,
1824 long time UNUSED,
1825 int tb_change_cnt UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001827#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828
1829 int len;
1830 int c;
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001831# ifdef VIMDLL
1832// Extra space for maximum three CSIs. E.g. U+1B6DB -> 0xF0 0x9B 0x9B 0x9B.
1833# define TYPEAHEADSPACE 6
1834# else
1835# define TYPEAHEADSPACE 0
1836# endif
1837# define TYPEAHEADLEN (20 + TYPEAHEADSPACE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001838 static char_u typeahead[TYPEAHEADLEN]; // previously typed bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 static int typeaheadlen = 0;
1840
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001841# ifdef VIMDLL
1842 if (gui.in_use)
1843 return 0;
1844# endif
1845
Bram Moolenaar0f873732019-12-05 20:28:46 +01001846 // First use any typeahead that was kept because "buf" was too small.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 if (typeaheadlen > 0)
1848 goto theend;
1849
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 if (time >= 0)
1851 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001852 if (!WaitForChar(time, FALSE)) // no character available
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001855 else // time == -1, wait forever
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001857 mch_set_winsize_now(); // Allow winsize changes from now on
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858
Bram Moolenaar3918c952005-03-15 22:34:55 +00001859 /*
1860 * If there is no character available within 2 seconds (default)
1861 * write the autoscript file to disk. Or cause the CursorHold event
1862 * to be triggered.
1863 */
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001864 if (!WaitForChar(p_ut, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 {
Bram Moolenaard35f9712005-12-18 22:02:33 +00001866 if (trigger_cursorhold() && maxlen >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 {
Bram Moolenaar3918c952005-03-15 22:34:55 +00001868 buf[0] = K_SPECIAL;
1869 buf[1] = KS_EXTRA;
1870 buf[2] = (int)KE_CURSORHOLD;
1871 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 }
Bram Moolenaar702517d2005-06-27 22:34:07 +00001873 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 }
1875 }
1876
1877 /*
1878 * Try to read as many characters as there are, until the buffer is full.
1879 */
1880
Bram Moolenaar0f873732019-12-05 20:28:46 +01001881 // we will get at least one key. Get more if they are available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 g_fCBrkPressed = FALSE;
1883
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001884# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 if (fdDump)
1886 fputc('[', fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001887# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888
Bram Moolenaar0f873732019-12-05 20:28:46 +01001889 // Keep looping until there is something in the typeahead buffer and more
1890 // to get and still room in the buffer (up to two bytes for a char and
1891 // three bytes for a modifier).
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001892 while ((typeaheadlen == 0 || WaitForChar(0L, FALSE))
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001893 && typeaheadlen + 5 + TYPEAHEADSPACE <= TYPEAHEADLEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 {
1895 if (typebuf_changed(tb_change_cnt))
1896 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001897 // "buf" may be invalid now if a client put something in the
1898 // typeahead buffer and "buf" is in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 typeaheadlen = 0;
1900 break;
1901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 if (g_nMouseClick != -1)
1903 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001904# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 if (fdDump)
1906 fprintf(fdDump, "{%02x @ %d, %d}",
1907 g_nMouseClick, g_xMouse, g_yMouse);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001908# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 typeahead[typeaheadlen++] = ESC + 128;
1910 typeahead[typeaheadlen++] = 'M';
1911 typeahead[typeaheadlen++] = g_nMouseClick;
1912 typeahead[typeaheadlen++] = g_xMouse + '!';
1913 typeahead[typeaheadlen++] = g_yMouse + '!';
1914 g_nMouseClick = -1;
1915 }
1916 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001918 WCHAR ch2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 int modifiers = 0;
1920
1921 c = tgetch(&modifiers, &ch2);
1922
1923 if (typebuf_changed(tb_change_cnt))
1924 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001925 // "buf" may be invalid now if a client put something in the
1926 // typeahead buffer and "buf" is in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 typeaheadlen = 0;
1928 break;
1929 }
1930
1931 if (c == Ctrl_C && ctrl_c_interrupts)
1932 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001933# if defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 trash_input_buf();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001935# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 got_int = TRUE;
1937 }
1938
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 if (g_nMouseClick == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 {
1941 int n = 1;
1942
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001943 if (ch2 == NUL)
1944 {
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001945 int i, j;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001946 char_u *p;
1947 WCHAR ch[2];
1948
1949 ch[0] = c;
Bram Moolenaar0f873732019-12-05 20:28:46 +01001950 if (c >= 0xD800 && c <= 0xDBFF) // High surrogate
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001951 {
1952 ch[1] = tgetch(&modifiers, &ch2);
1953 n++;
1954 }
1955 p = utf16_to_enc(ch, &n);
1956 if (p != NULL)
1957 {
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001958 for (i = 0, j = 0; i < n; i++)
1959 {
1960 typeahead[typeaheadlen + j++] = p[i];
1961# ifdef VIMDLL
1962 if (p[i] == CSI)
1963 {
1964 typeahead[typeaheadlen + j++] = KS_EXTRA;
1965 typeahead[typeaheadlen + j++] = KE_CSI;
1966 }
1967# endif
1968 }
1969 n = j;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001970 vim_free(p);
1971 }
1972 }
1973 else
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001974 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001975 typeahead[typeaheadlen] = c;
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001976# ifdef VIMDLL
1977 if (c == CSI)
1978 {
1979 typeahead[typeaheadlen + 1] = KS_EXTRA;
1980 typeahead[typeaheadlen + 2] = KE_CSI;
1981 n = 3;
1982 }
1983# endif
1984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 if (ch2 != NUL)
1986 {
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +02001987 if (c == K_NUL)
Bram Moolenaarfeeb4d02017-12-05 15:14:46 +01001988 {
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +02001989 switch (ch2)
1990 {
1991 case (WCHAR)'\324': // SHIFT+Insert
1992 case (WCHAR)'\325': // CTRL+Insert
1993 case (WCHAR)'\327': // SHIFT+Delete
1994 case (WCHAR)'\330': // CTRL+Delete
1995 typeahead[typeaheadlen + n] = (char_u)ch2;
1996 n++;
1997 break;
1998
1999 default:
2000 typeahead[typeaheadlen + n] = 3;
2001 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
2002 n += 2;
2003 break;
2004 }
Bram Moolenaarfeeb4d02017-12-05 15:14:46 +01002005 }
2006 else
2007 {
2008 typeahead[typeaheadlen + n] = 3;
2009 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
2010 n += 2;
2011 }
Bram Moolenaar45500912014-07-09 20:51:07 +02002012 }
2013
Bram Moolenaar0f873732019-12-05 20:28:46 +01002014 // Use the ALT key to set the 8th bit of the character
2015 // when it's one byte, the 8th bit isn't set yet and not
2016 // using a double-byte encoding (would become a lead
2017 // byte).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 if ((modifiers & MOD_MASK_ALT)
2019 && n == 1
2020 && (typeahead[typeaheadlen] & 0x80) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 )
2023 {
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00002024 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
2025 typeahead + typeaheadlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 modifiers &= ~MOD_MASK_ALT;
2027 }
2028
2029 if (modifiers != 0)
2030 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002031 // Prepend modifiers to the character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 mch_memmove(typeahead + typeaheadlen + 3,
2033 typeahead + typeaheadlen, n);
2034 typeahead[typeaheadlen++] = K_SPECIAL;
2035 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
2036 typeahead[typeaheadlen++] = modifiers;
2037 }
2038
2039 typeaheadlen += n;
2040
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002041# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 if (fdDump)
2043 fputc(c, fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002044# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 }
2046 }
2047 }
2048
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002049# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 if (fdDump)
2051 {
2052 fputs("]\n", fdDump);
2053 fflush(fdDump);
2054 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002055# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057theend:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002058 // Move typeahead to "buf", as much as fits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 len = 0;
2060 while (len < maxlen && typeaheadlen > 0)
2061 {
2062 buf[len++] = typeahead[0];
2063 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
2064 }
Bram Moolenaar7ca86fe2020-09-03 19:25:11 +02002065# ifdef FEAT_JOB_CHANNEL
2066 if (len > 0)
2067 {
2068 buf[len] = NUL;
2069 ch_log(NULL, "raw key input: \"%s\"", buf);
2070 }
2071# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 return len;
2073
Bram Moolenaar0f873732019-12-05 20:28:46 +01002074#else // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 return 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002076#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077}
2078
Bram Moolenaar82881492012-11-20 16:53:39 +01002079#ifndef PROTO
2080# ifndef __MINGW32__
Bram Moolenaar0f873732019-12-05 20:28:46 +01002081# include <shellapi.h> // required for FindExecutable()
Bram Moolenaar82881492012-11-20 16:53:39 +01002082# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083#endif
2084
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002085/*
Bram Moolenaar95da1362020-05-30 18:37:55 +02002086 * Return TRUE if "name" is an executable file, FALSE if not or it doesn't exist.
Bram Moolenaar43663192017-03-05 14:29:12 +01002087 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2088 * the allocated memory.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002089 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002090 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 static int
Bram Moolenaar95da1362020-05-30 18:37:55 +02002092executable_file(char *name, char_u **path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093{
Bram Moolenaar95da1362020-05-30 18:37:55 +02002094 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name))
Bram Moolenaar43663192017-03-05 14:29:12 +01002095 {
Bram Moolenaar95da1362020-05-30 18:37:55 +02002096 if (path != NULL)
2097 *path = FullName_save((char_u *)name, FALSE);
2098 return TRUE;
2099 }
2100 return FALSE;
2101}
2102
2103/*
2104 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
2105 * If "use_path" is FALSE: Return TRUE if "name" exists.
2106 * If "use_pathext" is TRUE search "name" with extensions in $PATHEXT.
2107 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2108 * the allocated memory.
2109 */
2110 static int
2111executable_exists(char *name, char_u **path, int use_path, int use_pathext)
2112{
2113 // WinNT and later can use _MAX_PATH wide characters for a pathname, which
2114 // means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
2115 // UTF-8.
2116 char_u buf[_MAX_PATH * 3];
2117 size_t len = STRLEN(name);
2118 size_t tmplen;
2119 char_u *p, *e, *e2;
2120 char_u *pathbuf = NULL;
2121 char_u *pathext = NULL;
2122 char_u *pathextbuf = NULL;
2123 int noext = FALSE;
2124 int retval = FALSE;
2125
2126 if (len >= sizeof(buf)) // safety check
Bram Moolenaar43663192017-03-05 14:29:12 +01002127 return FALSE;
Bram Moolenaar95da1362020-05-30 18:37:55 +02002128
2129 // Using the name directly when a Unix-shell like 'shell'.
2130 if (strstr((char *)gettail(p_sh), "sh") != NULL)
2131 noext = TRUE;
2132
2133 if (use_pathext)
2134 {
2135 pathext = mch_getenv("PATHEXT");
2136 if (pathext == NULL)
2137 pathext = (char_u *)".com;.exe;.bat;.cmd";
2138
2139 if (noext == FALSE)
2140 {
2141 /*
2142 * Loop over all extensions in $PATHEXT.
2143 * Check "name" ends with extension.
2144 */
2145 p = pathext;
2146 while (*p)
2147 {
2148 if (p[0] == ';'
2149 || (p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2150 {
2151 // Skip empty or single ".".
2152 ++p;
2153 continue;
2154 }
2155 e = vim_strchr(p, ';');
2156 if (e == NULL)
2157 e = p + STRLEN(p);
2158 tmplen = e - p;
2159
2160 if (_strnicoll(name + len - tmplen, (char *)p, tmplen) == 0)
2161 {
2162 noext = TRUE;
2163 break;
2164 }
2165
2166 p = e;
2167 }
2168 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002169 }
2170
Bram Moolenaar95da1362020-05-30 18:37:55 +02002171 // Prepend single "." to pathext, it's means no extension added.
2172 if (pathext == NULL)
2173 pathext = (char_u *)".";
2174 else if (noext == TRUE)
2175 {
2176 if (pathextbuf == NULL)
2177 pathextbuf = alloc(STRLEN(pathext) + 3);
2178 if (pathextbuf == NULL)
2179 {
2180 retval = FALSE;
2181 goto theend;
2182 }
2183 STRCPY(pathextbuf, ".;");
2184 STRCAT(pathextbuf, pathext);
2185 pathext = pathextbuf;
2186 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02002187
Bram Moolenaar95da1362020-05-30 18:37:55 +02002188 // Use $PATH when "use_path" is TRUE and "name" is basename.
2189 if (use_path && gettail((char_u *)name) == (char_u *)name)
2190 {
2191 p = mch_getenv("PATH");
2192 if (p != NULL)
2193 {
2194 pathbuf = alloc(STRLEN(p) + 3);
2195 if (pathbuf == NULL)
2196 {
2197 retval = FALSE;
2198 goto theend;
2199 }
2200 STRCPY(pathbuf, ".;");
2201 STRCAT(pathbuf, p);
2202 }
2203 }
2204
2205 /*
2206 * Walk through all entries in $PATH to check if "name" exists there and
2207 * is an executable file.
2208 */
2209 p = (pathbuf != NULL) ? pathbuf : (char_u *)".";
2210 while (*p)
2211 {
2212 if (*p == ';') // Skip empty entry
2213 {
2214 ++p;
2215 continue;
2216 }
2217 e = vim_strchr(p, ';');
2218 if (e == NULL)
2219 e = p + STRLEN(p);
2220
2221 if (e - p + len + 2 > sizeof(buf))
2222 {
2223 retval = FALSE;
2224 goto theend;
2225 }
2226 // A single "." that means current dir.
2227 if (e - p == 1 && *p == '.')
2228 STRCPY(buf, name);
2229 else
2230 {
2231 vim_strncpy(buf, p, e - p);
2232 add_pathsep(buf);
2233 STRCAT(buf, name);
2234 }
2235 tmplen = STRLEN(buf);
2236
2237 /*
2238 * Loop over all extensions in $PATHEXT.
2239 * Check "name" with extension added.
2240 */
2241 p = pathext;
2242 while (*p)
2243 {
2244 if (*p == ';')
2245 {
2246 // Skip empty entry
2247 ++p;
2248 continue;
2249 }
2250 e2 = vim_strchr(p, (int)';');
2251 if (e2 == NULL)
2252 e2 = p + STRLEN(p);
2253
2254 if (!(p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2255 {
2256 // Not a single "." that means no extension is added.
2257 if (e2 - p + tmplen + 1 > sizeof(buf))
2258 {
2259 retval = FALSE;
2260 goto theend;
2261 }
2262 vim_strncpy(buf + tmplen, p, e2 - p);
2263 }
2264 if (executable_file((char *)buf, path))
2265 {
2266 retval = TRUE;
2267 goto theend;
2268 }
2269
2270 p = e2;
2271 }
2272
2273 p = e;
2274 }
2275
2276theend:
2277 free(pathextbuf);
2278 free(pathbuf);
2279 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280}
2281
Bram Moolenaar1eed5322019-02-26 17:03:54 +01002282#if (defined(__MINGW32__) && __MSVCRT_VERSION__ >= 0x800) || \
2283 (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002284/*
2285 * Bad parameter handler.
2286 *
2287 * Certain MS CRT functions will intentionally crash when passed invalid
2288 * parameters to highlight possible security holes. Setting this function as
2289 * the bad parameter handler will prevent the crash.
2290 *
2291 * In debug builds the parameters contain CRT information that might help track
2292 * down the source of a problem, but in non-debug builds the arguments are all
2293 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
2294 * worth allowing these to make debugging of issues easier.
2295 */
2296 static void
2297bad_param_handler(const wchar_t *expression,
2298 const wchar_t *function,
2299 const wchar_t *file,
2300 unsigned int line,
2301 uintptr_t pReserved)
2302{
2303}
2304
2305# define SET_INVALID_PARAM_HANDLER \
2306 ((void)_set_invalid_parameter_handler(bad_param_handler))
2307#else
2308# define SET_INVALID_PARAM_HANDLER
2309#endif
2310
Bram Moolenaar4f974752019-02-17 17:44:42 +01002311#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312
2313/*
2314 * GUI version of mch_init().
2315 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002316 static void
2317mch_init_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002319# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002321# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322
Bram Moolenaar0f873732019-12-05 20:28:46 +01002323 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002324 SET_INVALID_PARAM_HANDLER;
2325
Bram Moolenaar0f873732019-12-05 20:28:46 +01002326 // Let critical errors result in a failure, not in a dialog box. Required
2327 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 SetErrorMode(SEM_FAILCRITICALERRORS);
2329
Bram Moolenaar0f873732019-12-05 20:28:46 +01002330 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331
Bram Moolenaar0f873732019-12-05 20:28:46 +01002332 // Specify window size. Is there a place to get the default from?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002333 Rows = 25;
2334 Columns = 80;
2335
Bram Moolenaar0f873732019-12-05 20:28:46 +01002336 // Look for 'vimrun'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 {
2338 char_u vimrun_location[_MAX_PATH + 4];
2339
Bram Moolenaar0f873732019-12-05 20:28:46 +01002340 // First try in same directory as gvim.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 STRCPY(vimrun_location, exe_name);
2342 STRCPY(gettail(vimrun_location), "vimrun.exe");
2343 if (mch_getperm(vimrun_location) >= 0)
2344 {
2345 if (*skiptowhite(vimrun_location) != NUL)
2346 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002347 // Enclose path with white space in double quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 mch_memmove(vimrun_location + 1, vimrun_location,
2349 STRLEN(vimrun_location) + 1);
2350 *vimrun_location = '"';
2351 STRCPY(gettail(vimrun_location), "vimrun\" ");
2352 }
2353 else
2354 STRCPY(gettail(vimrun_location), "vimrun ");
2355
2356 vimrun_path = (char *)vim_strsave(vimrun_location);
2357 s_dont_use_vimrun = FALSE;
2358 }
Bram Moolenaar95da1362020-05-30 18:37:55 +02002359 else if (executable_exists("vimrun.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 s_dont_use_vimrun = FALSE;
2361
Bram Moolenaar0f873732019-12-05 20:28:46 +01002362 // Don't give the warning for a missing vimrun.exe right now, but only
2363 // when vimrun was supposed to be used. Don't bother people that do
2364 // not need vimrun.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 if (s_dont_use_vimrun)
2366 need_vimrun_warning = TRUE;
2367 }
2368
2369 /*
2370 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2371 * Otherwise the default "findstr /n" is used.
2372 */
Bram Moolenaar95da1362020-05-30 18:37:55 +02002373 if (!executable_exists("findstr.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2375
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002376# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002377 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002378# endif
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01002379
2380 vtp_flag_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381}
2382
2383
Bram Moolenaar0f873732019-12-05 20:28:46 +01002384#endif // FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002385
2386#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002388# define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2389# define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390
2391/*
2392 * ClearConsoleBuffer()
2393 * Description:
2394 * Clears the entire contents of the console screen buffer, using the
2395 * specified attribute.
2396 * Returns:
2397 * TRUE on success
2398 */
2399 static BOOL
2400ClearConsoleBuffer(WORD wAttribute)
2401{
2402 CONSOLE_SCREEN_BUFFER_INFO csbi;
2403 COORD coord;
2404 DWORD NumCells, dummy;
2405
2406 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2407 return FALSE;
2408
2409 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2410 coord.X = 0;
2411 coord.Y = 0;
2412 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2413 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2416 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418
2419 return TRUE;
2420}
2421
2422/*
2423 * FitConsoleWindow()
2424 * Description:
2425 * Checks if the console window will fit within given buffer dimensions.
2426 * Also, if requested, will shrink the window to fit.
2427 * Returns:
2428 * TRUE on success
2429 */
2430 static BOOL
2431FitConsoleWindow(
2432 COORD dwBufferSize,
2433 BOOL WantAdjust)
2434{
2435 CONSOLE_SCREEN_BUFFER_INFO csbi;
2436 COORD dwWindowSize;
2437 BOOL NeedAdjust = FALSE;
2438
2439 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2440 {
2441 /*
2442 * A buffer resize will fail if the current console window does
2443 * not lie completely within that buffer. To avoid this, we might
2444 * have to move and possibly shrink the window.
2445 */
2446 if (csbi.srWindow.Right >= dwBufferSize.X)
2447 {
2448 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2449 if (dwWindowSize.X > dwBufferSize.X)
2450 dwWindowSize.X = dwBufferSize.X;
2451 csbi.srWindow.Right = dwBufferSize.X - 1;
2452 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2453 NeedAdjust = TRUE;
2454 }
2455 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2456 {
2457 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2458 if (dwWindowSize.Y > dwBufferSize.Y)
2459 dwWindowSize.Y = dwBufferSize.Y;
2460 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2461 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2462 NeedAdjust = TRUE;
2463 }
2464 if (NeedAdjust && WantAdjust)
2465 {
2466 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2467 return FALSE;
2468 }
2469 return TRUE;
2470 }
2471
2472 return FALSE;
2473}
2474
2475typedef struct ConsoleBufferStruct
2476{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002477 BOOL IsValid;
2478 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002479 PCHAR_INFO Buffer;
2480 COORD BufferSize;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002481 PSMALL_RECT Regions;
2482 int NumRegions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483} ConsoleBuffer;
2484
2485/*
2486 * SaveConsoleBuffer()
2487 * Description:
2488 * Saves important information about the console buffer, including the
2489 * actual buffer contents. The saved information is suitable for later
2490 * restoration by RestoreConsoleBuffer().
2491 * Returns:
2492 * TRUE if all information was saved; FALSE otherwise
2493 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2494 */
2495 static BOOL
2496SaveConsoleBuffer(
2497 ConsoleBuffer *cb)
2498{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002499 DWORD NumCells;
2500 COORD BufferCoord;
2501 SMALL_RECT ReadRegion;
2502 WORD Y, Y_incr;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002503 int i, numregions;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002504
Bram Moolenaar071d4272004-06-13 20:20:40 +00002505 if (cb == NULL)
2506 return FALSE;
2507
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002508 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 {
2510 cb->IsValid = FALSE;
2511 return FALSE;
2512 }
2513 cb->IsValid = TRUE;
2514
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002515 /*
2516 * Allocate a buffer large enough to hold the entire console screen
2517 * buffer. If this ConsoleBuffer structure has already been initialized
2518 * with a buffer of the correct size, then just use that one.
2519 */
2520 if (!cb->IsValid || cb->Buffer == NULL ||
2521 cb->BufferSize.X != cb->Info.dwSize.X ||
2522 cb->BufferSize.Y != cb->Info.dwSize.Y)
2523 {
2524 cb->BufferSize.X = cb->Info.dwSize.X;
2525 cb->BufferSize.Y = cb->Info.dwSize.Y;
2526 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2527 vim_free(cb->Buffer);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002528 cb->Buffer = ALLOC_MULT(CHAR_INFO, NumCells);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002529 if (cb->Buffer == NULL)
2530 return FALSE;
2531 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532
2533 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002534 * We will now copy the console screen buffer into our buffer.
2535 * ReadConsoleOutput() seems to be limited as far as how much you
2536 * can read at a time. Empirically, this number seems to be about
2537 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2538 * in chunks until it is all copied. The chunks will all have the
2539 * same horizontal characteristics, so initialize them now. The
2540 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002542 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002543 ReadRegion.Left = 0;
2544 ReadRegion.Right = cb->Info.dwSize.X - 1;
2545 Y_incr = 12000 / cb->Info.dwSize.X;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002546
2547 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr;
2548 if (cb->Regions == NULL || numregions != cb->NumRegions)
2549 {
2550 cb->NumRegions = numregions;
2551 vim_free(cb->Regions);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002552 cb->Regions = ALLOC_MULT(SMALL_RECT, cb->NumRegions);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002553 if (cb->Regions == NULL)
2554 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002555 VIM_CLEAR(cb->Buffer);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002556 return FALSE;
2557 }
2558 }
2559
2560 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002562 /*
2563 * Read into position (0, Y) in our buffer.
2564 */
2565 BufferCoord.Y = Y;
2566 /*
2567 * Read the region whose top left corner is (0, Y) and whose bottom
2568 * right corner is (width - 1, Y + Y_incr - 1). This should define
2569 * a region of size width by Y_incr. Don't worry if this region is
2570 * too large for the remaining buffer; it will be cropped.
2571 */
2572 ReadRegion.Top = Y;
2573 ReadRegion.Bottom = Y + Y_incr - 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002574 if (!ReadConsoleOutputW(g_hConOut, // output handle
2575 cb->Buffer, // our buffer
2576 cb->BufferSize, // dimensions of our buffer
2577 BufferCoord, // offset in our buffer
2578 &ReadRegion)) // region to save
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002579 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002580 VIM_CLEAR(cb->Buffer);
2581 VIM_CLEAR(cb->Regions);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002582 return FALSE;
2583 }
Bram Moolenaar444fda22017-08-11 20:37:00 +02002584 cb->Regions[i] = ReadRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 }
2586
2587 return TRUE;
2588}
2589
2590/*
2591 * RestoreConsoleBuffer()
2592 * Description:
2593 * Restores important information about the console buffer, including the
2594 * actual buffer contents, if desired. The information to restore is in
2595 * the same format used by SaveConsoleBuffer().
2596 * Returns:
2597 * TRUE on success
2598 */
2599 static BOOL
2600RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002601 ConsoleBuffer *cb,
2602 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002604 COORD BufferCoord;
2605 SMALL_RECT WriteRegion;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002606 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607
2608 if (cb == NULL || !cb->IsValid)
2609 return FALSE;
2610
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002611 /*
2612 * Before restoring the buffer contents, clear the current buffer, and
2613 * restore the cursor position and window information. Doing this now
2614 * prevents old buffer contents from "flashing" onto the screen.
2615 */
2616 if (RestoreScreen)
2617 ClearConsoleBuffer(cb->Info.wAttributes);
2618
2619 FitConsoleWindow(cb->Info.dwSize, TRUE);
2620 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2621 return FALSE;
2622 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2623 return FALSE;
2624
2625 if (!RestoreScreen)
2626 {
2627 /*
2628 * No need to restore the screen buffer contents, so we're done.
2629 */
2630 return TRUE;
2631 }
2632
2633 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2634 return FALSE;
2635 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2636 return FALSE;
2637
2638 /*
2639 * Restore the screen buffer contents.
2640 */
2641 if (cb->Buffer != NULL)
2642 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002643 for (i = 0; i < cb->NumRegions; i++)
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002644 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002645 BufferCoord.X = cb->Regions[i].Left;
2646 BufferCoord.Y = cb->Regions[i].Top;
2647 WriteRegion = cb->Regions[i];
Bram Moolenaar0f873732019-12-05 20:28:46 +01002648 if (!WriteConsoleOutputW(g_hConOut, // output handle
2649 cb->Buffer, // our buffer
2650 cb->BufferSize, // dimensions of our buffer
2651 BufferCoord, // offset in our buffer
2652 &WriteRegion)) // region to restore
Bram Moolenaar444fda22017-08-11 20:37:00 +02002653 return FALSE;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002654 }
2655 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656
2657 return TRUE;
2658}
2659
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002660# define FEAT_RESTORE_ORIG_SCREEN
2661# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002662static ConsoleBuffer g_cbOrig = { 0 };
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002663# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664static ConsoleBuffer g_cbNonTermcap = { 0 };
2665static ConsoleBuffer g_cbTermcap = { 0 };
2666
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002667# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668char g_szOrigTitle[256] = { 0 };
Bram Moolenaar0f873732019-12-05 20:28:46 +01002669HWND g_hWnd = NULL; // also used in os_mswin.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670static HICON g_hOrigIconSmall = NULL;
2671static HICON g_hOrigIcon = NULL;
2672static HICON g_hVimIcon = NULL;
2673static BOOL g_fCanChangeIcon = FALSE;
2674
Bram Moolenaar0f873732019-12-05 20:28:46 +01002675// ICON* are not defined in VC++ 4.0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002676# ifndef ICON_SMALL
2677# define ICON_SMALL 0
2678# endif
2679# ifndef ICON_BIG
2680# define ICON_BIG 1
2681# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682/*
2683 * GetConsoleIcon()
2684 * Description:
2685 * Attempts to retrieve the small icon and/or the big icon currently in
2686 * use by a given window.
2687 * Returns:
2688 * TRUE on success
2689 */
2690 static BOOL
2691GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002692 HWND hWnd,
2693 HICON *phIconSmall,
2694 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002695{
2696 if (hWnd == NULL)
2697 return FALSE;
2698
2699 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002700 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2701 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002703 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2704 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 return TRUE;
2706}
2707
2708/*
2709 * SetConsoleIcon()
2710 * Description:
2711 * Attempts to change the small icon and/or the big icon currently in
2712 * use by a given window.
2713 * Returns:
2714 * TRUE on success
2715 */
2716 static BOOL
2717SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002718 HWND hWnd,
2719 HICON hIconSmall,
2720 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 if (hWnd == NULL)
2723 return FALSE;
2724
2725 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002726 SendMessage(hWnd, WM_SETICON,
2727 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002729 SendMessage(hWnd, WM_SETICON,
2730 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731 return TRUE;
2732}
2733
2734/*
2735 * SaveConsoleTitleAndIcon()
2736 * Description:
2737 * Saves the current console window title in g_szOrigTitle, for later
2738 * restoration. Also, attempts to obtain a handle to the console window,
2739 * and use it to save the small and big icons currently in use by the
2740 * console window. This is not always possible on some versions of Windows;
2741 * nor is it possible when running Vim remotely using Telnet (since the
2742 * console window the user sees is owned by a remote process).
2743 */
2744 static void
2745SaveConsoleTitleAndIcon(void)
2746{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002747 // Save the original title.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2749 return;
2750
2751 /*
2752 * Obtain a handle to the console window using GetConsoleWindow() from
2753 * KERNEL32.DLL; we need to handle in order to change the window icon.
2754 * This function only exists on NT-based Windows, starting with Windows
2755 * 2000. On older operating systems, we can't change the window icon
2756 * anyway.
2757 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002758 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 if (g_hWnd == NULL)
2760 return;
2761
Bram Moolenaar0f873732019-12-05 20:28:46 +01002762 // Save the original console window icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2764 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2765 return;
2766
Bram Moolenaar0f873732019-12-05 20:28:46 +01002767 // Extract the first icon contained in the Vim executable.
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002768 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002769 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 if (g_hVimIcon != NULL)
2771 g_fCanChangeIcon = TRUE;
2772}
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002773# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774
2775static int g_fWindInitCalled = FALSE;
2776static int g_fTermcapMode = FALSE;
2777static CONSOLE_CURSOR_INFO g_cci;
2778static DWORD g_cmodein = 0;
2779static DWORD g_cmodeout = 0;
2780
2781/*
2782 * non-GUI version of mch_init().
2783 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002784 static void
2785mch_init_c(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002787# ifndef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002788 CONSOLE_SCREEN_BUFFER_INFO csbi;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002789# endif
2790# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002792# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793
Bram Moolenaar0f873732019-12-05 20:28:46 +01002794 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002795 SET_INVALID_PARAM_HANDLER;
2796
Bram Moolenaar0f873732019-12-05 20:28:46 +01002797 // Let critical errors result in a failure, not in a dialog box. Required
2798 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 SetErrorMode(SEM_FAILCRITICALERRORS);
2800
Bram Moolenaar0f873732019-12-05 20:28:46 +01002801 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 out_flush();
2803
Bram Moolenaar0f873732019-12-05 20:28:46 +01002804 // Obtain handles for the standard Console I/O devices
Bram Moolenaar071d4272004-06-13 20:20:40 +00002805 if (read_cmd_fd == 0)
2806 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2807 else
2808 create_conin();
2809 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2810
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002811# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar0f873732019-12-05 20:28:46 +01002812 // Save the initial console buffer for later restoration
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002813 SaveConsoleBuffer(&g_cbOrig);
2814 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002815# else
Bram Moolenaar0f873732019-12-05 20:28:46 +01002816 // Get current text attributes
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002817 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2818 g_attrCurrent = g_attrDefault = csbi.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002819# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 if (cterm_normal_fg_color == 0)
2821 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2822 if (cterm_normal_bg_color == 0)
2823 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2824
Bram Moolenaarbdace832019-03-02 10:13:42 +01002825 // Fg and Bg color index number at startup
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02002826 g_color_index_fg = g_attrDefault & 0xf;
2827 g_color_index_bg = (g_attrDefault >> 4) & 0xf;
2828
Bram Moolenaar0f873732019-12-05 20:28:46 +01002829 // set termcap codes to current text attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 update_tcap(g_attrCurrent);
2831
2832 GetConsoleCursorInfo(g_hConOut, &g_cci);
2833 GetConsoleMode(g_hConIn, &g_cmodein);
2834 GetConsoleMode(g_hConOut, &g_cmodeout);
2835
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002836# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 SaveConsoleTitleAndIcon();
2838 /*
2839 * Set both the small and big icons of the console window to Vim's icon.
2840 * Note that Vim presently only has one size of icon (32x32), but it
2841 * automatically gets scaled down to 16x16 when setting the small icon.
2842 */
2843 if (g_fCanChangeIcon)
2844 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002845# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002846
2847 ui_get_shellsize();
2848
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002849# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 fdDump = fopen("dump", "wt");
2851
2852 if (fdDump)
2853 {
2854 time_t t;
2855
2856 time(&t);
2857 fputs(ctime(&t), fdDump);
2858 fflush(fdDump);
2859 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002860# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861
2862 g_fWindInitCalled = TRUE;
2863
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002866# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002867 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002868# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002869
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02002870 vtp_flag_init();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002871 vtp_init();
Bram Moolenaar06b7b582020-05-30 17:49:25 +02002872 wt_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873}
2874
2875/*
2876 * non-GUI version of mch_exit().
2877 * Shut down and exit with status `r'
2878 * Careful: mch_exit() may be called before mch_init()!
2879 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002880 static void
2881mch_exit_c(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002883 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002885 vtp_exit();
2886
Bram Moolenaar955f1982017-02-05 15:10:51 +01002887 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 if (g_fWindInitCalled)
2889 settmode(TMODE_COOK);
2890
Bram Moolenaar0f873732019-12-05 20:28:46 +01002891 ml_close_all(TRUE); // remove all memfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892
2893 if (g_fWindInitCalled)
2894 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002895# ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02002896 mch_restore_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897 /*
2898 * Restore both the small and big icons of the console window to
2899 * what they were at startup. Don't do this when the window is
2900 * closed, Vim would hang here.
2901 */
2902 if (g_fCanChangeIcon && !g_fForceExit)
2903 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002904# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002906# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 if (fdDump)
2908 {
2909 time_t t;
2910
2911 time(&t);
2912 fputs(ctime(&t), fdDump);
2913 fclose(fdDump);
2914 }
2915 fdDump = NULL;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002916# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 }
2918
2919 SetConsoleCursorInfo(g_hConOut, &g_cci);
2920 SetConsoleMode(g_hConIn, g_cmodein);
2921 SetConsoleMode(g_hConOut, g_cmodeout);
2922
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002923# ifdef DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924 dyn_libintl_end();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002925# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926
2927 exit(r);
2928}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002929#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002931 void
2932mch_init(void)
2933{
2934#ifdef VIMDLL
2935 if (gui.starting)
2936 mch_init_g();
2937 else
2938 mch_init_c();
2939#elif defined(FEAT_GUI_MSWIN)
2940 mch_init_g();
2941#else
2942 mch_init_c();
2943#endif
2944}
2945
2946 void
2947mch_exit(int r)
2948{
Bram Moolenaar173d8412020-04-19 14:02:26 +02002949#ifdef FEAT_NETBEANS_INTG
2950 netbeans_send_disconnect();
2951#endif
2952
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002953#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02002954 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002955 mch_exit_g(r);
2956 else
2957 mch_exit_c(r);
2958#elif defined(FEAT_GUI_MSWIN)
2959 mch_exit_g(r);
2960#else
2961 mch_exit_c(r);
2962#endif
2963}
2964
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965/*
2966 * Do we have an interactive window?
2967 */
2968 int
2969mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002970 int argc UNUSED,
2971 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972{
2973 get_exe_name();
2974
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002975#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002976 return OK; // GUI always has a tty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977#else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002978# ifdef VIMDLL
2979 if (gui.in_use)
2980 return OK;
2981# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 if (isatty(1))
2983 return OK;
2984 return FAIL;
2985#endif
2986}
2987
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002988/*
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01002989 * Set the case of the file name, if it already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 * When "len" is > 0, also expand short to long filenames.
2991 */
2992 void
2993fname_case(
2994 char_u *name,
2995 int len)
2996{
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01002997 int flen;
2998 WCHAR *p;
2999 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00003001 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003002 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 return;
3004
3005 slash_adjust(name);
3006
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003007 p = enc_to_utf16(name, NULL);
3008 if (p == NULL)
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003009 return;
3010
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003011 if (GetLongPathNameW(p, buf, _MAX_PATH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003013 char_u *q = utf16_to_enc(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003015 if (q != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003017 if (len > 0 || flen >= (int)STRLEN(q))
3018 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
3019 vim_free(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 }
3021 }
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003022 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023}
3024
3025
3026/*
3027 * Insert user name in s[len].
3028 */
3029 int
3030mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003031 char_u *s,
3032 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003034 WCHAR wszUserName[256 + 1]; // UNLEN is 256
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003035 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003037 if (GetUserNameW(wszUserName, &wcch))
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003038 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003039 char_u *p = utf16_to_enc(wszUserName, NULL);
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003040
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003041 if (p != NULL)
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003042 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003043 vim_strncpy(s, p, len - 1);
3044 vim_free(p);
3045 return OK;
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003046 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003047 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 s[0] = NUL;
3049 return FAIL;
3050}
3051
3052
3053/*
3054 * Insert host name in s[len].
3055 */
3056 void
3057mch_get_host_name(
3058 char_u *s,
3059 int len)
3060{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003061 WCHAR wszHostName[256 + 1];
3062 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003064 if (GetComputerNameW(wszHostName, &wcch))
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003065 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003066 char_u *p = utf16_to_enc(wszHostName, NULL);
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003067
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003068 if (p != NULL)
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003069 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003070 vim_strncpy(s, p, len - 1);
3071 vim_free(p);
3072 return;
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003073 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003074 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075}
3076
3077
3078/*
3079 * return process ID
3080 */
3081 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003082mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083{
3084 return (long)GetCurrentProcessId();
3085}
3086
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003087/*
3088 * return TRUE if process "pid" is still running
3089 */
3090 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02003091mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003092{
3093 HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, 0, (DWORD)pid);
3094 DWORD status = 0;
3095 int ret = FALSE;
3096
3097 if (hProcess == NULL)
3098 return FALSE; // might not have access
3099 if (GetExitCodeProcess(hProcess, &status) )
3100 ret = status == STILL_ACTIVE;
3101 CloseHandle(hProcess);
3102 return ret;
3103}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104
3105/*
3106 * Get name of current directory into buffer 'buf' of length 'len' bytes.
3107 * Return OK for success, FAIL for failure.
3108 */
3109 int
3110mch_dirname(
3111 char_u *buf,
3112 int len)
3113{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003114 WCHAR wbuf[_MAX_PATH + 1];
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003115
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116 /*
3117 * Originally this was:
3118 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3119 * But the Win32s known bug list says that getcwd() doesn't work
3120 * so use the Win32 system call instead. <Negri>
3121 */
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003122 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003124 WCHAR wcbuf[_MAX_PATH + 1];
3125 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003127 if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003129 p = utf16_to_enc(wcbuf, NULL);
3130 if (STRLEN(p) >= (size_t)len)
Bram Moolenaarcea1f9e2018-08-19 14:38:42 +02003131 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003132 // long path name is too long, fall back to short one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003134 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 }
3136 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003137 if (p == NULL)
3138 p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003139
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003140 if (p != NULL)
3141 {
3142 vim_strncpy(buf, p, len - 1);
3143 vim_free(p);
3144 return OK;
3145 }
3146 }
3147 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148}
3149
3150/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003151 * Get file permissions for "name".
3152 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 */
3154 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003155mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003157 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003158 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003160 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003161 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162}
3163
3164
3165/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003166 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003167 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003168 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 */
3170 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003171mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003173 long n;
3174 WCHAR *p;
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003175
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003176 p = enc_to_utf16(name, NULL);
3177 if (p == NULL)
3178 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003180 n = _wchmod(p, perm);
3181 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003182 if (n == -1)
3183 return FAIL;
3184
3185 win32_set_archive(name);
3186
3187 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188}
3189
3190/*
3191 * Set hidden flag for "name".
3192 */
3193 void
3194mch_hide(char_u *name)
3195{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003196 int attrs = win32_getattrs(name);
3197 if (attrs == -1)
3198 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003200 attrs |= FILE_ATTRIBUTE_HIDDEN;
3201 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202}
3203
3204/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003205 * Return TRUE if file "name" exists and is hidden.
3206 */
3207 int
3208mch_ishidden(char_u *name)
3209{
3210 int f = win32_getattrs(name);
3211
3212 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003213 return FALSE; // file does not exist at all
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003214
3215 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3216}
3217
3218/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 * return TRUE if "name" is a directory
3220 * return FALSE if "name" is not a directory or upon error
3221 */
3222 int
3223mch_isdir(char_u *name)
3224{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003225 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226
3227 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003228 return FALSE; // file does not exist at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229
3230 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3231}
3232
3233/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003234 * return TRUE if "name" is a directory, NOT a symlink to a directory
3235 * return FALSE if "name" is not a directory
3236 * return FALSE for error
3237 */
3238 int
3239mch_isrealdir(char_u *name)
3240{
3241 return mch_isdir(name) && !mch_is_symbolic_link(name);
3242}
3243
3244/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003245 * Create directory "name".
3246 * Return 0 on success, -1 on error.
3247 */
3248 int
3249mch_mkdir(char_u *name)
3250{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003251 WCHAR *p;
3252 int retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003253
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003254 p = enc_to_utf16(name, NULL);
3255 if (p == NULL)
3256 return -1;
3257 retval = _wmkdir(p);
3258 vim_free(p);
3259 return retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003260}
3261
3262/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003263 * Delete directory "name".
3264 * Return 0 on success, -1 on error.
3265 */
3266 int
3267mch_rmdir(char_u *name)
3268{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003269 WCHAR *p;
3270 int retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003271
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003272 p = enc_to_utf16(name, NULL);
3273 if (p == NULL)
3274 return -1;
3275 retval = _wrmdir(p);
3276 vim_free(p);
3277 return retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003278}
3279
3280/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003281 * Return TRUE if file "fname" has more than one link.
3282 */
3283 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003284mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003285{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003286 BY_HANDLE_FILE_INFORMATION info;
3287
3288 return win32_fileinfo(fname, &info) == FILEINFO_OK
3289 && info.nNumberOfLinks > 1;
3290}
3291
3292/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003293 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003294 */
3295 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003296mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003297{
3298 HANDLE hFind;
3299 int res = FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003300 DWORD fileFlags = 0, reparseTag = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003301 WCHAR *wn;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003302 WIN32_FIND_DATAW findDataW;
3303
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003304 wn = enc_to_utf16(name, NULL);
3305 if (wn == NULL)
3306 return FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003307
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003308 hFind = FindFirstFileW(wn, &findDataW);
3309 vim_free(wn);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003310 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003311 {
3312 fileFlags = findDataW.dwFileAttributes;
3313 reparseTag = findDataW.dwReserved0;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003314 FindClose(hFind);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003315 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003316
3317 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003318 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3319 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003320 res = TRUE;
3321
3322 return res;
3323}
3324
3325/*
3326 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3327 * link.
3328 */
3329 int
3330mch_is_linked(char_u *fname)
3331{
3332 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3333 return TRUE;
3334 return FALSE;
3335}
3336
3337/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003338 * Get the by-handle-file-information for "fname".
3339 * Returns FILEINFO_OK when OK.
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003340 * Returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003341 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3342 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3343 */
3344 int
3345win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3346{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003347 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003348 int res = FILEINFO_READ_FAIL;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003349 WCHAR *wn;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003350
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003351 wn = enc_to_utf16(fname, NULL);
3352 if (wn == NULL)
3353 return FILEINFO_ENC_FAIL;
3354
3355 hFile = CreateFileW(wn, // file name
3356 GENERIC_READ, // access mode
3357 FILE_SHARE_READ | FILE_SHARE_WRITE, // share mode
3358 NULL, // security descriptor
3359 OPEN_EXISTING, // creation disposition
3360 FILE_FLAG_BACKUP_SEMANTICS, // file attributes
3361 NULL); // handle to template file
3362 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003363
3364 if (hFile != INVALID_HANDLE_VALUE)
3365 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003366 if (GetFileInformationByHandle(hFile, info) != 0)
3367 res = FILEINFO_OK;
3368 else
3369 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003370 CloseHandle(hFile);
3371 }
3372
Bram Moolenaar03f48552006-02-28 23:52:23 +00003373 return res;
3374}
3375
3376/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003377 * get file attributes for `name'
3378 * -1 : error
3379 * else FILE_ATTRIBUTE_* defined in winnt.h
3380 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003381 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003382win32_getattrs(char_u *name)
3383{
3384 int attr;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003385 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003386
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003387 p = enc_to_utf16(name, NULL);
3388 if (p == NULL)
3389 return INVALID_FILE_ATTRIBUTES;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003390
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003391 attr = GetFileAttributesW(p);
3392 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003393
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003394 return attr;
3395}
3396
3397/*
3398 * set file attributes for `name' to `attrs'
3399 *
3400 * return -1 for failure, 0 otherwise
3401 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003402 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003403win32_setattrs(char_u *name, int attrs)
3404{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003405 int res;
3406 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003407
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003408 p = enc_to_utf16(name, NULL);
3409 if (p == NULL)
3410 return -1;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003411
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003412 res = SetFileAttributesW(p, attrs);
3413 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003414
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003415 return res ? 0 : -1;
3416}
3417
3418/*
3419 * Set archive flag for "name".
3420 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003421 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003422win32_set_archive(char_u *name)
3423{
3424 int attrs = win32_getattrs(name);
3425 if (attrs == -1)
3426 return -1;
3427
3428 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3429 return win32_setattrs(name, attrs);
3430}
3431
3432/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 * Return TRUE if file or directory "name" is writable (not readonly).
3434 * Strange semantics of Win32: a readonly directory is writable, but you can't
3435 * delete a file. Let's say this means it is writable.
3436 */
3437 int
3438mch_writable(char_u *name)
3439{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003440 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003442 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3443 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444}
3445
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003447 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003448 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003449 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3450 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 */
3452 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003453mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454{
Bram Moolenaar95da1362020-05-30 18:37:55 +02003455 return executable_exists((char *)name, path, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457
3458/*
3459 * Check what "name" is:
3460 * NODE_NORMAL: file or directory (or doesn't exist)
3461 * NODE_WRITABLE: writable device, socket, fifo, etc.
3462 * NODE_OTHER: non-writable things
3463 */
3464 int
3465mch_nodetype(char_u *name)
3466{
3467 HANDLE hFile;
3468 int type;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003469 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470
Bram Moolenaar0f873732019-12-05 20:28:46 +01003471 // We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3472 // read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3473 // here.
Bram Moolenaar043545e2006-10-10 16:44:07 +00003474 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3475 return NODE_WRITABLE;
3476
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003477 wn = enc_to_utf16(name, NULL);
3478 if (wn == NULL)
3479 return NODE_NORMAL;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003480
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003481 hFile = CreateFileW(wn, // file name
3482 GENERIC_WRITE, // access mode
3483 0, // share mode
3484 NULL, // security descriptor
3485 OPEN_EXISTING, // creation disposition
3486 0, // file attributes
3487 NULL); // handle to template file
3488 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 if (hFile == INVALID_HANDLE_VALUE)
3490 return NODE_NORMAL;
3491
3492 type = GetFileType(hFile);
3493 CloseHandle(hFile);
3494 if (type == FILE_TYPE_CHAR)
3495 return NODE_WRITABLE;
3496 if (type == FILE_TYPE_DISK)
3497 return NODE_NORMAL;
3498 return NODE_OTHER;
3499}
3500
3501#ifdef HAVE_ACL
3502struct my_acl
3503{
3504 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3505 PSID pSidOwner;
3506 PSID pSidGroup;
3507 PACL pDacl;
3508 PACL pSacl;
3509};
3510#endif
3511
3512/*
3513 * Return a pointer to the ACL of file "fname" in allocated memory.
3514 * Return NULL if the ACL is not available for whatever reason.
3515 */
3516 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003517mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518{
3519#ifndef HAVE_ACL
3520 return (vim_acl_T)NULL;
3521#else
3522 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003523 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003525 p = ALLOC_CLEAR_ONE(struct my_acl);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003526 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003528 WCHAR *wn;
Bram Moolenaar27515922013-06-29 15:36:26 +02003529
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003530 wn = enc_to_utf16(fname, NULL);
3531 if (wn == NULL)
Bram Moolenaarbbf9f342020-11-10 22:03:40 +01003532 {
3533 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003534 return NULL;
Bram Moolenaarbbf9f342020-11-10 22:03:40 +01003535 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003536
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 *
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01007116 * NTFS can have sub streams for each file. The normal contents of a file is
7117 * stored in the main stream, and extra contents (author information, title and
7118 * so on) can be stored in a sub stream. After Windows 2000, the user can
7119 * access and store this information in sub streams via an explorer's property
7120 * menu item in the right click menu. This information in sub streams was lost
7121 * when copying only the main stream. Therefore we have to copy sub streams.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007122 *
7123 * Incomplete explanation:
7124 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
7125 * More useful info and an example:
7126 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
7127 */
7128
7129/*
7130 * Copy info stream data "substream". Read from the file with BackupRead(sh)
7131 * and write to stream "substream" of file "to".
7132 * Errors are ignored.
7133 */
7134 static void
7135copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
7136{
7137 HANDLE hTo;
7138 WCHAR *to_name;
7139
7140 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
7141 wcscpy(to_name, to);
7142 wcscat(to_name, substream);
7143
7144 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
7145 FILE_ATTRIBUTE_NORMAL, NULL);
7146 if (hTo != INVALID_HANDLE_VALUE)
7147 {
7148 long done;
7149 DWORD todo;
7150 DWORD readcnt, written;
7151 char buf[4096];
7152
Bram Moolenaar0f873732019-12-05 20:28:46 +01007153 // Copy block of bytes at a time. Abort when something goes wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 for (done = 0; done < len; done += written)
7155 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007156 // (size_t) cast for Borland C 5.5
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007157 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
7158 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
7160 FALSE, FALSE, context)
7161 || readcnt != todo
7162 || !WriteFile(hTo, buf, todo, &written, NULL)
7163 || written != todo)
7164 break;
7165 }
7166 CloseHandle(hTo);
7167 }
7168
7169 free(to_name);
7170}
7171
7172/*
7173 * Copy info streams from file "from" to file "to".
7174 */
7175 static void
7176copy_infostreams(char_u *from, char_u *to)
7177{
7178 WCHAR *fromw;
7179 WCHAR *tow;
7180 HANDLE sh;
7181 WIN32_STREAM_ID sid;
7182 int headersize;
7183 WCHAR streamname[_MAX_PATH];
7184 DWORD readcount;
7185 void *context = NULL;
7186 DWORD lo, hi;
7187 int len;
7188
Bram Moolenaar0f873732019-12-05 20:28:46 +01007189 // Convert the file names to wide characters.
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007190 fromw = enc_to_utf16(from, NULL);
7191 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007192 if (fromw != NULL && tow != NULL)
7193 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007194 // Open the file for reading.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007195 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
7196 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
7197 if (sh != INVALID_HANDLE_VALUE)
7198 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007199 // Use BackupRead() to find the info streams. Repeat until we
7200 // have done them all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201 for (;;)
7202 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007203 // Get the header to find the length of the stream name. If
7204 // the "readcount" is zero we have done all info streams.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007206 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
7208 &readcount, FALSE, FALSE, &context)
7209 || readcount == 0)
7210 break;
7211
Bram Moolenaar0f873732019-12-05 20:28:46 +01007212 // We only deal with streams that have a name. The normal
7213 // file data appears to be without a name, even though docs
7214 // suggest it is called "::$DATA".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007215 if (sid.dwStreamNameSize > 0)
7216 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007217 // Read the stream name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007218 if (!BackupRead(sh, (LPBYTE)streamname,
7219 sid.dwStreamNameSize,
7220 &readcount, FALSE, FALSE, &context))
7221 break;
7222
Bram Moolenaar0f873732019-12-05 20:28:46 +01007223 // Copy an info stream with a name ":anything:$DATA".
7224 // Skip "::$DATA", it has no stream name (examples suggest
7225 // it might be used for the normal file contents).
7226 // Note that BackupRead() counts bytes, but the name is in
7227 // wide characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007228 len = readcount / sizeof(WCHAR);
7229 streamname[len] = 0;
7230 if (len > 7 && wcsicmp(streamname + len - 6,
7231 L":$DATA") == 0)
7232 {
7233 streamname[len - 6] = 0;
7234 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007235 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007236 }
7237 }
7238
Bram Moolenaar0f873732019-12-05 20:28:46 +01007239 // Advance to the next stream. We might try seeking too far,
7240 // but BackupSeek() doesn't skip over stream borders, thus
7241 // that's OK.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007242 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007243 &lo, &hi, &context);
7244 }
7245
Bram Moolenaar0f873732019-12-05 20:28:46 +01007246 // Clear the context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
7248
7249 CloseHandle(sh);
7250 }
7251 }
7252 vim_free(fromw);
7253 vim_free(tow);
7254}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007255
7256/*
7257 * Copy file attributes from file "from" to file "to".
7258 * For Windows NT and later we copy info streams.
7259 * Always returns zero, errors are ignored.
7260 */
7261 int
7262mch_copy_file_attribute(char_u *from, char_u *to)
7263{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007264 // File streams only work on Windows NT and later.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007265 copy_infostreams(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007266 return 0;
7267}
7268
7269#if defined(MYRESETSTKOFLW) || defined(PROTO)
7270/*
7271 * Recreate a destroyed stack guard page in win32.
7272 * Written by Benjamin Peterson.
7273 */
7274
Bram Moolenaar0f873732019-12-05 20:28:46 +01007275// These magic numbers are from the MS header files
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007276# define MIN_STACK_WINNT 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00007277
7278/*
7279 * This function does the same thing as _resetstkoflw(), which is only
7280 * available in DevStudio .net and later.
7281 * Returns 0 for failure, 1 for success.
7282 */
7283 int
7284myresetstkoflw(void)
7285{
7286 BYTE *pStackPtr;
7287 BYTE *pGuardPage;
7288 BYTE *pStackBase;
7289 BYTE *pLowestPossiblePage;
7290 MEMORY_BASIC_INFORMATION mbi;
7291 SYSTEM_INFO si;
7292 DWORD nPageSize;
7293 DWORD dummy;
7294
Bram Moolenaar0f873732019-12-05 20:28:46 +01007295 // We need to know the system page size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007296 GetSystemInfo(&si);
7297 nPageSize = si.dwPageSize;
7298
Bram Moolenaar0f873732019-12-05 20:28:46 +01007299 // ...and the current stack pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +00007300 pStackPtr = (BYTE*)_alloca(1);
7301
Bram Moolenaar0f873732019-12-05 20:28:46 +01007302 // ...and the base of the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007303 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
7304 return 0;
7305 pStackBase = (BYTE*)mbi.AllocationBase;
7306
Bram Moolenaar4b96df52020-01-26 22:00:26 +01007307 // ...and the page that's min_stack_req pages away from stack base; this is
Bram Moolenaar0f873732019-12-05 20:28:46 +01007308 // the lowest page we could use.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007309 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007310
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007312 // We want the first committed page in the stack Start at the stack
7313 // base and move forward through memory until we find a committed block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 BYTE *pBlock = pStackBase;
7315
Bram Moolenaara466c992005-07-09 21:03:22 +00007316 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007317 {
7318 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
7319 return 0;
7320
7321 pBlock += mbi.RegionSize;
7322
7323 if (mbi.State & MEM_COMMIT)
7324 break;
7325 }
7326
Bram Moolenaar0f873732019-12-05 20:28:46 +01007327 // mbi now describes the first committed block in the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328 if (mbi.Protect & PAGE_GUARD)
7329 return 1;
7330
Bram Moolenaar0f873732019-12-05 20:28:46 +01007331 // decide where the guard page should start
Bram Moolenaar071d4272004-06-13 20:20:40 +00007332 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
7333 pGuardPage = pLowestPossiblePage;
7334 else
7335 pGuardPage = (BYTE*)mbi.BaseAddress;
7336
Bram Moolenaar0f873732019-12-05 20:28:46 +01007337 // allocate the guard page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007338 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
7339 return 0;
7340
Bram Moolenaar0f873732019-12-05 20:28:46 +01007341 // apply the guard attribute to the page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007342 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
7343 &dummy))
7344 return 0;
7345 }
7346
7347 return 1;
7348}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007349#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007351
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007352/*
7353 * The command line arguments in UCS2
7354 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007355static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007356static LPWSTR *ArglistW = NULL;
7357static int global_argc = 0;
7358static char **global_argv;
7359
Bram Moolenaar0f873732019-12-05 20:28:46 +01007360static int used_file_argc = 0; // last argument in global_argv[] used
7361 // for the argument list.
7362static int *used_file_indexes = NULL; // indexes in global_argv[] for
7363 // command line arguments added to
7364 // the argument list
7365static int used_file_count = 0; // nr of entries in used_file_indexes
7366static int used_file_literal = FALSE; // take file names literally
7367static int used_file_full_path = FALSE; // file name was full path
7368static int used_file_diff_mode = FALSE; // file name was with diff mode
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007369static int used_alist_count = 0;
7370
7371
7372/*
7373 * Get the command line arguments. Unicode version.
7374 * Returns argc. Zero when something fails.
7375 */
7376 int
7377get_cmd_argsW(char ***argvp)
7378{
7379 char **argv = NULL;
7380 int argc = 0;
7381 int i;
7382
Bram Moolenaar14993322014-09-09 12:25:33 +02007383 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007384 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
7385 if (ArglistW != NULL)
7386 {
7387 argv = malloc((nArgsW + 1) * sizeof(char *));
7388 if (argv != NULL)
7389 {
7390 argc = nArgsW;
7391 argv[argc] = NULL;
7392 for (i = 0; i < argc; ++i)
7393 {
7394 int len;
7395
Bram Moolenaar0f873732019-12-05 20:28:46 +01007396 // Convert each Unicode argument to the current codepage.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007397 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007398 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007399 (LPSTR *)&argv[i], &len, 0, 0);
7400 if (argv[i] == NULL)
7401 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007402 // Out of memory, clear everything.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007403 while (i > 0)
7404 free(argv[--i]);
7405 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01007406 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007407 argc = 0;
7408 }
7409 }
7410 }
7411 }
7412
7413 global_argc = argc;
7414 global_argv = argv;
7415 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02007416 {
7417 if (used_file_indexes != NULL)
7418 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007419 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02007420 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007421
7422 if (argvp != NULL)
7423 *argvp = argv;
7424 return argc;
7425}
7426
7427 void
7428free_cmd_argsW(void)
7429{
7430 if (ArglistW != NULL)
7431 {
7432 GlobalFree(ArglistW);
7433 ArglistW = NULL;
7434 }
7435}
7436
7437/*
7438 * Remember "name" is an argument that was added to the argument list.
7439 * This avoids that we have to re-parse the argument list when fix_arg_enc()
7440 * is called.
7441 */
7442 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007443used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007444{
7445 int i;
7446
7447 if (used_file_indexes == NULL)
7448 return;
7449 for (i = used_file_argc + 1; i < global_argc; ++i)
7450 if (STRCMP(global_argv[i], name) == 0)
7451 {
7452 used_file_argc = i;
7453 used_file_indexes[used_file_count++] = i;
7454 break;
7455 }
7456 used_file_literal = literal;
7457 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007458 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007459}
7460
7461/*
7462 * Remember the length of the argument list as it was. If it changes then we
7463 * leave it alone when 'encoding' is set.
7464 */
7465 void
7466set_alist_count(void)
7467{
7468 used_alist_count = GARGCOUNT;
7469}
7470
7471/*
7472 * Fix the encoding of the command line arguments. Invoked when 'encoding'
7473 * has been changed while starting up. Use the UCS-2 command line arguments
7474 * and convert them to 'encoding'.
7475 */
7476 void
7477fix_arg_enc(void)
7478{
7479 int i;
7480 int idx;
7481 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007482 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007483
Bram Moolenaar0f873732019-12-05 20:28:46 +01007484 // Safety checks:
7485 // - if argument count differs between the wide and non-wide argument
7486 // list, something must be wrong.
7487 // - the file name arguments must have been located.
7488 // - the length of the argument list wasn't changed by the user.
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007489 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007490 || ArglistW == NULL
7491 || used_file_indexes == NULL
7492 || used_file_count == 0
7493 || used_alist_count != GARGCOUNT)
7494 return;
7495
Bram Moolenaar0f873732019-12-05 20:28:46 +01007496 // Remember the buffer numbers for the arguments.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02007497 fnum_list = ALLOC_MULT(int, GARGCOUNT);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007498 if (fnum_list == NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007499 return; // out of memory
Bram Moolenaar86b68352004-12-27 21:59:20 +00007500 for (i = 0; i < GARGCOUNT; ++i)
7501 fnum_list[i] = GARGLIST[i].ae_fnum;
7502
Bram Moolenaar0f873732019-12-05 20:28:46 +01007503 // Clear the argument list. Make room for the new arguments.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007504 alist_clear(&global_alist);
7505 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007506 return; // out of memory
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007507
7508 for (i = 0; i < used_file_count; ++i)
7509 {
7510 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007511 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007512 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007513 {
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007514 int literal = used_file_literal;
7515
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007516#ifdef FEAT_DIFF
Bram Moolenaar0f873732019-12-05 20:28:46 +01007517 // When using diff mode may need to concatenate file name to
7518 // directory name. Just like it's done in main().
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007519 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
7520 && !mch_isdir(alist_name(&GARGLIST[0])))
7521 {
7522 char_u *r;
7523
7524 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
7525 if (r != NULL)
7526 {
7527 vim_free(str);
7528 str = r;
7529 }
7530 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007531#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007532 // Re-use the old buffer by renaming it. When not using literal
7533 // names it's done by alist_expand() below.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007534 if (used_file_literal)
7535 buf_set_name(fnum_list[i], str);
7536
Bram Moolenaar0f873732019-12-05 20:28:46 +01007537 // Check backtick literal. backtick literal is already expanded in
7538 // main.c, so this part add str as literal.
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007539 if (literal == FALSE)
7540 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02007541 size_t len = STRLEN(str);
7542
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007543 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
7544 literal = TRUE;
7545 }
7546 alist_add(&global_alist, str, literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007547 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007548 }
7549
7550 if (!used_file_literal)
7551 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007552 // Now expand wildcards in the arguments.
7553 // Temporarily add '(' and ')' to 'isfname'. These are valid
7554 // filename characters but are excluded from 'isfname' to make
7555 // "gf" work on a file name in parenthesis (e.g.: see vim.h).
7556 // Also, unset wildignore to not be influenced by this option.
7557 // The arguments specified in command-line should be kept even if
7558 // encoding options were changed.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007559 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007560 do_cmdline_cmd((char_u *)":let SaVe_WIG = &wig|set wig=");
Bram Moolenaar86b68352004-12-27 21:59:20 +00007561 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007562 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007563 do_cmdline_cmd((char_u *)":let &wig = SaVe_WIG|unlet SaVe_WIG");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007564 }
7565
Bram Moolenaar0f873732019-12-05 20:28:46 +01007566 // If wildcard expansion failed, we are editing the first file of the
7567 // arglist and there is no file name: Edit the first argument now.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007568 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7569 {
7570 do_cmdline_cmd((char_u *)":rewind");
7571 if (GARGCOUNT == 1 && used_file_full_path)
Bram Moolenaarb7407d32018-02-03 17:36:27 +01007572 (void)vim_chdirfile(alist_name(&GARGLIST[0]), "drop");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007573 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007574
7575 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007576}
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007577
7578 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02007579mch_setenv(char *var, char *value, int x UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007580{
7581 char_u *envbuf;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007582 WCHAR *p;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007583
Bram Moolenaar964b3742019-05-24 18:54:09 +02007584 envbuf = alloc(STRLEN(var) + STRLEN(value) + 2);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007585 if (envbuf == NULL)
7586 return -1;
7587
7588 sprintf((char *)envbuf, "%s=%s", var, value);
7589
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007590 p = enc_to_utf16(envbuf, NULL);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007591
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007592 vim_free(envbuf);
7593 if (p == NULL)
7594 return -1;
7595 _wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007596#ifdef libintl_wputenv
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007597 libintl_wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007598#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007599 // Unlike Un*x systems, we can free the string for _wputenv().
7600 vim_free(p);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007601
7602 return 0;
7603}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007604
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007605/*
7606 * Support for 256 colors and 24-bit colors was added in Windows 10
7607 * version 1703 (Creators update).
7608 */
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007609#define VTP_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 15063)
7610
7611/*
7612 * Support for pseudo-console (ConPTY) was added in windows 10
Bram Moolenaar57da6982019-09-13 22:30:11 +02007613 * version 1809 (October 2018 update).
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007614 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007615#define CONPTY_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 17763)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007616
7617/*
7618 * ConPTY differences between versions, need different logic.
7619 * version 1903 (May 2019 update).
7620 */
7621#define CONPTY_1903_BUILD MAKE_VER(10, 0, 18362)
7622
7623/*
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007624 * version 1909 (November 2019 update).
7625 */
7626#define CONPTY_1909_BUILD MAKE_VER(10, 0, 18363)
7627
7628/*
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007629 * Stay ahead of the next update, and when it's done, fix this.
7630 * version ? (2020 update, temporarily use the build number of insider preview)
7631 */
7632#define CONPTY_NEXT_UPDATE_BUILD MAKE_VER(10, 0, 19587)
7633
7634/*
Bram Moolenaar57da6982019-09-13 22:30:11 +02007635 * Confirm until this version. Also the logic changes.
7636 * insider preview.
7637 */
Bram Moolenaar4c063dd2019-10-04 21:29:12 +02007638#define CONPTY_INSIDER_BUILD MAKE_VER(10, 0, 18995)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007639
7640/*
7641 * Not stable now.
7642 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007643#define CONPTY_STABLE_BUILD MAKE_VER(10, 0, 32767) // T.B.D.
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007644
7645 static void
7646vtp_flag_init(void)
7647{
7648 DWORD ver = get_build_number();
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007649#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007650 DWORD mode;
7651 HANDLE out;
7652
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007653# ifdef VIMDLL
7654 if (!gui.in_use)
7655# endif
7656 {
7657 out = GetStdHandle(STD_OUTPUT_HANDLE);
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007658
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007659 vtp_working = (ver >= VTP_FIRST_SUPPORT_BUILD) ? 1 : 0;
7660 GetConsoleMode(out, &mode);
7661 mode |= (ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
7662 if (SetConsoleMode(out, mode) == 0)
7663 vtp_working = 0;
7664 }
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007665#endif
7666
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007667 if (ver >= CONPTY_FIRST_SUPPORT_BUILD)
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007668 conpty_working = 1;
7669 if (ver >= CONPTY_STABLE_BUILD)
7670 conpty_stable = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007671
Bram Moolenaar57da6982019-09-13 22:30:11 +02007672 if (ver <= CONPTY_INSIDER_BUILD)
7673 conpty_type = 3;
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007674 if (ver <= CONPTY_1909_BUILD)
7675 conpty_type = 2;
Bram Moolenaar57da6982019-09-13 22:30:11 +02007676 if (ver <= CONPTY_1903_BUILD)
7677 conpty_type = 2;
7678 if (ver < CONPTY_FIRST_SUPPORT_BUILD)
7679 conpty_type = 1;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007680
7681 if (ver >= CONPTY_NEXT_UPDATE_BUILD)
7682 conpty_fix_type = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007683}
7684
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007685#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007686
7687 static void
7688vtp_init(void)
7689{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007690 HMODULE hKerneldll;
7691 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007692# ifdef FEAT_TERMGUICOLORS
7693 COLORREF fg, bg;
7694# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007695
Bram Moolenaar0f873732019-12-05 20:28:46 +01007696 // Use functions supported from Vista
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007697 hKerneldll = GetModuleHandle("kernel32.dll");
7698 if (hKerneldll != NULL)
7699 {
7700 pGetConsoleScreenBufferInfoEx =
7701 (PfnGetConsoleScreenBufferInfoEx)GetProcAddress(
7702 hKerneldll, "GetConsoleScreenBufferInfoEx");
7703 pSetConsoleScreenBufferInfoEx =
7704 (PfnSetConsoleScreenBufferInfoEx)GetProcAddress(
7705 hKerneldll, "SetConsoleScreenBufferInfoEx");
7706 if (pGetConsoleScreenBufferInfoEx != NULL
7707 && pSetConsoleScreenBufferInfoEx != NULL)
7708 has_csbiex = TRUE;
7709 }
7710
7711 csbi.cbSize = sizeof(csbi);
7712 if (has_csbiex)
7713 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007714 save_console_bg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_bg];
7715 save_console_fg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_fg];
Bram Moolenaardf543822020-01-30 11:53:59 +01007716 store_console_bg_rgb = save_console_bg_rgb;
7717 store_console_fg_rgb = save_console_fg_rgb;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007718
7719# ifdef FEAT_TERMGUICOLORS
7720 bg = (COLORREF)csbi.ColorTable[g_color_index_bg];
7721 fg = (COLORREF)csbi.ColorTable[g_color_index_fg];
7722 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7723 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7724 default_console_color_bg = bg;
7725 default_console_color_fg = fg;
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007726# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007727
7728 set_console_color_rgb();
7729}
7730
7731 static void
7732vtp_exit(void)
7733{
Bram Moolenaardf543822020-01-30 11:53:59 +01007734 restore_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007735}
7736
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007737 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007738vtp_printf(
7739 char *format,
7740 ...)
7741{
7742 char_u buf[100];
7743 va_list list;
7744 DWORD result;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007745 int len;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007746
7747 va_start(list, format);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007748 len = vim_vsnprintf((char *)buf, 100, (char *)format, list);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007749 va_end(list);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007750 WriteConsoleA(g_hConOut, buf, (DWORD)len, &result, NULL);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007751 return (int)result;
7752}
7753
7754 static void
7755vtp_sgr_bulk(
7756 int arg)
7757{
7758 int args[1];
7759
7760 args[0] = arg;
7761 vtp_sgr_bulks(1, args);
7762}
7763
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007764#define FAST256(x) \
7765 if ((*p-- = "0123456789"[(n = x % 10)]) \
7766 && x >= 10 && (*p-- = "0123456789"[((m = x % 100) - n) / 10]) \
7767 && x >= 100 && (*p-- = "012"[((x & 0xff) - m) / 100]));
7768
7769#define FAST256CASE(x) \
7770 case x: \
7771 FAST256(newargs[x - 1]);
7772
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007773 static void
7774vtp_sgr_bulks(
7775 int argc,
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007776 int *args)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007777{
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007778#define MAXSGR 16
7779#define SGRBUFSIZE 2 + 4 * MAXSGR + 1 // '\033[' + SGR + 'm'
7780 char_u buf[SGRBUFSIZE];
7781 char_u *p;
7782 int in, out;
7783 int newargs[16];
7784 static int sgrfgr = -1, sgrfgg, sgrfgb;
7785 static int sgrbgr = -1, sgrbgg, sgrbgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007786
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007787 if (argc == 0)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007788 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007789 sgrfgr = sgrbgr = -1;
7790 vtp_printf("033[m");
7791 return;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007792 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007793
7794 in = out = 0;
7795 while (in < argc)
7796 {
7797 int s = args[in];
7798 int copylen = 1;
7799
7800 if (s == 38)
7801 {
7802 if (argc - in >= 5 && args[in + 1] == 2)
7803 {
7804 if (sgrfgr == args[in + 2] && sgrfgg == args[in + 3]
7805 && sgrfgb == args[in + 4])
7806 {
7807 in += 5;
7808 copylen = 0;
7809 }
7810 else
7811 {
7812 sgrfgr = args[in + 2];
7813 sgrfgg = args[in + 3];
7814 sgrfgb = args[in + 4];
7815 copylen = 5;
7816 }
7817 }
7818 else if (argc - in >= 3 && args[in + 1] == 5)
7819 {
7820 sgrfgr = -1;
7821 copylen = 3;
7822 }
7823 }
7824 else if (s == 48)
7825 {
7826 if (argc - in >= 5 && args[in + 1] == 2)
7827 {
7828 if (sgrbgr == args[in + 2] && sgrbgg == args[in + 3]
7829 && sgrbgb == args[in + 4])
7830 {
7831 in += 5;
7832 copylen = 0;
7833 }
7834 else
7835 {
7836 sgrbgr = args[in + 2];
7837 sgrbgg = args[in + 3];
7838 sgrbgb = args[in + 4];
7839 copylen = 5;
7840 }
7841 }
7842 else if (argc - in >= 3 && args[in + 1] == 5)
7843 {
7844 sgrbgr = -1;
7845 copylen = 3;
7846 }
7847 }
7848 else if (30 <= s && s <= 39)
7849 sgrfgr = -1;
7850 else if (90 <= s && s <= 97)
7851 sgrfgr = -1;
7852 else if (40 <= s && s <= 49)
7853 sgrbgr = -1;
7854 else if (100 <= s && s <= 107)
7855 sgrbgr = -1;
7856 else if (s == 0)
7857 sgrfgr = sgrbgr = -1;
7858
7859 while (copylen--)
7860 newargs[out++] = args[in++];
7861 }
7862
7863 p = &buf[sizeof(buf) - 1];
7864 *p-- = 'm';
7865
7866 switch (out)
7867 {
7868 int n, m;
7869 DWORD r;
7870
7871 FAST256CASE(16);
7872 *p-- = ';';
7873 FAST256CASE(15);
7874 *p-- = ';';
7875 FAST256CASE(14);
7876 *p-- = ';';
7877 FAST256CASE(13);
7878 *p-- = ';';
7879 FAST256CASE(12);
7880 *p-- = ';';
7881 FAST256CASE(11);
7882 *p-- = ';';
7883 FAST256CASE(10);
7884 *p-- = ';';
7885 FAST256CASE(9);
7886 *p-- = ';';
7887 FAST256CASE(8);
7888 *p-- = ';';
7889 FAST256CASE(7);
7890 *p-- = ';';
7891 FAST256CASE(6);
7892 *p-- = ';';
7893 FAST256CASE(5);
7894 *p-- = ';';
7895 FAST256CASE(4);
7896 *p-- = ';';
7897 FAST256CASE(3);
7898 *p-- = ';';
7899 FAST256CASE(2);
7900 *p-- = ';';
7901 FAST256CASE(1);
7902 *p-- = '[';
7903 *p = '\033';
7904 WriteConsoleA(g_hConOut, p, (DWORD)(&buf[SGRBUFSIZE] - p), &r, NULL);
7905 default:
7906 break;
7907 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007908}
7909
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007910 static void
7911wt_init(void)
7912{
7913 wt_working = (mch_getenv("WT_SESSION") != NULL);
7914}
7915
7916 int
7917use_wt(void)
7918{
7919 return USE_WT;
7920}
7921
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007922# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007923 static int
7924ctermtoxterm(
7925 int cterm)
7926{
Bram Moolenaar9894e392018-05-05 14:29:06 +02007927 char_u r, g, b, idx;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007928
7929 cterm_color2rgb(cterm, &r, &g, &b, &idx);
7930 return (((int)r << 16) | ((int)g << 8) | (int)b);
7931}
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007932# endif
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007933
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007934 static void
7935set_console_color_rgb(void)
7936{
7937# ifdef FEAT_TERMGUICOLORS
7938 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaara050b942019-12-02 21:35:31 +01007939 guicolor_T fg, bg;
7940 int ctermfg, ctermbg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007941
7942 if (!USE_VTP)
7943 return;
7944
Bram Moolenaara050b942019-12-02 21:35:31 +01007945 get_default_console_color(&ctermfg, &ctermbg, &fg, &bg);
7946
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007947 if (USE_WT)
7948 {
7949 term_fg_rgb_color(fg);
7950 term_bg_rgb_color(bg);
7951 return;
7952 }
7953
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007954 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7955 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7956
7957 csbi.cbSize = sizeof(csbi);
7958 if (has_csbiex)
7959 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
7960
7961 csbi.cbSize = sizeof(csbi);
7962 csbi.srWindow.Right += 1;
7963 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01007964 store_console_bg_rgb = csbi.ColorTable[g_color_index_bg];
7965 store_console_fg_rgb = csbi.ColorTable[g_color_index_fg];
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007966 csbi.ColorTable[g_color_index_bg] = (COLORREF)bg;
7967 csbi.ColorTable[g_color_index_fg] = (COLORREF)fg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007968 if (has_csbiex)
7969 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
7970# endif
7971}
7972
Bram Moolenaara050b942019-12-02 21:35:31 +01007973# if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
7974 void
7975get_default_console_color(
7976 int *cterm_fg,
7977 int *cterm_bg,
7978 guicolor_T *gui_fg,
7979 guicolor_T *gui_bg)
7980{
7981 int id;
7982 guicolor_T guifg = INVALCOLOR;
7983 guicolor_T guibg = INVALCOLOR;
7984 int ctermfg = 0;
7985 int ctermbg = 0;
7986
7987 id = syn_name2id((char_u *)"Normal");
7988 if (id > 0 && p_tgc)
7989 syn_id2colors(id, &guifg, &guibg);
7990 if (guifg == INVALCOLOR)
7991 {
7992 ctermfg = -1;
7993 if (id > 0)
7994 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
7995 guifg = ctermfg != -1 ? ctermtoxterm(ctermfg)
7996 : default_console_color_fg;
7997 cterm_normal_fg_gui_color = guifg;
7998 ctermfg = ctermfg < 0 ? 0 : ctermfg;
7999 }
8000 if (guibg == INVALCOLOR)
8001 {
8002 ctermbg = -1;
8003 if (id > 0)
8004 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
8005 guibg = ctermbg != -1 ? ctermtoxterm(ctermbg)
8006 : default_console_color_bg;
8007 cterm_normal_bg_gui_color = guibg;
8008 ctermbg = ctermbg < 0 ? 0 : ctermbg;
8009 }
8010
8011 *cterm_fg = ctermfg;
8012 *cterm_bg = ctermbg;
8013 *gui_fg = guifg;
8014 *gui_bg = guibg;
8015}
8016# endif
8017
Bram Moolenaardf543822020-01-30 11:53:59 +01008018/*
8019 * Set the console colors to the original colors or the last set colors.
8020 */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008021 static void
8022reset_console_color_rgb(void)
8023{
8024# ifdef FEAT_TERMGUICOLORS
8025 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8026
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008027 if (USE_WT)
8028 return;
8029
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008030 csbi.cbSize = sizeof(csbi);
8031 if (has_csbiex)
8032 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8033
8034 csbi.cbSize = sizeof(csbi);
8035 csbi.srWindow.Right += 1;
8036 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01008037 csbi.ColorTable[g_color_index_bg] = (COLORREF)store_console_bg_rgb;
8038 csbi.ColorTable[g_color_index_fg] = (COLORREF)store_console_fg_rgb;
8039 if (has_csbiex)
8040 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8041# endif
8042}
8043
8044/*
8045 * Set the console colors to the original colors.
8046 */
8047 static void
8048restore_console_color_rgb(void)
8049{
8050# ifdef FEAT_TERMGUICOLORS
8051 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8052
8053 csbi.cbSize = sizeof(csbi);
8054 if (has_csbiex)
8055 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8056
8057 csbi.cbSize = sizeof(csbi);
8058 csbi.srWindow.Right += 1;
8059 csbi.srWindow.Bottom += 1;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02008060 csbi.ColorTable[g_color_index_bg] = (COLORREF)save_console_bg_rgb;
8061 csbi.ColorTable[g_color_index_fg] = (COLORREF)save_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008062 if (has_csbiex)
8063 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8064# endif
8065}
8066
8067 void
8068control_console_color_rgb(void)
8069{
8070 if (USE_VTP)
8071 set_console_color_rgb();
8072 else
8073 reset_console_color_rgb();
8074}
8075
8076 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008077use_vtp(void)
8078{
8079 return USE_VTP;
8080}
8081
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008082 int
8083is_term_win32(void)
8084{
8085 return T_NAME != NULL && STRCMP(T_NAME, "win32") == 0;
8086}
8087
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01008088 int
8089has_vtp_working(void)
8090{
8091 return vtp_working;
8092}
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008093
Bram Moolenaar6902c0e2019-02-16 14:07:37 +01008094#endif
8095
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008096 int
8097has_conpty_working(void)
8098{
8099 return conpty_working;
8100}
8101
8102 int
Bram Moolenaar57da6982019-09-13 22:30:11 +02008103get_conpty_type(void)
8104{
8105 return conpty_type;
8106}
8107
8108 int
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008109is_conpty_stable(void)
8110{
8111 return conpty_stable;
8112}
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008113
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02008114 int
8115get_conpty_fix_type(void)
8116{
8117 return conpty_fix_type;
8118}
8119
Bram Moolenaarafde13b2019-04-28 19:46:49 +02008120#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008121 void
8122resize_console_buf(void)
8123{
8124 CONSOLE_SCREEN_BUFFER_INFO csbi;
8125 COORD coord;
8126 SMALL_RECT newsize;
8127
8128 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
8129 {
8130 coord.X = SRWIDTH(csbi.srWindow);
8131 coord.Y = SRHEIGHT(csbi.srWindow);
8132 SetConsoleScreenBufferSize(g_hConOut, coord);
8133
8134 newsize.Left = 0;
8135 newsize.Top = 0;
8136 newsize.Right = coord.X - 1;
8137 newsize.Bottom = coord.Y - 1;
8138 SetConsoleWindowInfo(g_hConOut, TRUE, &newsize);
8139
8140 SetConsoleScreenBufferSize(g_hConOut, coord);
8141 }
8142}
8143#endif