blob: 21b9b01279df0dedebe0b15aa1f7bd8d4186983a [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * os_win32.c
11 *
12 * Used for both the console version and the Win32 GUI. A lot of code is for
Bram Moolenaar4f974752019-02-17 17:44:42 +010013 * the console version only, so there is a lot of "#ifndef FEAT_GUI_MSWIN".
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 *
15 * Win32 (Windows NT and Windows 95) system-dependent routines.
16 * Portions lifted from the Win32 SDK samples, the MSDOS-dependent code,
17 * NetHack 3.1.3, GNU Emacs 19.30, and Vile 5.5.
18 *
19 * George V. Reilly <george@reilly.org> wrote most of this.
20 * Roger Knobbe <rogerk@wonderware.com> did the initial port of Vim 3.0.
21 */
22
Bram Moolenaar071d4272004-06-13 20:20:40 +000023#include "vim.h"
24
Bram Moolenaar325b7a22004-07-05 15:58:32 +000025#ifdef FEAT_MZSCHEME
26# include "if_mzsch.h"
27#endif
28
Bram Moolenaar071d4272004-06-13 20:20:40 +000029#include <sys/types.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000030#include <signal.h>
31#include <limits.h>
Bram Moolenaar82881492012-11-20 16:53:39 +010032
Bram Moolenaar0f873732019-12-05 20:28:46 +010033// cproto fails on missing include files
Bram Moolenaar82881492012-11-20 16:53:39 +010034#ifndef PROTO
35# include <process.h>
36#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000037
38#undef chdir
39#ifdef __GNUC__
40# ifndef __MINGW32__
41# include <dirent.h>
42# endif
43#else
44# include <direct.h>
45#endif
46
Bram Moolenaar82881492012-11-20 16:53:39 +010047#ifndef PROTO
Bram Moolenaar4f974752019-02-17 17:44:42 +010048# if defined(FEAT_TITLE) && !defined(FEAT_GUI_MSWIN)
Bram Moolenaar82881492012-11-20 16:53:39 +010049# include <shellapi.h>
50# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000051#endif
52
Bram Moolenaarfb630902016-10-29 14:55:00 +020053#ifdef FEAT_JOB_CHANNEL
54# include <tlhelp32.h>
55#endif
56
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#ifdef __MINGW32__
58# ifndef FROM_LEFT_1ST_BUTTON_PRESSED
59# define FROM_LEFT_1ST_BUTTON_PRESSED 0x0001
60# endif
61# ifndef RIGHTMOST_BUTTON_PRESSED
62# define RIGHTMOST_BUTTON_PRESSED 0x0002
63# endif
64# ifndef FROM_LEFT_2ND_BUTTON_PRESSED
65# define FROM_LEFT_2ND_BUTTON_PRESSED 0x0004
66# endif
67# ifndef FROM_LEFT_3RD_BUTTON_PRESSED
68# define FROM_LEFT_3RD_BUTTON_PRESSED 0x0008
69# endif
70# ifndef FROM_LEFT_4TH_BUTTON_PRESSED
71# define FROM_LEFT_4TH_BUTTON_PRESSED 0x0010
72# endif
73
74/*
75 * EventFlags
76 */
77# ifndef MOUSE_MOVED
78# define MOUSE_MOVED 0x0001
79# endif
80# ifndef DOUBLE_CLICK
81# define DOUBLE_CLICK 0x0002
82# endif
83#endif
84
Bram Moolenaar0f873732019-12-05 20:28:46 +010085// Record all output and all keyboard & mouse input
86// #define MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +000087
88#ifdef MCH_WRITE_DUMP
89FILE* fdDump = NULL;
90#endif
91
92/*
93 * When generating prototypes for Win32 on Unix, these lines make the syntax
94 * errors disappear. They do not need to be correct.
95 */
96#ifdef PROTO
Bram Moolenaar912bc4a2019-12-01 18:58:11 +010097# define WINAPI
Bram Moolenaar071d4272004-06-13 20:20:40 +000098typedef char * LPCSTR;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +000099typedef char * LPWSTR;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100typedef int ACCESS_MASK;
101typedef int BOOL;
102typedef int COLORREF;
103typedef int CONSOLE_CURSOR_INFO;
104typedef int COORD;
105typedef int DWORD;
106typedef int HANDLE;
Bram Moolenaaref269542016-01-19 13:22:12 +0100107typedef int LPHANDLE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108typedef int HDC;
109typedef int HFONT;
110typedef int HICON;
111typedef int HINSTANCE;
112typedef int HWND;
113typedef int INPUT_RECORD;
Bram Moolenaare0ab9792017-08-02 23:18:25 +0200114typedef int INT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115typedef int KEY_EVENT_RECORD;
116typedef int LOGFONT;
117typedef int LPBOOL;
118typedef int LPCTSTR;
119typedef int LPDWORD;
120typedef int LPSTR;
121typedef int LPTSTR;
122typedef int LPVOID;
123typedef int MOUSE_EVENT_RECORD;
124typedef int PACL;
125typedef int PDWORD;
126typedef int PHANDLE;
127typedef int PRINTDLG;
128typedef int PSECURITY_DESCRIPTOR;
129typedef int PSID;
130typedef int SECURITY_INFORMATION;
131typedef int SHORT;
132typedef int SMALL_RECT;
133typedef int TEXTMETRIC;
134typedef int TOKEN_INFORMATION_CLASS;
135typedef int TRUSTEE;
136typedef int WORD;
137typedef int WCHAR;
138typedef void VOID;
Bram Moolenaar82881492012-11-20 16:53:39 +0100139typedef int BY_HANDLE_FILE_INFORMATION;
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +0200140typedef int SE_OBJECT_TYPE;
141typedef int PSNSECINFO;
142typedef int PSNSECINFOW;
Bram Moolenaarb8e0bdb2014-11-12 16:10:48 +0100143typedef int STARTUPINFO;
144typedef int PROCESS_INFORMATION;
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200145typedef int LPSECURITY_ATTRIBUTES;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100146# define __stdcall // empty
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147#endif
148
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200149#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100150// Win32 Console handles for input and output
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151static HANDLE g_hConIn = INVALID_HANDLE_VALUE;
152static HANDLE g_hConOut = INVALID_HANDLE_VALUE;
153
Bram Moolenaar0f873732019-12-05 20:28:46 +0100154// Win32 Screen buffer,coordinate,console I/O information
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155static SMALL_RECT g_srScrollRegion;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100156static COORD g_coord; // 0-based, but external coords are 1-based
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157
Bram Moolenaar0f873732019-12-05 20:28:46 +0100158// The attribute of the screen when the editor was started
159static WORD g_attrDefault = 7; // lightgray text on black background
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160static WORD g_attrCurrent;
161
Bram Moolenaar0f873732019-12-05 20:28:46 +0100162static int g_fCBrkPressed = FALSE; // set by ctrl-break interrupt
163static int g_fCtrlCPressed = FALSE; // set when ctrl-C or ctrl-break detected
164static int g_fForceExit = FALSE; // set when forcefully exiting
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166static void scroll(unsigned cLines);
167static void set_scroll_region(unsigned left, unsigned top,
168 unsigned right, unsigned bottom);
Bram Moolenaar6982f422019-02-16 16:48:01 +0100169static void set_scroll_region_tb(unsigned top, unsigned bottom);
170static void set_scroll_region_lr(unsigned left, unsigned right);
171static void insert_lines(unsigned cLines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172static void delete_lines(unsigned cLines);
173static void gotoxy(unsigned x, unsigned y);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174static void standout(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175static int s_cursor_visible = TRUE;
176static int did_create_conin = FALSE;
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200177#endif
178#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179static int s_dont_use_vimrun = TRUE;
180static int need_vimrun_warning = FALSE;
181static char *vimrun_path = "vimrun ";
182#endif
183
Bram Moolenaar12b559e2013-06-12 22:41:37 +0200184static int win32_getattrs(char_u *name);
185static int win32_setattrs(char_u *name, int attrs);
186static int win32_set_archive(char_u *name);
187
Bram Moolenaard9ef1b82019-02-13 19:23:10 +0100188static int conpty_working = 0;
Bram Moolenaar57da6982019-09-13 22:30:11 +0200189static int conpty_type = 0;
Bram Moolenaard9ef1b82019-02-13 19:23:10 +0100190static int conpty_stable = 0;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +0200191static int conpty_fix_type = 0;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100192static void vtp_flag_init();
193
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200194#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar6902c0e2019-02-16 14:07:37 +0100195static int vtp_working = 0;
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100196static void vtp_init();
197static void vtp_exit();
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100198static void vtp_sgr_bulk(int arg);
199static void vtp_sgr_bulks(int argc, int *argv);
200
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200201static int wt_working = 0;
202static void wt_init();
203
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100204static guicolor_T save_console_bg_rgb;
205static guicolor_T save_console_fg_rgb;
Bram Moolenaardf543822020-01-30 11:53:59 +0100206static guicolor_T store_console_bg_rgb;
207static guicolor_T store_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100208
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +0200209static int g_color_index_bg = 0;
210static int g_color_index_fg = 7;
211
212# ifdef FEAT_TERMGUICOLORS
213static int default_console_color_bg = 0x000000; // black
214static int default_console_color_fg = 0xc0c0c0; // white
215# endif
216
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100217# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +0200218# define USE_VTP (vtp_working && is_term_win32() && (p_tgc || (!p_tgc && t_colors >= 256)))
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200219# define USE_WT (wt_working)
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100220# else
221# define USE_VTP 0
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200222# define USE_WT 0
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100223# endif
224
225static void set_console_color_rgb(void);
226static void reset_console_color_rgb(void);
Bram Moolenaardf543822020-01-30 11:53:59 +0100227static void restore_console_color_rgb(void);
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100228#endif
229
Bram Moolenaar0f873732019-12-05 20:28:46 +0100230// This flag is newly created from Windows 10
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100231#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
232# define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
233#endif
234
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200235#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100236static int suppress_winsize = 1; // don't fiddle with console
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237#endif
238
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200239static char_u *exe_path = NULL;
240
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100241static BOOL win8_or_later = FALSE;
242
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200243# if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
244# define UChar UnicodeChar
245# else
246# define UChar uChar.UnicodeChar
247# endif
248
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200249#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100250// Dynamic loading for portability
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100251typedef struct _DYN_CONSOLE_SCREEN_BUFFER_INFOEX
252{
253 ULONG cbSize;
254 COORD dwSize;
255 COORD dwCursorPosition;
256 WORD wAttributes;
257 SMALL_RECT srWindow;
258 COORD dwMaximumWindowSize;
259 WORD wPopupAttributes;
260 BOOL bFullscreenSupported;
261 COLORREF ColorTable[16];
262} DYN_CONSOLE_SCREEN_BUFFER_INFOEX, *PDYN_CONSOLE_SCREEN_BUFFER_INFOEX;
263typedef BOOL (WINAPI *PfnGetConsoleScreenBufferInfoEx)(HANDLE, PDYN_CONSOLE_SCREEN_BUFFER_INFOEX);
264static PfnGetConsoleScreenBufferInfoEx pGetConsoleScreenBufferInfoEx;
265typedef BOOL (WINAPI *PfnSetConsoleScreenBufferInfoEx)(HANDLE, PDYN_CONSOLE_SCREEN_BUFFER_INFOEX);
266static PfnSetConsoleScreenBufferInfoEx pSetConsoleScreenBufferInfoEx;
267static BOOL has_csbiex = FALSE;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +0100268#endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100269
270/*
271 * Get version number including build number
272 */
273typedef BOOL (WINAPI *PfnRtlGetVersion)(LPOSVERSIONINFOW);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100274#define MAKE_VER(major, minor, build) \
Bram Moolenaarcafafb32018-02-22 21:07:09 +0100275 (((major) << 24) | ((minor) << 16) | (build))
276
277 static DWORD
278get_build_number(void)
279{
280 OSVERSIONINFOW osver = {sizeof(OSVERSIONINFOW)};
281 HMODULE hNtdll;
282 PfnRtlGetVersion pRtlGetVersion;
283 DWORD ver = MAKE_VER(0, 0, 0);
284
285 hNtdll = GetModuleHandle("ntdll.dll");
286 if (hNtdll != NULL)
287 {
288 pRtlGetVersion =
289 (PfnRtlGetVersion)GetProcAddress(hNtdll, "RtlGetVersion");
290 pRtlGetVersion(&osver);
291 ver = MAKE_VER(min(osver.dwMajorVersion, 255),
292 min(osver.dwMinorVersion, 255),
293 min(osver.dwBuildNumber, 32767));
294 }
295 return ver;
296}
297
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200298#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200299 static BOOL
300is_ambiwidth_event(
301 INPUT_RECORD *ir)
302{
303 return ir->EventType == KEY_EVENT
304 && ir->Event.KeyEvent.bKeyDown
305 && ir->Event.KeyEvent.wRepeatCount == 1
306 && ir->Event.KeyEvent.wVirtualKeyCode == 0x12
307 && ir->Event.KeyEvent.wVirtualScanCode == 0x38
308 && ir->Event.KeyEvent.UChar == 0
309 && ir->Event.KeyEvent.dwControlKeyState == 2;
310}
311
312 static void
313make_ambiwidth_event(
314 INPUT_RECORD *down,
315 INPUT_RECORD *up)
316{
317 down->Event.KeyEvent.wVirtualKeyCode = 0;
318 down->Event.KeyEvent.wVirtualScanCode = 0;
319 down->Event.KeyEvent.UChar = up->Event.KeyEvent.UChar;
320 down->Event.KeyEvent.dwControlKeyState = 0;
321}
322
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100323/*
324 * Version of ReadConsoleInput() that works with IME.
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100325 * Works around problems on Windows 8.
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100326 */
327 static BOOL
328read_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100329 HANDLE hInput,
330 INPUT_RECORD *lpBuffer,
331 DWORD nLength,
332 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100333{
334 enum
335 {
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100336 IRSIZE = 10
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100337 };
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100338 static INPUT_RECORD s_irCache[IRSIZE];
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100339 static DWORD s_dwIndex = 0;
340 static DWORD s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100341 DWORD dwEvents;
Bram Moolenaardd415a62014-02-05 14:02:27 +0100342 int head;
343 int tail;
344 int i;
Bram Moolenaarbc970da2020-04-26 19:00:07 +0200345 static INPUT_RECORD s_irPseudo;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100346
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200347 if (nLength == -2)
348 return (s_dwMax > 0) ? TRUE : FALSE;
349
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100350 if (!win8_or_later)
351 {
352 if (nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200353 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
354 return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents);
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100355 }
356
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100357 if (s_dwMax == 0)
358 {
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200359 if (!USE_WT && nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200360 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200361 GetNumberOfConsoleInputEvents(hInput, &dwEvents);
362 if (dwEvents == 0 && nLength == -1)
363 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
364 ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents);
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100365 s_dwIndex = 0;
366 s_dwMax = dwEvents;
367 if (dwEvents == 0)
368 {
369 *lpEvents = 0;
370 return TRUE;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100371 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100372
Bram Moolenaar06b7b582020-05-30 17:49:25 +0200373 for (i = s_dwIndex; i < (int)s_dwMax - 1; ++i)
374 if (is_ambiwidth_event(&s_irCache[i]))
375 make_ambiwidth_event(&s_irCache[i], &s_irCache[i + 1]);
376
Bram Moolenaardd415a62014-02-05 14:02:27 +0100377 if (s_dwMax > 1)
378 {
379 head = 0;
380 tail = s_dwMax - 1;
381 while (head != tail)
382 {
383 if (s_irCache[head].EventType == WINDOW_BUFFER_SIZE_EVENT
384 && s_irCache[head + 1].EventType
385 == WINDOW_BUFFER_SIZE_EVENT)
386 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100387 // Remove duplicate event to avoid flicker.
Bram Moolenaardd415a62014-02-05 14:02:27 +0100388 for (i = head; i < tail; ++i)
389 s_irCache[i] = s_irCache[i + 1];
390 --tail;
391 continue;
392 }
393 head++;
394 }
395 s_dwMax = tail + 1;
396 }
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100397 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100398
Bram Moolenaarbc970da2020-04-26 19:00:07 +0200399 if (s_irCache[s_dwIndex].EventType == KEY_EVENT)
400 {
401 if (s_irCache[s_dwIndex].Event.KeyEvent.wRepeatCount > 1)
402 {
403 s_irPseudo = s_irCache[s_dwIndex];
404 s_irPseudo.Event.KeyEvent.wRepeatCount = 1;
405 s_irCache[s_dwIndex].Event.KeyEvent.wRepeatCount--;
406 *lpBuffer = s_irPseudo;
407 *lpEvents = 1;
408 return TRUE;
409 }
410 }
411
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100412 *lpBuffer = s_irCache[s_dwIndex];
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200413 if (!(nLength == -1 || nLength == -2) && ++s_dwIndex >= s_dwMax)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100414 s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100415 *lpEvents = 1;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100416 return TRUE;
417}
418
419/*
420 * Version of PeekConsoleInput() that works with IME.
421 */
422 static BOOL
423peek_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100424 HANDLE hInput,
425 INPUT_RECORD *lpBuffer,
Bram Moolenaarbd67aac2019-09-21 23:09:04 +0200426 DWORD nLength UNUSED,
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100427 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100428{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100429 return read_console_input(hInput, lpBuffer, -1, lpEvents);
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100430}
431
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100432# ifdef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200433 static DWORD
434msg_wait_for_multiple_objects(
435 DWORD nCount,
436 LPHANDLE pHandles,
437 BOOL fWaitAll,
438 DWORD dwMilliseconds,
439 DWORD dwWakeMask)
440{
441 if (read_console_input(NULL, NULL, -2, NULL))
442 return WAIT_OBJECT_0;
443 return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll,
444 dwMilliseconds, dwWakeMask);
445}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100446# endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200447
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100448# ifndef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200449 static DWORD
450wait_for_single_object(
451 HANDLE hHandle,
452 DWORD dwMilliseconds)
453{
454 if (read_console_input(NULL, NULL, -2, NULL))
455 return WAIT_OBJECT_0;
456 return WaitForSingleObject(hHandle, dwMilliseconds);
457}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100458# endif
459#endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200460
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 static void
462get_exe_name(void)
463{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100464 // Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned
465 // as the maximum length that works (plus a NUL byte).
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100466#define MAX_ENV_PATH_LEN 8192
467 char temp[MAX_ENV_PATH_LEN];
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200468 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469
470 if (exe_name == NULL)
471 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100472 // store the name of the executable, may be used for $VIM
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100473 GetModuleFileName(NULL, temp, MAX_ENV_PATH_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 if (*temp != NUL)
475 exe_name = FullName_save((char_u *)temp, FALSE);
476 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000477
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200478 if (exe_path == NULL && exe_name != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000479 {
Bram Moolenaar71ccd032020-06-12 22:59:11 +0200480 exe_path = vim_strnsave(exe_name, gettail_sep(exe_name) - exe_name);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200481 if (exe_path != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000482 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100483 // Append our starting directory to $PATH, so that when doing
484 // "!xxd" it's found in our starting directory. Needed because
485 // SearchPath() also looks there.
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200486 p = mch_getenv("PATH");
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100487 if (p == NULL
488 || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200489 {
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100490 if (p == NULL || *p == NUL)
491 temp[0] = NUL;
492 else
493 {
494 STRCPY(temp, p);
495 STRCAT(temp, ";");
496 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200497 STRCAT(temp, exe_path);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100498 vim_setenv((char_u *)"PATH", (char_u *)temp);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200499 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000500 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000501 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502}
503
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200504/*
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100505 * Unescape characters in "p" that appear in "escaped".
506 */
507 static void
508unescape_shellxquote(char_u *p, char_u *escaped)
509{
Bram Moolenaar4336cdf2012-02-29 13:58:47 +0100510 int l = (int)STRLEN(p);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100511 int n;
512
513 while (*p != NUL)
514 {
515 if (*p == '^' && vim_strchr(escaped, p[1]) != NULL)
516 mch_memmove(p, p + 1, l--);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100517 n = (*mb_ptr2len)(p);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100518 p += n;
519 l -= n;
520 }
521}
522
523/*
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200524 * Load library "name".
525 */
526 HINSTANCE
527vimLoadLib(char *name)
528{
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200529 HINSTANCE dll = NULL;
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200530
Bram Moolenaar0f873732019-12-05 20:28:46 +0100531 // NOTE: Do not use mch_dirname() and mch_chdir() here, they may call
532 // vimLoadLib() recursively, which causes a stack overflow.
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200533 if (exe_path == NULL)
534 get_exe_name();
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200535 if (exe_path != NULL)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200536 {
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200537 WCHAR old_dirw[MAXPATHL];
538
539 if (GetCurrentDirectoryW(MAXPATHL, old_dirw) != 0)
540 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100541 // Change directory to where the executable is, both to make
542 // sure we find a .dll there and to avoid looking for a .dll
543 // in the current directory.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100544 SetCurrentDirectory((LPCSTR)exe_path);
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200545 dll = LoadLibrary(name);
546 SetCurrentDirectoryW(old_dirw);
547 return dll;
548 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200549 }
550 return dll;
551}
552
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200553#if defined(VIMDLL) || defined(PROTO)
554/*
555 * Check if the current executable file is for the GUI subsystem.
556 */
557 int
558mch_is_gui_executable(void)
559{
560 PBYTE pImage = (PBYTE)GetModuleHandle(NULL);
561 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)pImage;
562 PIMAGE_NT_HEADERS pPE;
563
564 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
565 return FALSE;
566 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
567 if (pPE->Signature != IMAGE_NT_SIGNATURE)
568 return FALSE;
569 if (pPE->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI)
570 return TRUE;
571 return FALSE;
572}
573#endif
574
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100575#if defined(DYNAMIC_ICONV) || defined(DYNAMIC_GETTEXT) || defined(PROTO)
576/*
577 * Get related information about 'funcname' which is imported by 'hInst'.
578 * If 'info' is 0, return the function address.
579 * If 'info' is 1, return the module name which the function is imported from.
580 */
581 static void *
582get_imported_func_info(HINSTANCE hInst, const char *funcname, int info)
583{
584 PBYTE pImage = (PBYTE)hInst;
585 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)hInst;
586 PIMAGE_NT_HEADERS pPE;
587 PIMAGE_IMPORT_DESCRIPTOR pImpDesc;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100588 PIMAGE_THUNK_DATA pIAT; // Import Address Table
589 PIMAGE_THUNK_DATA pINT; // Import Name Table
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100590 PIMAGE_IMPORT_BY_NAME pImpName;
591
592 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
593 return NULL;
594 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
595 if (pPE->Signature != IMAGE_NT_SIGNATURE)
596 return NULL;
597 pImpDesc = (PIMAGE_IMPORT_DESCRIPTOR)(pImage
598 + pPE->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT]
599 .VirtualAddress);
600 for (; pImpDesc->FirstThunk; ++pImpDesc)
601 {
602 if (!pImpDesc->OriginalFirstThunk)
603 continue;
604 pIAT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->FirstThunk);
605 pINT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->OriginalFirstThunk);
606 for (; pIAT->u1.Function; ++pIAT, ++pINT)
607 {
608 if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
609 continue;
610 pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage
611 + (UINT_PTR)(pINT->u1.AddressOfData));
612 if (strcmp((char *)pImpName->Name, funcname) == 0)
613 {
614 switch (info)
615 {
616 case 0:
617 return (void *)pIAT->u1.Function;
618 case 1:
619 return (void *)(pImage + pImpDesc->Name);
620 default:
621 return NULL;
622 }
623 }
624 }
625 }
626 return NULL;
627}
628
629/*
630 * Get the module handle which 'funcname' in 'hInst' is imported from.
631 */
632 HINSTANCE
633find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname)
634{
635 char *modulename;
636
637 modulename = (char *)get_imported_func_info(hInst, funcname, 1);
638 if (modulename != NULL)
639 return GetModuleHandleA(modulename);
640 return NULL;
641}
642
643/*
644 * Get the address of 'funcname' which is imported by 'hInst' DLL.
645 */
646 void *
647get_dll_import_func(HINSTANCE hInst, const char *funcname)
648{
649 return get_imported_func_info(hInst, funcname, 0);
650}
651#endif
652
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653#if defined(DYNAMIC_GETTEXT) || defined(PROTO)
654# ifndef GETTEXT_DLL
655# define GETTEXT_DLL "libintl.dll"
Bram Moolenaar7554c542018-10-06 15:03:15 +0200656# define GETTEXT_DLL_ALT1 "libintl-8.dll"
657# define GETTEXT_DLL_ALT2 "intl.dll"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +0100659// Dummy functions
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000660static char *null_libintl_gettext(const char *);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200661static char *null_libintl_ngettext(const char *, const char *, unsigned long n);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000662static char *null_libintl_textdomain(const char *);
663static char *null_libintl_bindtextdomain(const char *, const char *);
664static char *null_libintl_bind_textdomain_codeset(const char *, const char *);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100665static int null_libintl_wputenv(const wchar_t *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200667static HINSTANCE hLibintlDLL = NULL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000668char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200669char *(*dyn_libintl_ngettext)(const char *, const char *, unsigned long n)
670 = null_libintl_ngettext;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000671char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
672char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000674char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *)
675 = null_libintl_bind_textdomain_codeset;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100676int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677
678 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100679dyn_libintl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680{
681 int i;
682 static struct
683 {
684 char *name;
685 FARPROC *ptr;
686 } libintl_entry[] =
687 {
688 {"gettext", (FARPROC*)&dyn_libintl_gettext},
Bram Moolenaaree695f72016-08-03 22:08:45 +0200689 {"ngettext", (FARPROC*)&dyn_libintl_ngettext},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 {"textdomain", (FARPROC*)&dyn_libintl_textdomain},
691 {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
692 {NULL, NULL}
693 };
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100694 HINSTANCE hmsvcrt;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695
Bram Moolenaar7554c542018-10-06 15:03:15 +0200696 // No need to initialize twice.
697 if (hLibintlDLL != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 return 1;
Bram Moolenaar7554c542018-10-06 15:03:15 +0200699 // Load gettext library (libintl.dll and other names).
Bram Moolenaar923e43b2016-01-28 15:07:38 +0100700 hLibintlDLL = vimLoadLib(GETTEXT_DLL);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100701# ifdef GETTEXT_DLL_ALT1
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100702 if (!hLibintlDLL)
Bram Moolenaar7554c542018-10-06 15:03:15 +0200703 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100704# endif
705# ifdef GETTEXT_DLL_ALT2
Bram Moolenaar7554c542018-10-06 15:03:15 +0200706 if (!hLibintlDLL)
707 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT2);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100708# endif
Bram Moolenaar938ee832016-01-24 15:36:03 +0100709 if (!hLibintlDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200711 if (p_verbose > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200713 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100714 semsg(_(e_loadlib), GETTEXT_DLL);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200715 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200717 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 }
719 for (i = 0; libintl_entry[i].name != NULL
720 && libintl_entry[i].ptr != NULL; ++i)
721 {
722 if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL,
723 libintl_entry[i].name)) == NULL)
724 {
725 dyn_libintl_end();
726 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000727 {
728 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100729 semsg(_(e_loadfunc), libintl_entry[i].name);
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000730 verbose_leave();
731 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 return 0;
733 }
734 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000735
Bram Moolenaar0f873732019-12-05 20:28:46 +0100736 // The bind_textdomain_codeset() function is optional.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000737 dyn_libintl_bind_textdomain_codeset = (void *)GetProcAddress(hLibintlDLL,
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000738 "bind_textdomain_codeset");
739 if (dyn_libintl_bind_textdomain_codeset == NULL)
740 dyn_libintl_bind_textdomain_codeset =
741 null_libintl_bind_textdomain_codeset;
742
Bram Moolenaar0f873732019-12-05 20:28:46 +0100743 // _wputenv() function for the libintl.dll is optional.
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100744 hmsvcrt = find_imported_module_by_funcname(hLibintlDLL, "getenv");
745 if (hmsvcrt != NULL)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100746 dyn_libintl_wputenv = (void *)GetProcAddress(hmsvcrt, "_wputenv");
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100747 if (dyn_libintl_wputenv == NULL || dyn_libintl_wputenv == _wputenv)
748 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100749
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 return 1;
751}
752
753 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100754dyn_libintl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755{
756 if (hLibintlDLL)
757 FreeLibrary(hLibintlDLL);
758 hLibintlDLL = NULL;
759 dyn_libintl_gettext = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200760 dyn_libintl_ngettext = null_libintl_ngettext;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761 dyn_libintl_textdomain = null_libintl_textdomain;
762 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000763 dyn_libintl_bind_textdomain_codeset = null_libintl_bind_textdomain_codeset;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100764 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765}
766
767 static char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000768null_libintl_gettext(const char *msgid)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769{
770 return (char*)msgid;
771}
772
773 static char *
Bram Moolenaaree695f72016-08-03 22:08:45 +0200774null_libintl_ngettext(
775 const char *msgid,
776 const char *msgid_plural,
777 unsigned long n)
778{
Bram Moolenaarc90f2ae2016-08-04 22:00:15 +0200779 return (char *)(n == 1 ? msgid : msgid_plural);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200780}
781
Bram Moolenaaree695f72016-08-03 22:08:45 +0200782 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100783null_libintl_bindtextdomain(
784 const char *domainname UNUSED,
785 const char *dirname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786{
787 return NULL;
788}
789
790 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100791null_libintl_bind_textdomain_codeset(
792 const char *domainname UNUSED,
793 const char *codeset UNUSED)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000794{
795 return NULL;
796}
797
798 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100799null_libintl_textdomain(const char *domainname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800{
801 return NULL;
802}
803
Bram Moolenaare0ab9792017-08-02 23:18:25 +0200804 static int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100805null_libintl_wputenv(const wchar_t *envstring UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100806{
807 return 0;
808}
809
Bram Moolenaar0f873732019-12-05 20:28:46 +0100810#endif // DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
Bram Moolenaar0f873732019-12-05 20:28:46 +0100812// This symbol is not defined in older versions of the SDK or Visual C++
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813
814#ifndef VER_PLATFORM_WIN32_WINDOWS
815# define VER_PLATFORM_WIN32_WINDOWS 1
816#endif
817
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818#ifdef HAVE_ACL
Bram Moolenaar82881492012-11-20 16:53:39 +0100819# ifndef PROTO
820# include <aclapi.h>
821# endif
Bram Moolenaar27515922013-06-29 15:36:26 +0200822# ifndef PROTECTED_DACL_SECURITY_INFORMATION
823# define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L
824# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825#endif
826
Bram Moolenaar27515922013-06-29 15:36:26 +0200827#ifdef HAVE_ACL
828/*
829 * Enables or disables the specified privilege.
830 */
831 static BOOL
832win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable)
833{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100834 BOOL bResult;
835 LUID luid;
836 HANDLE hToken;
837 TOKEN_PRIVILEGES tokenPrivileges;
Bram Moolenaar27515922013-06-29 15:36:26 +0200838
839 if (!OpenProcessToken(GetCurrentProcess(),
840 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
841 return FALSE;
842
843 if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid))
844 {
845 CloseHandle(hToken);
846 return FALSE;
847 }
848
Bram Moolenaar45500912014-07-09 20:51:07 +0200849 tokenPrivileges.PrivilegeCount = 1;
Bram Moolenaar27515922013-06-29 15:36:26 +0200850 tokenPrivileges.Privileges[0].Luid = luid;
851 tokenPrivileges.Privileges[0].Attributes = bEnable ?
852 SE_PRIVILEGE_ENABLED : 0;
853
854 bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges,
855 sizeof(TOKEN_PRIVILEGES), NULL, NULL);
856
857 CloseHandle(hToken);
858
859 return bResult && GetLastError() == ERROR_SUCCESS;
860}
861#endif
862
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863/*
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200864 * Set "win8_or_later" and fill in "windowsVersion" if possible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 */
866 void
867PlatformId(void)
868{
869 static int done = FALSE;
870
871 if (!done)
872 {
873 OSVERSIONINFO ovi;
874
875 ovi.dwOSVersionInfoSize = sizeof(ovi);
876 GetVersionEx(&ovi);
877
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200878#ifdef FEAT_EVAL
Bram Moolenaar0c1e3742019-12-27 13:49:24 +0100879 vim_snprintf(windowsVersion, sizeof(windowsVersion), "%d.%d",
880 (int)ovi.dwMajorVersion, (int)ovi.dwMinorVersion);
Bram Moolenaar1e1d2e82020-05-18 20:17:02 +0200881#endif
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100882 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2)
883 || ovi.dwMajorVersion > 6)
884 win8_or_later = TRUE;
885
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886#ifdef HAVE_ACL
Bram Moolenaar0f873732019-12-05 20:28:46 +0100887 // Enable privilege for getting or setting SACLs.
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200888 win32_enable_privilege(SE_SECURITY_NAME, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889#endif
890 done = TRUE;
891 }
892}
893
Bram Moolenaarafde13b2019-04-28 19:46:49 +0200894#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100896# define SHIFT (SHIFT_PRESSED)
897# define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)
898# define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)
899# define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
901
Bram Moolenaar0f873732019-12-05 20:28:46 +0100902// When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode.
903// We map function keys to their ANSI terminal equivalents, as produced
904// by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any
905// ANSI key with a value >= '\300' is nonstandard, but provided anyway
906// so that the user can have access to all SHIFT-, CTRL-, and ALT-
907// combinations of function/arrow/etc keys.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908
Bram Moolenaard6f676d2005-06-01 21:51:55 +0000909static const struct
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910{
911 WORD wVirtKey;
912 BOOL fAnsiKey;
913 int chAlone;
914 int chShift;
915 int chCtrl;
916 int chAlt;
917} VirtKeyMap[] =
918{
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200919// Key ANSI alone shift ctrl alt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, },
921
922 { VK_F1, TRUE, ';', 'T', '^', 'h', },
923 { VK_F2, TRUE, '<', 'U', '_', 'i', },
924 { VK_F3, TRUE, '=', 'V', '`', 'j', },
925 { VK_F4, TRUE, '>', 'W', 'a', 'k', },
926 { VK_F5, TRUE, '?', 'X', 'b', 'l', },
927 { VK_F6, TRUE, '@', 'Y', 'c', 'm', },
928 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', },
929 { VK_F8, TRUE, 'B', '[', 'e', 'o', },
930 { VK_F9, TRUE, 'C', '\\', 'f', 'p', },
931 { VK_F10, TRUE, 'D', ']', 'g', 'q', },
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200932 { VK_F11, TRUE, '\205', '\207', '\211', '\213', },
933 { VK_F12, TRUE, '\206', '\210', '\212', '\214', },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200935 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', },
936 { VK_UP, TRUE, 'H', '\304', '\305', '\306', },
937 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, // PgUp
938 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', },
939 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', },
940 { VK_END, TRUE, 'O', '\315', 'u', '\316', },
941 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', },
942 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, // PgDn
943 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', },
944 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', },
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100945 { VK_BACK, TRUE, 'x', 'y', 'z', '{', }, // Backspace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200947 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, // PrtScrn
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100949# if 0
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200950 // Most people don't have F13-F20, but what the hell...
951 { VK_F13, TRUE, '\332', '\333', '\334', '\335', },
952 { VK_F14, TRUE, '\336', '\337', '\340', '\341', },
953 { VK_F15, TRUE, '\342', '\343', '\344', '\345', },
954 { VK_F16, TRUE, '\346', '\347', '\350', '\351', },
955 { VK_F17, TRUE, '\352', '\353', '\354', '\355', },
956 { VK_F18, TRUE, '\356', '\357', '\360', '\361', },
957 { VK_F19, TRUE, '\362', '\363', '\364', '\365', },
958 { VK_F20, TRUE, '\366', '\367', '\370', '\371', },
Bram Moolenaar912bc4a2019-12-01 18:58:11 +0100959# endif
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200960 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, // keyp '+'
961 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, // keyp '-'
962 // { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, // keyp '/'
963 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, // keyp '*'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +0200965 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', },
966 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', },
967 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', },
968 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', },
969 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', },
970 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', },
971 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', },
972 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', },
973 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', },
974 // Sorry, out of number space! <negri>
Bram Moolenaarb70a47b2019-03-30 22:11:21 +0100975 { VK_NUMPAD9,TRUE, '\376', '\377', '|', '}', },
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976};
977
978
Bram Moolenaar0f873732019-12-05 20:28:46 +0100979/*
980 * The return code indicates key code size.
981 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983win32_kbd_patch_key(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000984 KEY_EVENT_RECORD *pker)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985{
986 UINT uMods = pker->dwControlKeyState;
987 static int s_iIsDead = 0;
988 static WORD awAnsiCode[2];
989 static BYTE abKeystate[256];
990
991
992 if (s_iIsDead == 2)
993 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200994 pker->UChar = (WCHAR) awAnsiCode[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 s_iIsDead = 0;
996 return 1;
997 }
998
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200999 if (pker->UChar != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 return 1;
1001
Bram Moolenaara80faa82020-04-12 19:37:17 +02001002 CLEAR_FIELD(abKeystate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003
Bram Moolenaar0f873732019-12-05 20:28:46 +01001004 // Clear any pending dead keys
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001005 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006
1007 if (uMods & SHIFT_PRESSED)
1008 abKeystate[VK_SHIFT] = 0x80;
1009 if (uMods & CAPSLOCK_ON)
1010 abKeystate[VK_CAPITAL] = 1;
1011
1012 if ((uMods & ALT_GR) == ALT_GR)
1013 {
1014 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] =
1015 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80;
1016 }
1017
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001018 s_iIsDead = ToUnicode(pker->wVirtualKeyCode, pker->wVirtualScanCode,
1019 abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020
1021 if (s_iIsDead > 0)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001022 pker->UChar = (WCHAR) awAnsiCode[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023
1024 return s_iIsDead;
1025}
1026
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027static BOOL g_fJustGotFocus = FALSE;
1028
1029/*
1030 * Decode a KEY_EVENT into one or two keystrokes
1031 */
1032 static BOOL
1033decode_key_event(
1034 KEY_EVENT_RECORD *pker,
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001035 WCHAR *pch,
1036 WCHAR *pch2,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 int *pmodifiers,
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02001038 BOOL fDoPost UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039{
1040 int i;
1041 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL);
1042
1043 *pch = *pch2 = NUL;
1044 g_fJustGotFocus = FALSE;
1045
Bram Moolenaar0f873732019-12-05 20:28:46 +01001046 // ignore key up events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 if (!pker->bKeyDown)
1048 return FALSE;
1049
Bram Moolenaar0f873732019-12-05 20:28:46 +01001050 // ignore some keystrokes
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 switch (pker->wVirtualKeyCode)
1052 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001053 // modifiers
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 case VK_SHIFT:
1055 case VK_CONTROL:
Bram Moolenaar0f873732019-12-05 20:28:46 +01001056 case VK_MENU: // Alt key
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 return FALSE;
1058
1059 default:
1060 break;
1061 }
1062
Bram Moolenaar0f873732019-12-05 20:28:46 +01001063 // special cases
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001064 if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001066 // Ctrl-6 is Ctrl-^
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 if (pker->wVirtualKeyCode == '6')
1068 {
1069 *pch = Ctrl_HAT;
1070 return TRUE;
1071 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001072 // Ctrl-2 is Ctrl-@
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 else if (pker->wVirtualKeyCode == '2')
1074 {
1075 *pch = NUL;
1076 return TRUE;
1077 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001078 // Ctrl-- is Ctrl-_
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079 else if (pker->wVirtualKeyCode == 0xBD)
1080 {
1081 *pch = Ctrl__;
1082 return TRUE;
1083 }
1084 }
1085
Bram Moolenaar0f873732019-12-05 20:28:46 +01001086 // Shift-TAB
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED))
1088 {
1089 *pch = K_NUL;
1090 *pch2 = '\017';
1091 return TRUE;
1092 }
1093
1094 for (i = sizeof(VirtKeyMap) / sizeof(VirtKeyMap[0]); --i >= 0; )
1095 {
1096 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode)
1097 {
1098 if (nModifs == 0)
1099 *pch = VirtKeyMap[i].chAlone;
1100 else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0)
1101 *pch = VirtKeyMap[i].chShift;
1102 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0)
1103 *pch = VirtKeyMap[i].chCtrl;
1104 else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0)
1105 *pch = VirtKeyMap[i].chAlt;
1106
1107 if (*pch != 0)
1108 {
1109 if (VirtKeyMap[i].fAnsiKey)
1110 {
1111 *pch2 = *pch;
1112 *pch = K_NUL;
1113 }
1114
1115 return TRUE;
1116 }
1117 }
1118 }
1119
1120 i = win32_kbd_patch_key(pker);
1121
1122 if (i < 0)
1123 *pch = NUL;
1124 else
1125 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001126 *pch = (i > 0) ? pker->UChar : NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127
1128 if (pmodifiers != NULL)
1129 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001130 // Pass on the ALT key as a modifier, but only when not combined
1131 // with CTRL (which is ALTGR).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0)
1133 *pmodifiers |= MOD_MASK_ALT;
1134
Bram Moolenaar0f873732019-12-05 20:28:46 +01001135 // Pass on SHIFT only for special keys, because we don't know when
1136 // it's already included with the character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 if ((nModifs & SHIFT) != 0 && *pch <= 0x20)
1138 *pmodifiers |= MOD_MASK_SHIFT;
1139
Bram Moolenaar0f873732019-12-05 20:28:46 +01001140 // Pass on CTRL only for non-special keys, because we don't know
1141 // when it's already included with the character. And not when
1142 // combined with ALT (which is ALTGR).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0
1144 && *pch >= 0x20 && *pch < 0x80)
1145 *pmodifiers |= MOD_MASK_CTRL;
1146 }
1147 }
1148
1149 return (*pch != NUL);
1150}
1151
Bram Moolenaar0f873732019-12-05 20:28:46 +01001152#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153
1154
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155/*
1156 * For the GUI the mouse handling is in gui_w32.c.
1157 */
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001158#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001160mch_setmouse(int on UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161{
1162}
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001163#else
Bram Moolenaar0f873732019-12-05 20:28:46 +01001164static int g_fMouseAvail = FALSE; // mouse present
1165static int g_fMouseActive = FALSE; // mouse enabled
1166static int g_nMouseClick = -1; // mouse status
1167static int g_xMouse; // mouse x coordinate
1168static int g_yMouse; // mouse y coordinate
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169
1170/*
1171 * Enable or disable mouse input
1172 */
1173 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001174mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175{
1176 DWORD cmodein;
1177
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001178# ifdef VIMDLL
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001179 if (gui.in_use)
1180 return;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001181# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 if (!g_fMouseAvail)
1183 return;
1184
1185 g_fMouseActive = on;
1186 GetConsoleMode(g_hConIn, &cmodein);
1187
1188 if (g_fMouseActive)
1189 cmodein |= ENABLE_MOUSE_INPUT;
1190 else
1191 cmodein &= ~ENABLE_MOUSE_INPUT;
1192
1193 SetConsoleMode(g_hConIn, cmodein);
1194}
1195
Bram Moolenaar157d8132018-03-06 17:09:20 +01001196
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001197# if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar157d8132018-03-06 17:09:20 +01001198/*
1199 * Called when 'balloonevalterm' changed.
1200 */
1201 void
1202mch_bevalterm_changed(void)
1203{
1204 mch_setmouse(g_fMouseActive);
1205}
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001206# endif
Bram Moolenaar157d8132018-03-06 17:09:20 +01001207
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208/*
1209 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT,
1210 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse
1211 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG
1212 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type,
1213 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick,
1214 * and we return the mouse position in g_xMouse and g_yMouse.
1215 *
1216 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more
1217 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only
1218 * by MOUSE_LEFT, _MIDDLE, or _RIGHT.
1219 *
1220 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE,
1221 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, ....
1222 *
1223 * Windows will send us MOUSE_MOVED notifications whenever the mouse
1224 * moves, even if it stays within the same character cell. We ignore
1225 * all MOUSE_MOVED messages if the position hasn't really changed, and
1226 * we ignore all MOUSE_MOVED messages where no button is held down (i.e.,
1227 * we're only interested in MOUSE_DRAG).
1228 *
1229 * All of this is complicated by the code that fakes MOUSE_MIDDLE on
1230 * 2-button mouses by pressing the left & right buttons simultaneously.
1231 * In practice, it's almost impossible to click both at the same time,
1232 * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE
1233 * in such cases, if the user is clicking quickly.
1234 */
1235 static BOOL
1236decode_mouse_event(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001237 MOUSE_EVENT_RECORD *pmer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238{
1239 static int s_nOldButton = -1;
1240 static int s_nOldMouseClick = -1;
1241 static int s_xOldMouse = -1;
1242 static int s_yOldMouse = -1;
1243 static linenr_T s_old_topline = 0;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001244# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 static int s_old_topfill = 0;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001246# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 static int s_cClicks = 1;
1248 static BOOL s_fReleased = TRUE;
1249 static DWORD s_dwLastClickTime = 0;
1250 static BOOL s_fNextIsMiddle = FALSE;
1251
Bram Moolenaar0f873732019-12-05 20:28:46 +01001252 static DWORD cButtons = 0; // number of buttons supported
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253
1254 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED;
1255 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED;
1256 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED;
1257 const DWORD LEFT_RIGHT = LEFT | RIGHT;
1258
1259 int nButton;
1260
1261 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons))
1262 cButtons = 2;
1263
1264 if (!g_fMouseAvail || !g_fMouseActive)
1265 {
1266 g_nMouseClick = -1;
1267 return FALSE;
1268 }
1269
Bram Moolenaar0f873732019-12-05 20:28:46 +01001270 // get a spurious MOUSE_EVENT immediately after receiving focus; ignore
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 if (g_fJustGotFocus)
1272 {
1273 g_fJustGotFocus = FALSE;
1274 return FALSE;
1275 }
1276
Bram Moolenaar0f873732019-12-05 20:28:46 +01001277 // unprocessed mouse click?
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 if (g_nMouseClick != -1)
1279 return TRUE;
1280
1281 nButton = -1;
1282 g_xMouse = pmer->dwMousePosition.X;
1283 g_yMouse = pmer->dwMousePosition.Y;
1284
1285 if (pmer->dwEventFlags == MOUSE_MOVED)
1286 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001287 // Ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these
1288 // events even when the mouse moves only within a char cell.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse)
1290 return FALSE;
1291 }
1292
Bram Moolenaar0f873732019-12-05 20:28:46 +01001293 // If no buttons are pressed...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0)
1295 {
Bram Moolenaar157d8132018-03-06 17:09:20 +01001296 nButton = MOUSE_RELEASE;
1297
Bram Moolenaar0f873732019-12-05 20:28:46 +01001298 // If the last thing returned was MOUSE_RELEASE, ignore this
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 if (s_fReleased)
Bram Moolenaar157d8132018-03-06 17:09:20 +01001300 {
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001301# ifdef FEAT_BEVAL_TERM
Bram Moolenaar0f873732019-12-05 20:28:46 +01001302 // do return mouse move events when we want them
Bram Moolenaar157d8132018-03-06 17:09:20 +01001303 if (p_bevalterm)
1304 nButton = MOUSE_DRAG;
1305 else
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001306# endif
Bram Moolenaar157d8132018-03-06 17:09:20 +01001307 return FALSE;
1308 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 s_fReleased = TRUE;
1311 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001312 else // one or more buttons pressed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001314 // on a 2-button mouse, hold down left and right buttons
1315 // simultaneously to get MIDDLE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316
1317 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG)
1318 {
1319 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT);
1320
Bram Moolenaar0f873732019-12-05 20:28:46 +01001321 // if either left or right button only is pressed, see if the
1322 // next mouse event has both of them pressed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 if (dwLR == LEFT || dwLR == RIGHT)
1324 {
1325 for (;;)
1326 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001327 // wait a short time for next input event
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 if (WaitForSingleObject(g_hConIn, p_mouset / 3)
1329 != WAIT_OBJECT_0)
1330 break;
1331 else
1332 {
1333 DWORD cRecords = 0;
1334 INPUT_RECORD ir;
1335 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent;
1336
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001337 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
1339 if (cRecords == 0 || ir.EventType != MOUSE_EVENT
1340 || !(pmer2->dwButtonState & LEFT_RIGHT))
1341 break;
1342 else
1343 {
1344 if (pmer2->dwEventFlags != MOUSE_MOVED)
1345 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001346 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347
1348 return decode_mouse_event(pmer2);
1349 }
1350 else if (s_xOldMouse == pmer2->dwMousePosition.X &&
1351 s_yOldMouse == pmer2->dwMousePosition.Y)
1352 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001353 // throw away spurious mouse move
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001354 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355
Bram Moolenaar0f873732019-12-05 20:28:46 +01001356 // are there any more mouse events in queue?
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001357 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358
1359 if (cRecords==0 || ir.EventType != MOUSE_EVENT)
1360 break;
1361 }
1362 else
1363 break;
1364 }
1365 }
1366 }
1367 }
1368 }
1369
1370 if (s_fNextIsMiddle)
1371 {
1372 nButton = (pmer->dwEventFlags == MOUSE_MOVED)
1373 ? MOUSE_DRAG : MOUSE_MIDDLE;
1374 s_fNextIsMiddle = FALSE;
1375 }
1376 else if (cButtons == 2 &&
1377 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT))
1378 {
1379 nButton = MOUSE_MIDDLE;
1380
1381 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED)
1382 {
1383 s_fNextIsMiddle = TRUE;
1384 nButton = MOUSE_RELEASE;
1385 }
1386 }
1387 else if ((pmer->dwButtonState & LEFT) == LEFT)
1388 nButton = MOUSE_LEFT;
1389 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE)
1390 nButton = MOUSE_MIDDLE;
1391 else if ((pmer->dwButtonState & RIGHT) == RIGHT)
1392 nButton = MOUSE_RIGHT;
1393
1394 if (! s_fReleased && ! s_fNextIsMiddle
1395 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG)
1396 return FALSE;
1397
1398 s_fReleased = s_fNextIsMiddle;
1399 }
1400
1401 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK)
1402 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001403 // button pressed or released, without mouse moving
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 if (nButton != -1 && nButton != MOUSE_RELEASE)
1405 {
1406 DWORD dwCurrentTime = GetTickCount();
1407
1408 if (s_xOldMouse != g_xMouse
1409 || s_yOldMouse != g_yMouse
1410 || s_nOldButton != nButton
1411 || s_old_topline != curwin->w_topline
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001412# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 || s_old_topfill != curwin->w_topfill
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001414# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset)
1416 {
1417 s_cClicks = 1;
1418 }
1419 else if (++s_cClicks > 4)
1420 {
1421 s_cClicks = 1;
1422 }
1423
1424 s_dwLastClickTime = dwCurrentTime;
1425 }
1426 }
1427 else if (pmer->dwEventFlags == MOUSE_MOVED)
1428 {
1429 if (nButton != -1 && nButton != MOUSE_RELEASE)
1430 nButton = MOUSE_DRAG;
1431
1432 s_cClicks = 1;
1433 }
1434
1435 if (nButton == -1)
1436 return FALSE;
1437
1438 if (nButton != MOUSE_RELEASE)
1439 s_nOldButton = nButton;
1440
1441 g_nMouseClick = nButton;
1442
1443 if (pmer->dwControlKeyState & SHIFT_PRESSED)
1444 g_nMouseClick |= MOUSE_SHIFT;
1445 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
1446 g_nMouseClick |= MOUSE_CTRL;
1447 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
1448 g_nMouseClick |= MOUSE_ALT;
1449
1450 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE)
1451 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks);
1452
Bram Moolenaar0f873732019-12-05 20:28:46 +01001453 // only pass on interesting (i.e., different) mouse events
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454 if (s_xOldMouse == g_xMouse
1455 && s_yOldMouse == g_yMouse
1456 && s_nOldMouseClick == g_nMouseClick)
1457 {
1458 g_nMouseClick = -1;
1459 return FALSE;
1460 }
1461
1462 s_xOldMouse = g_xMouse;
1463 s_yOldMouse = g_yMouse;
1464 s_old_topline = curwin->w_topline;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001465# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 s_old_topfill = curwin->w_topfill;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001467# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 s_nOldMouseClick = g_nMouseClick;
1469
1470 return TRUE;
1471}
1472
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001473#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474
1475
1476#ifdef MCH_CURSOR_SHAPE
1477/*
1478 * Set the shape of the cursor.
1479 * 'thickness' can be from 1 (thin) to 99 (block)
1480 */
1481 static void
1482mch_set_cursor_shape(int thickness)
1483{
1484 CONSOLE_CURSOR_INFO ConsoleCursorInfo;
1485 ConsoleCursorInfo.dwSize = thickness;
1486 ConsoleCursorInfo.bVisible = s_cursor_visible;
1487
1488 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
1489 if (s_cursor_visible)
1490 SetConsoleCursorPosition(g_hConOut, g_coord);
1491}
1492
1493 void
1494mch_update_cursor(void)
1495{
1496 int idx;
1497 int thickness;
1498
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001499# ifdef VIMDLL
1500 if (gui.in_use)
1501 return;
1502# endif
1503
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 /*
1505 * How the cursor is drawn depends on the current mode.
1506 */
1507 idx = get_shape_idx(FALSE);
1508
1509 if (shape_table[idx].shape == SHAPE_BLOCK)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001510 thickness = 99; // 100 doesn't work on W95
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 else
1512 thickness = shape_table[idx].percentage;
1513 mch_set_cursor_shape(thickness);
1514}
1515#endif
1516
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001517#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518/*
1519 * Handle FOCUS_EVENT.
1520 */
1521 static void
1522handle_focus_event(INPUT_RECORD ir)
1523{
1524 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus;
1525 ui_focus_change((int)g_fJustGotFocus);
1526}
1527
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001528static void ResizeConBuf(HANDLE hConsole, COORD coordScreen);
1529
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530/*
1531 * Wait until console input from keyboard or mouse is available,
1532 * or the time is up.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001533 * When "ignore_input" is TRUE even wait when input is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 * Return TRUE if something is available FALSE if not.
1535 */
1536 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001537WaitForChar(long msec, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538{
1539 DWORD dwNow = 0, dwEndTime = 0;
1540 INPUT_RECORD ir;
1541 DWORD cRecords;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001542 WCHAR ch, ch2;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001543# ifdef FEAT_TIMERS
Bram Moolenaar40b1b542016-04-20 20:18:23 +02001544 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001545# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546
1547 if (msec > 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001548 // Wait until the specified time has elapsed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 dwEndTime = GetTickCount() + msec;
1550 else if (msec < 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001551 // Wait forever.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 dwEndTime = INFINITE;
1553
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01001554 // We need to loop until the end of the time period, because
1555 // we might get multiple unusable mouse events in that time.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556 for (;;)
1557 {
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001558 // Only process messages when waiting.
1559 if (msec != 0)
1560 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001561# ifdef MESSAGE_QUEUE
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001562 parse_queued_messages();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001563# endif
1564# ifdef FEAT_MZSCHEME
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001565 mzvim_check_threads();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001566# endif
1567# ifdef FEAT_CLIENTSERVER
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001568 serverProcessPendingMessages();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001569# endif
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001570 }
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001571
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02001572 if (g_nMouseClick != -1
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001573# ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001574 || (!ignore_input && input_available())
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001575# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 )
1577 return TRUE;
1578
1579 if (msec > 0)
1580 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001581 // If the specified wait time has passed, return. Beware that
1582 // GetTickCount() may wrap around (overflow).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 dwNow = GetTickCount();
Bram Moolenaarb7512b72013-08-10 12:45:09 +02001584 if ((int)(dwNow - dwEndTime) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 break;
1586 }
1587 if (msec != 0)
1588 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001589 DWORD dwWaitTime = dwEndTime - dwNow;
1590
Bram Moolenaarc478ee32020-12-01 21:27:51 +01001591 // Don't wait for more than 11 msec to avoid dropping characters,
1592 // check channel while waiting for input and handle a callback from
1593 // 'balloonexpr'.
1594 if (dwWaitTime > 11)
1595 dwWaitTime = 11;
1596
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001597# ifdef FEAT_MZSCHEME
Bram Moolenaarc478ee32020-12-01 21:27:51 +01001598 if (mzthreads_allowed() && p_mzq > 0 && (long)dwWaitTime > p_mzq)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001599 dwWaitTime = p_mzq; // don't wait longer than 'mzquantum'
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001600# endif
1601# ifdef FEAT_TIMERS
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001602 // When waiting very briefly don't trigger timers.
1603 if (dwWaitTime > 10)
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001604 {
1605 long due_time;
1606
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001607 // Trigger timers and then get the time in msec until the next
1608 // one is due. Wait up to that time.
1609 due_time = check_due_timer();
1610 if (typebuf.tb_change_cnt != tb_change_cnt)
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001611 {
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001612 // timer may have used feedkeys().
1613 return FALSE;
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001614 }
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001615 if (due_time > 0 && dwWaitTime > (DWORD)due_time)
1616 dwWaitTime = due_time;
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001617 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001618# endif
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001619 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001620# ifdef FEAT_CLIENTSERVER
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001621 // Wait for either an event on the console input or a
1622 // message in the client-server window.
1623 msg_wait_for_multiple_objects(1, &g_hConIn, FALSE,
1624 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001625# else
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001626 wait_for_single_object(g_hConIn, dwWaitTime)
1627 != WAIT_OBJECT_0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001628# endif
Bram Moolenaar1f20daa2019-01-19 21:12:24 +01001629 )
1630 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 }
1632
1633 cRecords = 0;
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001634 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001636# ifdef FEAT_MBYTE_IME
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 if (State & CMDLINE && msg_row == Rows - 1)
1638 {
1639 CONSOLE_SCREEN_BUFFER_INFO csbi;
1640
1641 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
1642 {
1643 if (csbi.dwCursorPosition.Y != msg_row)
1644 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001645 // The screen is now messed up, must redraw the
1646 // command line and later all the windows.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 redraw_all_later(CLEAR);
1648 cmdline_row -= (msg_row - csbi.dwCursorPosition.Y);
1649 redrawcmd();
1650 }
1651 }
1652 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001653# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654
1655 if (cRecords > 0)
1656 {
1657 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown)
1658 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001659# ifdef FEAT_MBYTE_IME
Bram Moolenaar0f873732019-12-05 20:28:46 +01001660 // Windows IME sends two '\n's with only one 'ENTER'. First:
1661 // wVirtualKeyCode == 13. second: wVirtualKeyCode == 0
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001662 if (ir.Event.KeyEvent.UChar == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 && ir.Event.KeyEvent.wVirtualKeyCode == 13)
1664 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001665 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 continue;
1667 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001668# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2,
1670 NULL, FALSE))
1671 return TRUE;
1672 }
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
1676 if (ir.EventType == FOCUS_EVENT)
1677 handle_focus_event(ir);
1678 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
Bram Moolenaarc33ecb22018-02-11 16:40:45 +01001679 {
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001680 COORD dwSize = ir.Event.WindowBufferSizeEvent.dwSize;
1681
Bram Moolenaar36698e32019-12-11 22:57:40 +01001682 // Only call shell_resized() when the size actually changed to
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001683 // avoid the screen is cleared.
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001684 if (dwSize.X != Columns || dwSize.Y != Rows)
1685 {
1686 CONSOLE_SCREEN_BUFFER_INFO csbi;
1687 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
Bram Moolenaar36698e32019-12-11 22:57:40 +01001688 dwSize.X = csbi.srWindow.Right - csbi.srWindow.Left + 1;
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001689 dwSize.Y = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
Bram Moolenaar36698e32019-12-11 22:57:40 +01001690 if (dwSize.X != Columns || dwSize.Y != Rows)
1691 {
1692 ResizeConBuf(g_hConOut, dwSize);
1693 shell_resized();
1694 }
Bram Moolenaar78d21da2019-02-17 15:00:52 +01001695 }
Bram Moolenaarc33ecb22018-02-11 16:40:45 +01001696 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 else if (ir.EventType == MOUSE_EVENT
1698 && decode_mouse_event(&ir.Event.MouseEvent))
1699 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 }
1701 else if (msec == 0)
1702 break;
1703 }
1704
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001705# ifdef FEAT_CLIENTSERVER
Bram Moolenaar0f873732019-12-05 20:28:46 +01001706 // Something might have been received while we were waiting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 if (input_available())
1708 return TRUE;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001709# endif
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001710
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 return FALSE;
1712}
1713
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714/*
1715 * return non-zero if a character is available
1716 */
1717 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001718mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001720# ifdef VIMDLL
1721 if (gui.in_use)
1722 return TRUE;
1723# endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001724 return WaitForChar(0L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001726
1727# if defined(FEAT_TERMINAL) || defined(PROTO)
1728/*
1729 * Check for any pending input or messages.
1730 */
1731 int
1732mch_check_messages(void)
1733{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001734# ifdef VIMDLL
1735 if (gui.in_use)
1736 return TRUE;
1737# endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001738 return WaitForChar(0L, TRUE);
1739}
1740# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741
1742/*
1743 * Create the console input. Used when reading stdin doesn't work.
1744 */
1745 static void
1746create_conin(void)
1747{
1748 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE,
1749 FILE_SHARE_READ|FILE_SHARE_WRITE,
1750 (LPSECURITY_ATTRIBUTES) NULL,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001751 OPEN_EXISTING, 0, (HANDLE)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 did_create_conin = TRUE;
1753}
1754
1755/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001756 * Get a keystroke or a mouse event, use a blocking wait.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001758 static WCHAR
1759tgetch(int *pmodifiers, WCHAR *pch2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760{
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001761 WCHAR ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762
1763 for (;;)
1764 {
1765 INPUT_RECORD ir;
1766 DWORD cRecords = 0;
1767
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001768# ifdef FEAT_CLIENTSERVER
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001769 (void)WaitForChar(-1L, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 if (input_available())
1771 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 if (g_nMouseClick != -1)
1773 return 0;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001774# endif
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001775 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 {
1777 if (did_create_conin)
1778 read_error_exit();
1779 create_conin();
1780 continue;
1781 }
1782
1783 if (ir.EventType == KEY_EVENT)
1784 {
1785 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2,
1786 pmodifiers, TRUE))
1787 return ch;
1788 }
1789 else if (ir.EventType == FOCUS_EVENT)
1790 handle_focus_event(ir);
1791 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
1792 shell_resized();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 else if (ir.EventType == MOUSE_EVENT)
1794 {
1795 if (decode_mouse_event(&ir.Event.MouseEvent))
1796 return 0;
1797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 }
1799}
Bram Moolenaar0f873732019-12-05 20:28:46 +01001800#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801
1802
1803/*
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02001804 * mch_inchar(): low-level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 * Get one or more characters from the keyboard or the mouse.
1806 * If time == 0, do not wait for characters.
1807 * If time == n, wait a short time for characters.
1808 * If time == -1, wait forever for characters.
1809 * Returns the number of characters read into buf.
1810 */
1811 int
1812mch_inchar(
Bram Moolenaar1266d672017-02-01 13:43:36 +01001813 char_u *buf UNUSED,
1814 int maxlen UNUSED,
1815 long time UNUSED,
1816 int tb_change_cnt UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001818#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819
1820 int len;
1821 int c;
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001822# ifdef VIMDLL
1823// Extra space for maximum three CSIs. E.g. U+1B6DB -> 0xF0 0x9B 0x9B 0x9B.
1824# define TYPEAHEADSPACE 6
1825# else
1826# define TYPEAHEADSPACE 0
1827# endif
1828# define TYPEAHEADLEN (20 + TYPEAHEADSPACE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001829 static char_u typeahead[TYPEAHEADLEN]; // previously typed bytes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 static int typeaheadlen = 0;
1831
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001832# ifdef VIMDLL
1833 if (gui.in_use)
1834 return 0;
1835# endif
1836
Bram Moolenaar0f873732019-12-05 20:28:46 +01001837 // First use any typeahead that was kept because "buf" was too small.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 if (typeaheadlen > 0)
1839 goto theend;
1840
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 if (time >= 0)
1842 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001843 if (!WaitForChar(time, FALSE)) // no character available
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01001846 else // time == -1, wait forever
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001848 mch_set_winsize_now(); // Allow winsize changes from now on
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849
Bram Moolenaar3918c952005-03-15 22:34:55 +00001850 /*
1851 * If there is no character available within 2 seconds (default)
1852 * write the autoscript file to disk. Or cause the CursorHold event
1853 * to be triggered.
1854 */
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001855 if (!WaitForChar(p_ut, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 {
Bram Moolenaard35f9712005-12-18 22:02:33 +00001857 if (trigger_cursorhold() && maxlen >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 {
Bram Moolenaar3918c952005-03-15 22:34:55 +00001859 buf[0] = K_SPECIAL;
1860 buf[1] = KS_EXTRA;
1861 buf[2] = (int)KE_CURSORHOLD;
1862 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 }
Bram Moolenaar702517d2005-06-27 22:34:07 +00001864 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 }
1866 }
1867
1868 /*
1869 * Try to read as many characters as there are, until the buffer is full.
1870 */
1871
Bram Moolenaar0f873732019-12-05 20:28:46 +01001872 // we will get at least one key. Get more if they are available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 g_fCBrkPressed = FALSE;
1874
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001875# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 if (fdDump)
1877 fputc('[', fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001878# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879
Bram Moolenaar0f873732019-12-05 20:28:46 +01001880 // Keep looping until there is something in the typeahead buffer and more
1881 // to get and still room in the buffer (up to two bytes for a char and
1882 // three bytes for a modifier).
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02001883 while ((typeaheadlen == 0 || WaitForChar(0L, FALSE))
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001884 && typeaheadlen + 5 + TYPEAHEADSPACE <= TYPEAHEADLEN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 {
1886 if (typebuf_changed(tb_change_cnt))
1887 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001888 // "buf" may be invalid now if a client put something in the
1889 // typeahead buffer and "buf" is in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 typeaheadlen = 0;
1891 break;
1892 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 if (g_nMouseClick != -1)
1894 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001895# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 if (fdDump)
1897 fprintf(fdDump, "{%02x @ %d, %d}",
1898 g_nMouseClick, g_xMouse, g_yMouse);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001899# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 typeahead[typeaheadlen++] = ESC + 128;
1901 typeahead[typeaheadlen++] = 'M';
1902 typeahead[typeaheadlen++] = g_nMouseClick;
1903 typeahead[typeaheadlen++] = g_xMouse + '!';
1904 typeahead[typeaheadlen++] = g_yMouse + '!';
1905 g_nMouseClick = -1;
1906 }
1907 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001909 WCHAR ch2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 int modifiers = 0;
1911
1912 c = tgetch(&modifiers, &ch2);
1913
1914 if (typebuf_changed(tb_change_cnt))
1915 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001916 // "buf" may be invalid now if a client put something in the
1917 // typeahead buffer and "buf" is in the typeahead buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 typeaheadlen = 0;
1919 break;
1920 }
1921
1922 if (c == Ctrl_C && ctrl_c_interrupts)
1923 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001924# if defined(FEAT_CLIENTSERVER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 trash_input_buf();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01001926# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 got_int = TRUE;
1928 }
1929
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 if (g_nMouseClick == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 {
1932 int n = 1;
1933
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001934 if (ch2 == NUL)
1935 {
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001936 int i, j;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001937 char_u *p;
1938 WCHAR ch[2];
1939
1940 ch[0] = c;
Bram Moolenaar0f873732019-12-05 20:28:46 +01001941 if (c >= 0xD800 && c <= 0xDBFF) // High surrogate
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001942 {
1943 ch[1] = tgetch(&modifiers, &ch2);
1944 n++;
1945 }
1946 p = utf16_to_enc(ch, &n);
1947 if (p != NULL)
1948 {
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001949 for (i = 0, j = 0; i < n; i++)
1950 {
1951 typeahead[typeaheadlen + j++] = p[i];
1952# ifdef VIMDLL
1953 if (p[i] == CSI)
1954 {
1955 typeahead[typeaheadlen + j++] = KS_EXTRA;
1956 typeahead[typeaheadlen + j++] = KE_CSI;
1957 }
1958# endif
1959 }
1960 n = j;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001961 vim_free(p);
1962 }
1963 }
1964 else
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001965 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001966 typeahead[typeaheadlen] = c;
Bram Moolenaar8f027fe2020-03-04 23:21:35 +01001967# ifdef VIMDLL
1968 if (c == CSI)
1969 {
1970 typeahead[typeaheadlen + 1] = KS_EXTRA;
1971 typeahead[typeaheadlen + 2] = KE_CSI;
1972 n = 3;
1973 }
1974# endif
1975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 if (ch2 != NUL)
1977 {
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +02001978 if (c == K_NUL)
Bram Moolenaarfeeb4d02017-12-05 15:14:46 +01001979 {
Bram Moolenaar0cc7b2d2018-10-07 15:49:56 +02001980 switch (ch2)
1981 {
1982 case (WCHAR)'\324': // SHIFT+Insert
1983 case (WCHAR)'\325': // CTRL+Insert
1984 case (WCHAR)'\327': // SHIFT+Delete
1985 case (WCHAR)'\330': // CTRL+Delete
1986 typeahead[typeaheadlen + n] = (char_u)ch2;
1987 n++;
1988 break;
1989
1990 default:
1991 typeahead[typeaheadlen + n] = 3;
1992 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
1993 n += 2;
1994 break;
1995 }
Bram Moolenaarfeeb4d02017-12-05 15:14:46 +01001996 }
1997 else
1998 {
1999 typeahead[typeaheadlen + n] = 3;
2000 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
2001 n += 2;
2002 }
Bram Moolenaar45500912014-07-09 20:51:07 +02002003 }
2004
Bram Moolenaar0f873732019-12-05 20:28:46 +01002005 // Use the ALT key to set the 8th bit of the character
2006 // when it's one byte, the 8th bit isn't set yet and not
2007 // using a double-byte encoding (would become a lead
2008 // byte).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 if ((modifiers & MOD_MASK_ALT)
2010 && n == 1
2011 && (typeahead[typeaheadlen] & 0x80) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 && !enc_dbcs
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013 )
2014 {
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00002015 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
2016 typeahead + typeaheadlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 modifiers &= ~MOD_MASK_ALT;
2018 }
2019
2020 if (modifiers != 0)
2021 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002022 // Prepend modifiers to the character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 mch_memmove(typeahead + typeaheadlen + 3,
2024 typeahead + typeaheadlen, n);
2025 typeahead[typeaheadlen++] = K_SPECIAL;
2026 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
2027 typeahead[typeaheadlen++] = modifiers;
2028 }
2029
2030 typeaheadlen += n;
2031
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002032# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 if (fdDump)
2034 fputc(c, fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002035# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 }
2037 }
2038 }
2039
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002040# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 if (fdDump)
2042 {
2043 fputs("]\n", fdDump);
2044 fflush(fdDump);
2045 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002046# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048theend:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002049 // Move typeahead to "buf", as much as fits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 len = 0;
2051 while (len < maxlen && typeaheadlen > 0)
2052 {
2053 buf[len++] = typeahead[0];
2054 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
2055 }
Bram Moolenaar7ca86fe2020-09-03 19:25:11 +02002056# ifdef FEAT_JOB_CHANNEL
2057 if (len > 0)
2058 {
2059 buf[len] = NUL;
2060 ch_log(NULL, "raw key input: \"%s\"", buf);
2061 }
2062# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 return len;
2064
Bram Moolenaar0f873732019-12-05 20:28:46 +01002065#else // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 return 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002067#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068}
2069
Bram Moolenaar82881492012-11-20 16:53:39 +01002070#ifndef PROTO
2071# ifndef __MINGW32__
Bram Moolenaar0f873732019-12-05 20:28:46 +01002072# include <shellapi.h> // required for FindExecutable()
Bram Moolenaar82881492012-11-20 16:53:39 +01002073# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074#endif
2075
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002076/*
Bram Moolenaar95da1362020-05-30 18:37:55 +02002077 * Return TRUE if "name" is an executable file, FALSE if not or it doesn't exist.
Bram Moolenaar43663192017-03-05 14:29:12 +01002078 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2079 * the allocated memory.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00002080 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002081 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 static int
Bram Moolenaar95da1362020-05-30 18:37:55 +02002083executable_file(char *name, char_u **path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084{
Bram Moolenaar95da1362020-05-30 18:37:55 +02002085 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name))
Bram Moolenaar43663192017-03-05 14:29:12 +01002086 {
Bram Moolenaar95da1362020-05-30 18:37:55 +02002087 if (path != NULL)
2088 *path = FullName_save((char_u *)name, FALSE);
2089 return TRUE;
2090 }
2091 return FALSE;
2092}
2093
2094/*
2095 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
2096 * If "use_path" is FALSE: Return TRUE if "name" exists.
2097 * If "use_pathext" is TRUE search "name" with extensions in $PATHEXT.
2098 * When returning TRUE and "path" is not NULL save the path and set "*path" to
2099 * the allocated memory.
2100 */
2101 static int
2102executable_exists(char *name, char_u **path, int use_path, int use_pathext)
2103{
2104 // WinNT and later can use _MAX_PATH wide characters for a pathname, which
2105 // means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
2106 // UTF-8.
2107 char_u buf[_MAX_PATH * 3];
2108 size_t len = STRLEN(name);
2109 size_t tmplen;
2110 char_u *p, *e, *e2;
2111 char_u *pathbuf = NULL;
2112 char_u *pathext = NULL;
2113 char_u *pathextbuf = NULL;
2114 int noext = FALSE;
2115 int retval = FALSE;
2116
2117 if (len >= sizeof(buf)) // safety check
Bram Moolenaar43663192017-03-05 14:29:12 +01002118 return FALSE;
Bram Moolenaar95da1362020-05-30 18:37:55 +02002119
2120 // Using the name directly when a Unix-shell like 'shell'.
2121 if (strstr((char *)gettail(p_sh), "sh") != NULL)
2122 noext = TRUE;
2123
2124 if (use_pathext)
2125 {
2126 pathext = mch_getenv("PATHEXT");
2127 if (pathext == NULL)
2128 pathext = (char_u *)".com;.exe;.bat;.cmd";
2129
2130 if (noext == FALSE)
2131 {
2132 /*
2133 * Loop over all extensions in $PATHEXT.
2134 * Check "name" ends with extension.
2135 */
2136 p = pathext;
2137 while (*p)
2138 {
2139 if (p[0] == ';'
2140 || (p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2141 {
2142 // Skip empty or single ".".
2143 ++p;
2144 continue;
2145 }
2146 e = vim_strchr(p, ';');
2147 if (e == NULL)
2148 e = p + STRLEN(p);
2149 tmplen = e - p;
2150
2151 if (_strnicoll(name + len - tmplen, (char *)p, tmplen) == 0)
2152 {
2153 noext = TRUE;
2154 break;
2155 }
2156
2157 p = e;
2158 }
2159 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002160 }
2161
Bram Moolenaar95da1362020-05-30 18:37:55 +02002162 // Prepend single "." to pathext, it's means no extension added.
2163 if (pathext == NULL)
2164 pathext = (char_u *)".";
2165 else if (noext == TRUE)
2166 {
2167 if (pathextbuf == NULL)
2168 pathextbuf = alloc(STRLEN(pathext) + 3);
2169 if (pathextbuf == NULL)
2170 {
2171 retval = FALSE;
2172 goto theend;
2173 }
2174 STRCPY(pathextbuf, ".;");
2175 STRCAT(pathextbuf, pathext);
2176 pathext = pathextbuf;
2177 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02002178
Bram Moolenaar95da1362020-05-30 18:37:55 +02002179 // Use $PATH when "use_path" is TRUE and "name" is basename.
2180 if (use_path && gettail((char_u *)name) == (char_u *)name)
2181 {
2182 p = mch_getenv("PATH");
2183 if (p != NULL)
2184 {
2185 pathbuf = alloc(STRLEN(p) + 3);
2186 if (pathbuf == NULL)
2187 {
2188 retval = FALSE;
2189 goto theend;
2190 }
2191 STRCPY(pathbuf, ".;");
2192 STRCAT(pathbuf, p);
2193 }
2194 }
2195
2196 /*
2197 * Walk through all entries in $PATH to check if "name" exists there and
2198 * is an executable file.
2199 */
2200 p = (pathbuf != NULL) ? pathbuf : (char_u *)".";
2201 while (*p)
2202 {
2203 if (*p == ';') // Skip empty entry
2204 {
2205 ++p;
2206 continue;
2207 }
2208 e = vim_strchr(p, ';');
2209 if (e == NULL)
2210 e = p + STRLEN(p);
2211
2212 if (e - p + len + 2 > sizeof(buf))
2213 {
2214 retval = FALSE;
2215 goto theend;
2216 }
2217 // A single "." that means current dir.
2218 if (e - p == 1 && *p == '.')
2219 STRCPY(buf, name);
2220 else
2221 {
2222 vim_strncpy(buf, p, e - p);
2223 add_pathsep(buf);
2224 STRCAT(buf, name);
2225 }
2226 tmplen = STRLEN(buf);
2227
2228 /*
2229 * Loop over all extensions in $PATHEXT.
2230 * Check "name" with extension added.
2231 */
2232 p = pathext;
2233 while (*p)
2234 {
2235 if (*p == ';')
2236 {
2237 // Skip empty entry
2238 ++p;
2239 continue;
2240 }
2241 e2 = vim_strchr(p, (int)';');
2242 if (e2 == NULL)
2243 e2 = p + STRLEN(p);
2244
2245 if (!(p[0] == '.' && (p[1] == NUL || p[1] == ';')))
2246 {
2247 // Not a single "." that means no extension is added.
2248 if (e2 - p + tmplen + 1 > sizeof(buf))
2249 {
2250 retval = FALSE;
2251 goto theend;
2252 }
2253 vim_strncpy(buf + tmplen, p, e2 - p);
2254 }
2255 if (executable_file((char *)buf, path))
2256 {
2257 retval = TRUE;
2258 goto theend;
2259 }
2260
2261 p = e2;
2262 }
2263
2264 p = e;
2265 }
2266
2267theend:
2268 free(pathextbuf);
2269 free(pathbuf);
2270 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271}
2272
Bram Moolenaar1eed5322019-02-26 17:03:54 +01002273#if (defined(__MINGW32__) && __MSVCRT_VERSION__ >= 0x800) || \
2274 (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002275/*
2276 * Bad parameter handler.
2277 *
2278 * Certain MS CRT functions will intentionally crash when passed invalid
2279 * parameters to highlight possible security holes. Setting this function as
2280 * the bad parameter handler will prevent the crash.
2281 *
2282 * In debug builds the parameters contain CRT information that might help track
2283 * down the source of a problem, but in non-debug builds the arguments are all
2284 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
2285 * worth allowing these to make debugging of issues easier.
2286 */
2287 static void
2288bad_param_handler(const wchar_t *expression,
2289 const wchar_t *function,
2290 const wchar_t *file,
2291 unsigned int line,
2292 uintptr_t pReserved)
2293{
2294}
2295
2296# define SET_INVALID_PARAM_HANDLER \
2297 ((void)_set_invalid_parameter_handler(bad_param_handler))
2298#else
2299# define SET_INVALID_PARAM_HANDLER
2300#endif
2301
Bram Moolenaar4f974752019-02-17 17:44:42 +01002302#ifdef FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303
2304/*
2305 * GUI version of mch_init().
2306 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002307 static void
2308mch_init_g(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002310# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002312# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313
Bram Moolenaar0f873732019-12-05 20:28:46 +01002314 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002315 SET_INVALID_PARAM_HANDLER;
2316
Bram Moolenaar0f873732019-12-05 20:28:46 +01002317 // Let critical errors result in a failure, not in a dialog box. Required
2318 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 SetErrorMode(SEM_FAILCRITICALERRORS);
2320
Bram Moolenaar0f873732019-12-05 20:28:46 +01002321 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322
Bram Moolenaar0f873732019-12-05 20:28:46 +01002323 // Specify window size. Is there a place to get the default from?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 Rows = 25;
2325 Columns = 80;
2326
Bram Moolenaar0f873732019-12-05 20:28:46 +01002327 // Look for 'vimrun'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328 {
2329 char_u vimrun_location[_MAX_PATH + 4];
2330
Bram Moolenaar0f873732019-12-05 20:28:46 +01002331 // First try in same directory as gvim.exe
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 STRCPY(vimrun_location, exe_name);
2333 STRCPY(gettail(vimrun_location), "vimrun.exe");
2334 if (mch_getperm(vimrun_location) >= 0)
2335 {
2336 if (*skiptowhite(vimrun_location) != NUL)
2337 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002338 // Enclose path with white space in double quotes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 mch_memmove(vimrun_location + 1, vimrun_location,
2340 STRLEN(vimrun_location) + 1);
2341 *vimrun_location = '"';
2342 STRCPY(gettail(vimrun_location), "vimrun\" ");
2343 }
2344 else
2345 STRCPY(gettail(vimrun_location), "vimrun ");
2346
2347 vimrun_path = (char *)vim_strsave(vimrun_location);
2348 s_dont_use_vimrun = FALSE;
2349 }
Bram Moolenaar95da1362020-05-30 18:37:55 +02002350 else if (executable_exists("vimrun.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 s_dont_use_vimrun = FALSE;
2352
Bram Moolenaar0f873732019-12-05 20:28:46 +01002353 // Don't give the warning for a missing vimrun.exe right now, but only
2354 // when vimrun was supposed to be used. Don't bother people that do
2355 // not need vimrun.exe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 if (s_dont_use_vimrun)
2357 need_vimrun_warning = TRUE;
2358 }
2359
2360 /*
2361 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2362 * Otherwise the default "findstr /n" is used.
2363 */
Bram Moolenaar95da1362020-05-30 18:37:55 +02002364 if (!executable_exists("findstr.exe", NULL, TRUE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2366
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002367# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002368 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002369# endif
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01002370
2371 vtp_flag_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372}
2373
2374
Bram Moolenaar0f873732019-12-05 20:28:46 +01002375#endif // FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002376
2377#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002379# define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2380# define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381
2382/*
2383 * ClearConsoleBuffer()
2384 * Description:
2385 * Clears the entire contents of the console screen buffer, using the
2386 * specified attribute.
2387 * Returns:
2388 * TRUE on success
2389 */
2390 static BOOL
2391ClearConsoleBuffer(WORD wAttribute)
2392{
2393 CONSOLE_SCREEN_BUFFER_INFO csbi;
2394 COORD coord;
2395 DWORD NumCells, dummy;
2396
2397 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2398 return FALSE;
2399
2400 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2401 coord.X = 0;
2402 coord.Y = 0;
2403 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2404 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2407 coord, &dummy))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409
2410 return TRUE;
2411}
2412
2413/*
2414 * FitConsoleWindow()
2415 * Description:
2416 * Checks if the console window will fit within given buffer dimensions.
2417 * Also, if requested, will shrink the window to fit.
2418 * Returns:
2419 * TRUE on success
2420 */
2421 static BOOL
2422FitConsoleWindow(
2423 COORD dwBufferSize,
2424 BOOL WantAdjust)
2425{
2426 CONSOLE_SCREEN_BUFFER_INFO csbi;
2427 COORD dwWindowSize;
2428 BOOL NeedAdjust = FALSE;
2429
2430 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2431 {
2432 /*
2433 * A buffer resize will fail if the current console window does
2434 * not lie completely within that buffer. To avoid this, we might
2435 * have to move and possibly shrink the window.
2436 */
2437 if (csbi.srWindow.Right >= dwBufferSize.X)
2438 {
2439 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2440 if (dwWindowSize.X > dwBufferSize.X)
2441 dwWindowSize.X = dwBufferSize.X;
2442 csbi.srWindow.Right = dwBufferSize.X - 1;
2443 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2444 NeedAdjust = TRUE;
2445 }
2446 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2447 {
2448 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2449 if (dwWindowSize.Y > dwBufferSize.Y)
2450 dwWindowSize.Y = dwBufferSize.Y;
2451 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2452 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2453 NeedAdjust = TRUE;
2454 }
2455 if (NeedAdjust && WantAdjust)
2456 {
2457 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2458 return FALSE;
2459 }
2460 return TRUE;
2461 }
2462
2463 return FALSE;
2464}
2465
2466typedef struct ConsoleBufferStruct
2467{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002468 BOOL IsValid;
2469 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002470 PCHAR_INFO Buffer;
2471 COORD BufferSize;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002472 PSMALL_RECT Regions;
2473 int NumRegions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474} ConsoleBuffer;
2475
2476/*
2477 * SaveConsoleBuffer()
2478 * Description:
2479 * Saves important information about the console buffer, including the
2480 * actual buffer contents. The saved information is suitable for later
2481 * restoration by RestoreConsoleBuffer().
2482 * Returns:
2483 * TRUE if all information was saved; FALSE otherwise
2484 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2485 */
2486 static BOOL
2487SaveConsoleBuffer(
2488 ConsoleBuffer *cb)
2489{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002490 DWORD NumCells;
2491 COORD BufferCoord;
2492 SMALL_RECT ReadRegion;
2493 WORD Y, Y_incr;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002494 int i, numregions;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002495
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496 if (cb == NULL)
2497 return FALSE;
2498
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002499 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 {
2501 cb->IsValid = FALSE;
2502 return FALSE;
2503 }
2504 cb->IsValid = TRUE;
2505
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002506 /*
2507 * Allocate a buffer large enough to hold the entire console screen
2508 * buffer. If this ConsoleBuffer structure has already been initialized
2509 * with a buffer of the correct size, then just use that one.
2510 */
2511 if (!cb->IsValid || cb->Buffer == NULL ||
2512 cb->BufferSize.X != cb->Info.dwSize.X ||
2513 cb->BufferSize.Y != cb->Info.dwSize.Y)
2514 {
2515 cb->BufferSize.X = cb->Info.dwSize.X;
2516 cb->BufferSize.Y = cb->Info.dwSize.Y;
2517 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2518 vim_free(cb->Buffer);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002519 cb->Buffer = ALLOC_MULT(CHAR_INFO, NumCells);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002520 if (cb->Buffer == NULL)
2521 return FALSE;
2522 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523
2524 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002525 * We will now copy the console screen buffer into our buffer.
2526 * ReadConsoleOutput() seems to be limited as far as how much you
2527 * can read at a time. Empirically, this number seems to be about
2528 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2529 * in chunks until it is all copied. The chunks will all have the
2530 * same horizontal characteristics, so initialize them now. The
2531 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002533 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002534 ReadRegion.Left = 0;
2535 ReadRegion.Right = cb->Info.dwSize.X - 1;
2536 Y_incr = 12000 / cb->Info.dwSize.X;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002537
2538 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr;
2539 if (cb->Regions == NULL || numregions != cb->NumRegions)
2540 {
2541 cb->NumRegions = numregions;
2542 vim_free(cb->Regions);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002543 cb->Regions = ALLOC_MULT(SMALL_RECT, cb->NumRegions);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002544 if (cb->Regions == NULL)
2545 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002546 VIM_CLEAR(cb->Buffer);
Bram Moolenaar444fda22017-08-11 20:37:00 +02002547 return FALSE;
2548 }
2549 }
2550
2551 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002553 /*
2554 * Read into position (0, Y) in our buffer.
2555 */
2556 BufferCoord.Y = Y;
2557 /*
2558 * Read the region whose top left corner is (0, Y) and whose bottom
2559 * right corner is (width - 1, Y + Y_incr - 1). This should define
2560 * a region of size width by Y_incr. Don't worry if this region is
2561 * too large for the remaining buffer; it will be cropped.
2562 */
2563 ReadRegion.Top = Y;
2564 ReadRegion.Bottom = Y + Y_incr - 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002565 if (!ReadConsoleOutputW(g_hConOut, // output handle
2566 cb->Buffer, // our buffer
2567 cb->BufferSize, // dimensions of our buffer
2568 BufferCoord, // offset in our buffer
2569 &ReadRegion)) // region to save
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002570 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01002571 VIM_CLEAR(cb->Buffer);
2572 VIM_CLEAR(cb->Regions);
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002573 return FALSE;
2574 }
Bram Moolenaar444fda22017-08-11 20:37:00 +02002575 cb->Regions[i] = ReadRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 }
2577
2578 return TRUE;
2579}
2580
2581/*
2582 * RestoreConsoleBuffer()
2583 * Description:
2584 * Restores important information about the console buffer, including the
2585 * actual buffer contents, if desired. The information to restore is in
2586 * the same format used by SaveConsoleBuffer().
2587 * Returns:
2588 * TRUE on success
2589 */
2590 static BOOL
2591RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002592 ConsoleBuffer *cb,
2593 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002595 COORD BufferCoord;
2596 SMALL_RECT WriteRegion;
Bram Moolenaar444fda22017-08-11 20:37:00 +02002597 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598
2599 if (cb == NULL || !cb->IsValid)
2600 return FALSE;
2601
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002602 /*
2603 * Before restoring the buffer contents, clear the current buffer, and
2604 * restore the cursor position and window information. Doing this now
2605 * prevents old buffer contents from "flashing" onto the screen.
2606 */
2607 if (RestoreScreen)
2608 ClearConsoleBuffer(cb->Info.wAttributes);
2609
2610 FitConsoleWindow(cb->Info.dwSize, TRUE);
2611 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2612 return FALSE;
2613 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2614 return FALSE;
2615
2616 if (!RestoreScreen)
2617 {
2618 /*
2619 * No need to restore the screen buffer contents, so we're done.
2620 */
2621 return TRUE;
2622 }
2623
2624 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2625 return FALSE;
2626 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2627 return FALSE;
2628
2629 /*
2630 * Restore the screen buffer contents.
2631 */
2632 if (cb->Buffer != NULL)
2633 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002634 for (i = 0; i < cb->NumRegions; i++)
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002635 {
Bram Moolenaar444fda22017-08-11 20:37:00 +02002636 BufferCoord.X = cb->Regions[i].Left;
2637 BufferCoord.Y = cb->Regions[i].Top;
2638 WriteRegion = cb->Regions[i];
Bram Moolenaar0f873732019-12-05 20:28:46 +01002639 if (!WriteConsoleOutputW(g_hConOut, // output handle
2640 cb->Buffer, // our buffer
2641 cb->BufferSize, // dimensions of our buffer
2642 BufferCoord, // offset in our buffer
2643 &WriteRegion)) // region to restore
Bram Moolenaar444fda22017-08-11 20:37:00 +02002644 return FALSE;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002645 }
2646 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647
2648 return TRUE;
2649}
2650
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002651# define FEAT_RESTORE_ORIG_SCREEN
2652# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002653static ConsoleBuffer g_cbOrig = { 0 };
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002654# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655static ConsoleBuffer g_cbNonTermcap = { 0 };
2656static ConsoleBuffer g_cbTermcap = { 0 };
2657
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002658# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659char g_szOrigTitle[256] = { 0 };
Bram Moolenaar0f873732019-12-05 20:28:46 +01002660HWND g_hWnd = NULL; // also used in os_mswin.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661static HICON g_hOrigIconSmall = NULL;
2662static HICON g_hOrigIcon = NULL;
2663static HICON g_hVimIcon = NULL;
2664static BOOL g_fCanChangeIcon = FALSE;
2665
Bram Moolenaar0f873732019-12-05 20:28:46 +01002666// ICON* are not defined in VC++ 4.0
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002667# ifndef ICON_SMALL
2668# define ICON_SMALL 0
2669# endif
2670# ifndef ICON_BIG
2671# define ICON_BIG 1
2672# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673/*
2674 * GetConsoleIcon()
2675 * Description:
2676 * Attempts to retrieve the small icon and/or the big icon currently in
2677 * use by a given window.
2678 * Returns:
2679 * TRUE on success
2680 */
2681 static BOOL
2682GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002683 HWND hWnd,
2684 HICON *phIconSmall,
2685 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686{
2687 if (hWnd == NULL)
2688 return FALSE;
2689
2690 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002691 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2692 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002694 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2695 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 return TRUE;
2697}
2698
2699/*
2700 * SetConsoleIcon()
2701 * Description:
2702 * Attempts to change the small icon and/or the big icon currently in
2703 * use by a given window.
2704 * Returns:
2705 * TRUE on success
2706 */
2707 static BOOL
2708SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002709 HWND hWnd,
2710 HICON hIconSmall,
2711 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 if (hWnd == NULL)
2714 return FALSE;
2715
2716 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002717 SendMessage(hWnd, WM_SETICON,
2718 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002720 SendMessage(hWnd, WM_SETICON,
2721 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 return TRUE;
2723}
2724
2725/*
2726 * SaveConsoleTitleAndIcon()
2727 * Description:
2728 * Saves the current console window title in g_szOrigTitle, for later
2729 * restoration. Also, attempts to obtain a handle to the console window,
2730 * and use it to save the small and big icons currently in use by the
2731 * console window. This is not always possible on some versions of Windows;
2732 * nor is it possible when running Vim remotely using Telnet (since the
2733 * console window the user sees is owned by a remote process).
2734 */
2735 static void
2736SaveConsoleTitleAndIcon(void)
2737{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002738 // Save the original title.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2740 return;
2741
2742 /*
2743 * Obtain a handle to the console window using GetConsoleWindow() from
2744 * KERNEL32.DLL; we need to handle in order to change the window icon.
2745 * This function only exists on NT-based Windows, starting with Windows
2746 * 2000. On older operating systems, we can't change the window icon
2747 * anyway.
2748 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002749 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 if (g_hWnd == NULL)
2751 return;
2752
Bram Moolenaar0f873732019-12-05 20:28:46 +01002753 // Save the original console window icon.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2755 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2756 return;
2757
Bram Moolenaar0f873732019-12-05 20:28:46 +01002758 // Extract the first icon contained in the Vim executable.
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002759 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002760 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 if (g_hVimIcon != NULL)
2762 g_fCanChangeIcon = TRUE;
2763}
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002764# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765
2766static int g_fWindInitCalled = FALSE;
2767static int g_fTermcapMode = FALSE;
2768static CONSOLE_CURSOR_INFO g_cci;
2769static DWORD g_cmodein = 0;
2770static DWORD g_cmodeout = 0;
2771
2772/*
2773 * non-GUI version of mch_init().
2774 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002775 static void
2776mch_init_c(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777{
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002778# ifndef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002779 CONSOLE_SCREEN_BUFFER_INFO csbi;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002780# endif
2781# ifndef __MINGW32__
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 extern int _fmode;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002783# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784
Bram Moolenaar0f873732019-12-05 20:28:46 +01002785 // Silently handle invalid parameters to CRT functions
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002786 SET_INVALID_PARAM_HANDLER;
2787
Bram Moolenaar0f873732019-12-05 20:28:46 +01002788 // Let critical errors result in a failure, not in a dialog box. Required
2789 // for the timestamp test to work on removed floppies.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 SetErrorMode(SEM_FAILCRITICALERRORS);
2791
Bram Moolenaar0f873732019-12-05 20:28:46 +01002792 _fmode = O_BINARY; // we do our own CR-LF translation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 out_flush();
2794
Bram Moolenaar0f873732019-12-05 20:28:46 +01002795 // Obtain handles for the standard Console I/O devices
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796 if (read_cmd_fd == 0)
2797 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2798 else
2799 create_conin();
2800 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2801
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002802# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar0f873732019-12-05 20:28:46 +01002803 // Save the initial console buffer for later restoration
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002804 SaveConsoleBuffer(&g_cbOrig);
2805 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002806# else
Bram Moolenaar0f873732019-12-05 20:28:46 +01002807 // Get current text attributes
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002808 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2809 g_attrCurrent = g_attrDefault = csbi.wAttributes;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002810# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 if (cterm_normal_fg_color == 0)
2812 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2813 if (cterm_normal_bg_color == 0)
2814 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2815
Bram Moolenaarbdace832019-03-02 10:13:42 +01002816 // Fg and Bg color index number at startup
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02002817 g_color_index_fg = g_attrDefault & 0xf;
2818 g_color_index_bg = (g_attrDefault >> 4) & 0xf;
2819
Bram Moolenaar0f873732019-12-05 20:28:46 +01002820 // set termcap codes to current text attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 update_tcap(g_attrCurrent);
2822
2823 GetConsoleCursorInfo(g_hConOut, &g_cci);
2824 GetConsoleMode(g_hConIn, &g_cmodein);
2825 GetConsoleMode(g_hConOut, &g_cmodeout);
2826
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002827# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 SaveConsoleTitleAndIcon();
2829 /*
2830 * Set both the small and big icons of the console window to Vim's icon.
2831 * Note that Vim presently only has one size of icon (32x32), but it
2832 * automatically gets scaled down to 16x16 when setting the small icon.
2833 */
2834 if (g_fCanChangeIcon)
2835 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002836# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837
2838 ui_get_shellsize();
2839
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002840# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 fdDump = fopen("dump", "wt");
2842
2843 if (fdDump)
2844 {
2845 time_t t;
2846
2847 time(&t);
2848 fputs(ctime(&t), fdDump);
2849 fflush(fdDump);
2850 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002851# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852
2853 g_fWindInitCalled = TRUE;
2854
Bram Moolenaar071d4272004-06-13 20:20:40 +00002855 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002857# ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002858 win_clip_init();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002859# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002860
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02002861 vtp_flag_init();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002862 vtp_init();
Bram Moolenaar06b7b582020-05-30 17:49:25 +02002863 wt_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864}
2865
2866/*
2867 * non-GUI version of mch_exit().
2868 * Shut down and exit with status `r'
2869 * Careful: mch_exit() may be called before mch_init()!
2870 */
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002871 static void
2872mch_exit_c(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002874 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875
Bram Moolenaarcafafb32018-02-22 21:07:09 +01002876 vtp_exit();
2877
Bram Moolenaar955f1982017-02-05 15:10:51 +01002878 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002879 if (g_fWindInitCalled)
2880 settmode(TMODE_COOK);
2881
Bram Moolenaar0f873732019-12-05 20:28:46 +01002882 ml_close_all(TRUE); // remove all memfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883
2884 if (g_fWindInitCalled)
2885 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002886# ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02002887 mch_restore_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 /*
2889 * Restore both the small and big icons of the console window to
2890 * what they were at startup. Don't do this when the window is
2891 * closed, Vim would hang here.
2892 */
2893 if (g_fCanChangeIcon && !g_fForceExit)
2894 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002895# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002897# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 if (fdDump)
2899 {
2900 time_t t;
2901
2902 time(&t);
2903 fputs(ctime(&t), fdDump);
2904 fclose(fdDump);
2905 }
2906 fdDump = NULL;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002907# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 }
2909
2910 SetConsoleCursorInfo(g_hConOut, &g_cci);
2911 SetConsoleMode(g_hConIn, g_cmodein);
2912 SetConsoleMode(g_hConOut, g_cmodeout);
2913
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002914# ifdef DYNAMIC_GETTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 dyn_libintl_end();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01002916# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917
2918 exit(r);
2919}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002920#endif // !FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002922 void
2923mch_init(void)
2924{
2925#ifdef VIMDLL
2926 if (gui.starting)
2927 mch_init_g();
2928 else
2929 mch_init_c();
2930#elif defined(FEAT_GUI_MSWIN)
2931 mch_init_g();
2932#else
2933 mch_init_c();
2934#endif
2935}
2936
2937 void
2938mch_exit(int r)
2939{
Bram Moolenaar173d8412020-04-19 14:02:26 +02002940#ifdef FEAT_NETBEANS_INTG
2941 netbeans_send_disconnect();
2942#endif
2943
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002944#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02002945 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002946 mch_exit_g(r);
2947 else
2948 mch_exit_c(r);
2949#elif defined(FEAT_GUI_MSWIN)
2950 mch_exit_g(r);
2951#else
2952 mch_exit_c(r);
2953#endif
2954}
2955
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956/*
2957 * Do we have an interactive window?
2958 */
2959 int
2960mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002961 int argc UNUSED,
2962 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963{
2964 get_exe_name();
2965
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002966#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002967 return OK; // GUI always has a tty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968#else
Bram Moolenaarafde13b2019-04-28 19:46:49 +02002969# ifdef VIMDLL
2970 if (gui.in_use)
2971 return OK;
2972# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 if (isatty(1))
2974 return OK;
2975 return FAIL;
2976#endif
2977}
2978
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002979/*
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01002980 * Set the case of the file name, if it already exists.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 * When "len" is > 0, also expand short to long filenames.
2982 */
2983 void
2984fname_case(
2985 char_u *name,
2986 int len)
2987{
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01002988 int flen;
2989 WCHAR *p;
2990 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00002992 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002993 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 return;
2995
2996 slash_adjust(name);
2997
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01002998 p = enc_to_utf16(name, NULL);
2999 if (p == NULL)
Bram Moolenaar65f04f62013-08-30 17:29:16 +02003000 return;
3001
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003002 if (GetLongPathNameW(p, buf, _MAX_PATH))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003004 char_u *q = utf16_to_enc(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003006 if (q != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 {
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003008 if (len > 0 || flen >= (int)STRLEN(q))
3009 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
3010 vim_free(q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 }
3012 }
Bram Moolenaar8bb41b32019-03-30 17:28:16 +01003013 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014}
3015
3016
3017/*
3018 * Insert user name in s[len].
3019 */
3020 int
3021mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003022 char_u *s,
3023 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003025 WCHAR wszUserName[256 + 1]; // UNLEN is 256
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003026 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003028 if (GetUserNameW(wszUserName, &wcch))
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003029 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003030 char_u *p = utf16_to_enc(wszUserName, NULL);
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003031
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003032 if (p != NULL)
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003033 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003034 vim_strncpy(s, p, len - 1);
3035 vim_free(p);
3036 return OK;
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003037 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01003038 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039 s[0] = NUL;
3040 return FAIL;
3041}
3042
3043
3044/*
3045 * Insert host name in s[len].
3046 */
3047 void
3048mch_get_host_name(
3049 char_u *s,
3050 int len)
3051{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003052 WCHAR wszHostName[256 + 1];
3053 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003055 if (GetComputerNameW(wszHostName, &wcch))
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003056 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003057 char_u *p = utf16_to_enc(wszHostName, NULL);
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003058
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003059 if (p != NULL)
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003060 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003061 vim_strncpy(s, p, len - 1);
3062 vim_free(p);
3063 return;
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003064 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01003065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066}
3067
3068
3069/*
3070 * return process ID
3071 */
3072 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003073mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074{
3075 return (long)GetCurrentProcessId();
3076}
3077
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003078/*
3079 * return TRUE if process "pid" is still running
3080 */
3081 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02003082mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02003083{
3084 HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, 0, (DWORD)pid);
3085 DWORD status = 0;
3086 int ret = FALSE;
3087
3088 if (hProcess == NULL)
3089 return FALSE; // might not have access
3090 if (GetExitCodeProcess(hProcess, &status) )
3091 ret = status == STILL_ACTIVE;
3092 CloseHandle(hProcess);
3093 return ret;
3094}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095
3096/*
3097 * Get name of current directory into buffer 'buf' of length 'len' bytes.
3098 * Return OK for success, FAIL for failure.
3099 */
3100 int
3101mch_dirname(
3102 char_u *buf,
3103 int len)
3104{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003105 WCHAR wbuf[_MAX_PATH + 1];
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003106
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 /*
3108 * Originally this was:
3109 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3110 * But the Win32s known bug list says that getcwd() doesn't work
3111 * so use the Win32 system call instead. <Negri>
3112 */
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003113 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003115 WCHAR wcbuf[_MAX_PATH + 1];
3116 char_u *p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003118 if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003120 p = utf16_to_enc(wcbuf, NULL);
3121 if (STRLEN(p) >= (size_t)len)
Bram Moolenaarcea1f9e2018-08-19 14:38:42 +02003122 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003123 // long path name is too long, fall back to short one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003125 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 }
3127 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003128 if (p == NULL)
3129 p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar3b9fcfc2018-08-18 20:20:27 +02003130
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003131 if (p != NULL)
3132 {
3133 vim_strncpy(buf, p, len - 1);
3134 vim_free(p);
3135 return OK;
3136 }
3137 }
3138 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139}
3140
3141/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003142 * Get file permissions for "name".
3143 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 */
3145 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003146mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003148 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003149 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003151 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003152 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153}
3154
3155
3156/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003157 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003158 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003159 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 */
3161 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003162mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003164 long n;
3165 WCHAR *p;
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003166
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003167 p = enc_to_utf16(name, NULL);
3168 if (p == NULL)
3169 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003171 n = _wchmod(p, perm);
3172 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003173 if (n == -1)
3174 return FAIL;
3175
3176 win32_set_archive(name);
3177
3178 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179}
3180
3181/*
3182 * Set hidden flag for "name".
3183 */
3184 void
3185mch_hide(char_u *name)
3186{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003187 int attrs = win32_getattrs(name);
3188 if (attrs == -1)
3189 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003191 attrs |= FILE_ATTRIBUTE_HIDDEN;
3192 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193}
3194
3195/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003196 * Return TRUE if file "name" exists and is hidden.
3197 */
3198 int
3199mch_ishidden(char_u *name)
3200{
3201 int f = win32_getattrs(name);
3202
3203 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003204 return FALSE; // file does not exist at all
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003205
3206 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3207}
3208
3209/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 * return TRUE if "name" is a directory
3211 * return FALSE if "name" is not a directory or upon error
3212 */
3213 int
3214mch_isdir(char_u *name)
3215{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003216 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217
3218 if (f == -1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003219 return FALSE; // file does not exist at all
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220
3221 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3222}
3223
3224/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003225 * return TRUE if "name" is a directory, NOT a symlink to a directory
3226 * return FALSE if "name" is not a directory
3227 * return FALSE for error
3228 */
3229 int
3230mch_isrealdir(char_u *name)
3231{
3232 return mch_isdir(name) && !mch_is_symbolic_link(name);
3233}
3234
3235/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003236 * Create directory "name".
3237 * Return 0 on success, -1 on error.
3238 */
3239 int
3240mch_mkdir(char_u *name)
3241{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003242 WCHAR *p;
3243 int retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003244
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003245 p = enc_to_utf16(name, NULL);
3246 if (p == NULL)
3247 return -1;
3248 retval = _wmkdir(p);
3249 vim_free(p);
3250 return retval;
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003251}
3252
3253/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003254 * Delete directory "name".
3255 * Return 0 on success, -1 on error.
3256 */
3257 int
3258mch_rmdir(char_u *name)
3259{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003260 WCHAR *p;
3261 int retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003262
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003263 p = enc_to_utf16(name, NULL);
3264 if (p == NULL)
3265 return -1;
3266 retval = _wrmdir(p);
3267 vim_free(p);
3268 return retval;
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003269}
3270
3271/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003272 * Return TRUE if file "fname" has more than one link.
3273 */
3274 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003275mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003276{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003277 BY_HANDLE_FILE_INFORMATION info;
3278
3279 return win32_fileinfo(fname, &info) == FILEINFO_OK
3280 && info.nNumberOfLinks > 1;
3281}
3282
3283/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003284 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003285 */
3286 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003287mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003288{
3289 HANDLE hFind;
3290 int res = FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003291 DWORD fileFlags = 0, reparseTag = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003292 WCHAR *wn;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003293 WIN32_FIND_DATAW findDataW;
3294
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003295 wn = enc_to_utf16(name, NULL);
3296 if (wn == NULL)
3297 return FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003298
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003299 hFind = FindFirstFileW(wn, &findDataW);
3300 vim_free(wn);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003301 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003302 {
3303 fileFlags = findDataW.dwFileAttributes;
3304 reparseTag = findDataW.dwReserved0;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003305 FindClose(hFind);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003306 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003307
3308 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003309 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3310 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003311 res = TRUE;
3312
3313 return res;
3314}
3315
3316/*
3317 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3318 * link.
3319 */
3320 int
3321mch_is_linked(char_u *fname)
3322{
3323 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3324 return TRUE;
3325 return FALSE;
3326}
3327
3328/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003329 * Get the by-handle-file-information for "fname".
3330 * Returns FILEINFO_OK when OK.
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003331 * Returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003332 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3333 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3334 */
3335 int
3336win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3337{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003338 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003339 int res = FILEINFO_READ_FAIL;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003340 WCHAR *wn;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003341
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003342 wn = enc_to_utf16(fname, NULL);
3343 if (wn == NULL)
3344 return FILEINFO_ENC_FAIL;
3345
3346 hFile = CreateFileW(wn, // file name
3347 GENERIC_READ, // access mode
3348 FILE_SHARE_READ | FILE_SHARE_WRITE, // share mode
3349 NULL, // security descriptor
3350 OPEN_EXISTING, // creation disposition
3351 FILE_FLAG_BACKUP_SEMANTICS, // file attributes
3352 NULL); // handle to template file
3353 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003354
3355 if (hFile != INVALID_HANDLE_VALUE)
3356 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003357 if (GetFileInformationByHandle(hFile, info) != 0)
3358 res = FILEINFO_OK;
3359 else
3360 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003361 CloseHandle(hFile);
3362 }
3363
Bram Moolenaar03f48552006-02-28 23:52:23 +00003364 return res;
3365}
3366
3367/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003368 * get file attributes for `name'
3369 * -1 : error
3370 * else FILE_ATTRIBUTE_* defined in winnt.h
3371 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003372 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003373win32_getattrs(char_u *name)
3374{
3375 int attr;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003376 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003377
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003378 p = enc_to_utf16(name, NULL);
3379 if (p == NULL)
3380 return INVALID_FILE_ATTRIBUTES;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003381
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003382 attr = GetFileAttributesW(p);
3383 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003384
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003385 return attr;
3386}
3387
3388/*
3389 * set file attributes for `name' to `attrs'
3390 *
3391 * return -1 for failure, 0 otherwise
3392 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003393 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003394win32_setattrs(char_u *name, int attrs)
3395{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003396 int res;
3397 WCHAR *p;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003398
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003399 p = enc_to_utf16(name, NULL);
3400 if (p == NULL)
3401 return -1;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003402
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003403 res = SetFileAttributesW(p, attrs);
3404 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003405
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003406 return res ? 0 : -1;
3407}
3408
3409/*
3410 * Set archive flag for "name".
3411 */
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02003412 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003413win32_set_archive(char_u *name)
3414{
3415 int attrs = win32_getattrs(name);
3416 if (attrs == -1)
3417 return -1;
3418
3419 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3420 return win32_setattrs(name, attrs);
3421}
3422
3423/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 * Return TRUE if file or directory "name" is writable (not readonly).
3425 * Strange semantics of Win32: a readonly directory is writable, but you can't
3426 * delete a file. Let's say this means it is writable.
3427 */
3428 int
3429mch_writable(char_u *name)
3430{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003431 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003433 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3434 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435}
3436
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003438 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003439 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003440 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3441 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 */
3443 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003444mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445{
Bram Moolenaar95da1362020-05-30 18:37:55 +02003446 return executable_exists((char *)name, path, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448
3449/*
3450 * Check what "name" is:
3451 * NODE_NORMAL: file or directory (or doesn't exist)
3452 * NODE_WRITABLE: writable device, socket, fifo, etc.
3453 * NODE_OTHER: non-writable things
3454 */
3455 int
3456mch_nodetype(char_u *name)
3457{
3458 HANDLE hFile;
3459 int type;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003460 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461
Bram Moolenaar0f873732019-12-05 20:28:46 +01003462 // We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3463 // read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3464 // here.
Bram Moolenaar043545e2006-10-10 16:44:07 +00003465 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3466 return NODE_WRITABLE;
3467
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003468 wn = enc_to_utf16(name, NULL);
3469 if (wn == NULL)
3470 return NODE_NORMAL;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003471
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003472 hFile = CreateFileW(wn, // file name
3473 GENERIC_WRITE, // access mode
3474 0, // share mode
3475 NULL, // security descriptor
3476 OPEN_EXISTING, // creation disposition
3477 0, // file attributes
3478 NULL); // handle to template file
3479 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 if (hFile == INVALID_HANDLE_VALUE)
3481 return NODE_NORMAL;
3482
3483 type = GetFileType(hFile);
3484 CloseHandle(hFile);
3485 if (type == FILE_TYPE_CHAR)
3486 return NODE_WRITABLE;
3487 if (type == FILE_TYPE_DISK)
3488 return NODE_NORMAL;
3489 return NODE_OTHER;
3490}
3491
3492#ifdef HAVE_ACL
3493struct my_acl
3494{
3495 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3496 PSID pSidOwner;
3497 PSID pSidGroup;
3498 PACL pDacl;
3499 PACL pSacl;
3500};
3501#endif
3502
3503/*
3504 * Return a pointer to the ACL of file "fname" in allocated memory.
3505 * Return NULL if the ACL is not available for whatever reason.
3506 */
3507 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003508mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509{
3510#ifndef HAVE_ACL
3511 return (vim_acl_T)NULL;
3512#else
3513 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003514 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003516 p = ALLOC_CLEAR_ONE(struct my_acl);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003517 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003519 WCHAR *wn;
Bram Moolenaar27515922013-06-29 15:36:26 +02003520
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003521 wn = enc_to_utf16(fname, NULL);
3522 if (wn == NULL)
Bram Moolenaarbbf9f342020-11-10 22:03:40 +01003523 {
3524 vim_free(p);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003525 return NULL;
Bram Moolenaarbbf9f342020-11-10 22:03:40 +01003526 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003527
3528 // Try to retrieve the entire security descriptor.
3529 err = GetNamedSecurityInfoW(
3530 wn, // Abstract filename
3531 SE_FILE_OBJECT, // File Object
3532 OWNER_SECURITY_INFORMATION |
3533 GROUP_SECURITY_INFORMATION |
3534 DACL_SECURITY_INFORMATION |
3535 SACL_SECURITY_INFORMATION,
3536 &p->pSidOwner, // Ownership information.
3537 &p->pSidGroup, // Group membership.
3538 &p->pDacl, // Discretionary information.
3539 &p->pSacl, // For auditing purposes.
3540 &p->pSecurityDescriptor);
3541 if (err == ERROR_ACCESS_DENIED ||
3542 err == ERROR_PRIVILEGE_NOT_HELD)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003543 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003544 // Retrieve only DACL.
3545 (void)GetNamedSecurityInfoW(
3546 wn,
3547 SE_FILE_OBJECT,
3548 DACL_SECURITY_INFORMATION,
3549 NULL,
3550 NULL,
3551 &p->pDacl,
3552 NULL,
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003553 &p->pSecurityDescriptor);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003554 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003555 if (p->pSecurityDescriptor == NULL)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003556 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003557 mch_free_acl((vim_acl_T)p);
3558 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003560 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 }
3562
3563 return (vim_acl_T)p;
3564#endif
3565}
3566
Bram Moolenaar27515922013-06-29 15:36:26 +02003567#ifdef HAVE_ACL
3568/*
3569 * Check if "acl" contains inherited ACE.
3570 */
3571 static BOOL
3572is_acl_inherited(PACL acl)
3573{
3574 DWORD i;
3575 ACL_SIZE_INFORMATION acl_info;
3576 PACCESS_ALLOWED_ACE ace;
3577
3578 acl_info.AceCount = 0;
3579 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3580 for (i = 0; i < acl_info.AceCount; i++)
3581 {
3582 GetAce(acl, i, (LPVOID *)&ace);
3583 if (ace->Header.AceFlags & INHERITED_ACE)
3584 return TRUE;
3585 }
3586 return FALSE;
3587}
3588#endif
3589
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590/*
3591 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3592 * Errors are ignored.
3593 * This must only be called with "acl" equal to what mch_get_acl() returned.
3594 */
3595 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003596mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597{
3598#ifdef HAVE_ACL
3599 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003600 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003601 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003603 if (p == NULL)
3604 return;
3605
3606 wn = enc_to_utf16(fname, NULL);
3607 if (wn == NULL)
3608 return;
3609
3610 // Set security flags
3611 if (p->pSidOwner)
3612 sec_info |= OWNER_SECURITY_INFORMATION;
3613 if (p->pSidGroup)
3614 sec_info |= GROUP_SECURITY_INFORMATION;
3615 if (p->pDacl)
Bram Moolenaar27515922013-06-29 15:36:26 +02003616 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003617 sec_info |= DACL_SECURITY_INFORMATION;
3618 // Do not inherit its parent's DACL.
3619 // If the DACL is inherited, Cygwin permissions would be changed.
3620 if (!is_acl_inherited(p->pDacl))
3621 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
Bram Moolenaar27515922013-06-29 15:36:26 +02003622 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02003623 if (p->pSacl)
3624 sec_info |= SACL_SECURITY_INFORMATION;
3625
3626 (void)SetNamedSecurityInfoW(
3627 wn, // Abstract filename
3628 SE_FILE_OBJECT, // File Object
3629 sec_info,
3630 p->pSidOwner, // Ownership information.
3631 p->pSidGroup, // Group membership.
3632 p->pDacl, // Discretionary information.
3633 p->pSacl // For auditing purposes.
3634 );
3635 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636#endif
3637}
3638
3639 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003640mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641{
3642#ifdef HAVE_ACL
3643 struct my_acl *p = (struct my_acl *)acl;
3644
3645 if (p != NULL)
3646 {
3647 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3648 vim_free(p);
3649 }
3650#endif
3651}
3652
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003653#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654
3655/*
3656 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3657 */
3658 static BOOL WINAPI
3659handler_routine(
3660 DWORD dwCtrlType)
3661{
Bram Moolenaar589b1102017-08-12 16:39:05 +02003662 INPUT_RECORD ir;
3663 DWORD out;
3664
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 switch (dwCtrlType)
3666 {
3667 case CTRL_C_EVENT:
3668 if (ctrl_c_interrupts)
3669 g_fCtrlCPressed = TRUE;
3670 return TRUE;
3671
3672 case CTRL_BREAK_EVENT:
3673 g_fCBrkPressed = TRUE;
Bram Moolenaar589b1102017-08-12 16:39:05 +02003674 ctrl_break_was_pressed = TRUE;
Bram Moolenaar0f873732019-12-05 20:28:46 +01003675 // ReadConsoleInput is blocking, send a key event to continue.
Bram Moolenaar589b1102017-08-12 16:39:05 +02003676 ir.EventType = KEY_EVENT;
3677 ir.Event.KeyEvent.bKeyDown = TRUE;
3678 ir.Event.KeyEvent.wRepeatCount = 1;
3679 ir.Event.KeyEvent.wVirtualKeyCode = VK_CANCEL;
3680 ir.Event.KeyEvent.wVirtualScanCode = 0;
3681 ir.Event.KeyEvent.dwControlKeyState = 0;
3682 ir.Event.KeyEvent.uChar.UnicodeChar = 0;
3683 WriteConsoleInput(g_hConIn, &ir, 1, &out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 return TRUE;
3685
Bram Moolenaar0f873732019-12-05 20:28:46 +01003686 // fatal events: shut down gracefully
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 case CTRL_CLOSE_EVENT:
3688 case CTRL_LOGOFF_EVENT:
3689 case CTRL_SHUTDOWN_EVENT:
3690 windgoto((int)Rows - 1, 0);
3691 g_fForceExit = TRUE;
3692
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003693 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 (dwCtrlType == CTRL_CLOSE_EVENT
3695 ? _("close")
3696 : dwCtrlType == CTRL_LOGOFF_EVENT
3697 ? _("logoff")
3698 : _("shutdown")));
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003699# ifdef DEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 OutputDebugString(IObuff);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003701# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702
Bram Moolenaar0f873732019-12-05 20:28:46 +01003703 preserve_exit(); // output IObuff, preserve files and exit
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704
Bram Moolenaar0f873732019-12-05 20:28:46 +01003705 return TRUE; // not reached
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706
3707 default:
3708 return FALSE;
3709 }
3710}
3711
3712
3713/*
3714 * set the tty in (raw) ? "raw" : "cooked" mode
3715 */
3716 void
Bram Moolenaar26e86442020-05-17 14:06:16 +02003717mch_settmode(tmode_T tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718{
3719 DWORD cmodein;
3720 DWORD cmodeout;
3721 BOOL bEnableHandler;
3722
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003723# ifdef VIMDLL
3724 if (gui.in_use)
3725 return;
3726# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 GetConsoleMode(g_hConIn, &cmodein);
3728 GetConsoleMode(g_hConOut, &cmodeout);
3729 if (tmode == TMODE_RAW)
3730 {
3731 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3732 ENABLE_ECHO_INPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 if (g_fMouseActive)
3734 cmodein |= ENABLE_MOUSE_INPUT;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003735 cmodeout &= ~(
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003736# ifdef FEAT_TERMGUICOLORS
Bram Moolenaar0f873732019-12-05 20:28:46 +01003737 // Do not turn off the ENABLE_PROCESSED_OUTPUT flag when using
3738 // VTP.
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003739 ((vtp_working) ? 0 : ENABLE_PROCESSED_OUTPUT) |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003740# else
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003741 ENABLE_PROCESSED_OUTPUT |
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003742# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01003743 ENABLE_WRAP_AT_EOL_OUTPUT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 bEnableHandler = TRUE;
3745 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01003746 else // cooked
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747 {
3748 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3749 ENABLE_ECHO_INPUT);
3750 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3751 bEnableHandler = FALSE;
3752 }
3753 SetConsoleMode(g_hConIn, cmodein);
3754 SetConsoleMode(g_hConOut, cmodeout);
3755 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3756
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003757# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 if (fdDump)
3759 {
3760 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3761 tmode == TMODE_RAW ? "raw" :
3762 tmode == TMODE_COOK ? "cooked" : "normal",
3763 cmodein, cmodeout);
3764 fflush(fdDump);
3765 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003766# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767}
3768
3769
3770/*
3771 * Get the size of the current window in `Rows' and `Columns'
3772 * Return OK when size could be determined, FAIL otherwise.
3773 */
3774 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003775mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776{
3777 CONSOLE_SCREEN_BUFFER_INFO csbi;
3778
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003779# ifdef VIMDLL
3780 if (gui.in_use)
3781 return OK;
3782# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3784 {
3785 /*
3786 * For some reason, we are trying to get the screen dimensions
3787 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3788 * variables are really intended to mean the size of Vim screen
3789 * while in termcap mode.
3790 */
3791 Rows = g_cbTermcap.Info.dwSize.Y;
3792 Columns = g_cbTermcap.Info.dwSize.X;
3793 }
3794 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3795 {
3796 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3797 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3798 }
3799 else
3800 {
3801 Rows = 25;
3802 Columns = 80;
3803 }
3804 return OK;
3805}
3806
3807/*
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003808 * Resize console buffer to 'COORD'
3809 */
3810 static void
3811ResizeConBuf(
3812 HANDLE hConsole,
3813 COORD coordScreen)
3814{
3815 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3816 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003817# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003818 if (fdDump)
3819 {
3820 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3821 GetLastError());
3822 fflush(fdDump);
3823 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003824# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003825 }
3826}
3827
3828/*
3829 * Resize console window size to 'srWindowRect'
3830 */
3831 static void
3832ResizeWindow(
3833 HANDLE hConsole,
3834 SMALL_RECT srWindowRect)
3835{
3836 if (!SetConsoleWindowInfo(hConsole, TRUE, &srWindowRect))
3837 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003838# ifdef MCH_WRITE_DUMP
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003839 if (fdDump)
3840 {
3841 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3842 GetLastError());
3843 fflush(fdDump);
3844 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003845# endif
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003846 }
3847}
3848
3849/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003850 * Set a console window to `xSize' * `ySize'
3851 */
3852 static void
3853ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003854 HANDLE hConsole,
3855 int xSize,
3856 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003858 CONSOLE_SCREEN_BUFFER_INFO csbi; // hold current console buffer info
3859 SMALL_RECT srWindowRect; // hold the new console size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 COORD coordScreen;
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003861 COORD cursor;
Bram Moolenaar2551c032018-08-23 22:38:31 +02003862 static int resized = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003864# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 if (fdDump)
3866 {
3867 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3868 fflush(fdDump);
3869 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01003870# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871
Bram Moolenaar0f873732019-12-05 20:28:46 +01003872 // get the largest size we can size the console window to
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 coordScreen = GetLargestConsoleWindowSize(hConsole);
3874
Bram Moolenaar0f873732019-12-05 20:28:46 +01003875 // define the new console window size and scroll position
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3877 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3878 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3879
3880 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3881 {
3882 int sx, sy;
3883
3884 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3885 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3886 if (sy < ySize || sx < xSize)
3887 {
3888 /*
3889 * Increasing number of lines/columns, do buffer first.
3890 * Use the maximal size in x and y direction.
3891 */
3892 if (sy < ySize)
3893 coordScreen.Y = ySize;
3894 else
3895 coordScreen.Y = sy;
3896 if (sx < xSize)
3897 coordScreen.X = xSize;
3898 else
3899 coordScreen.X = sx;
3900 SetConsoleScreenBufferSize(hConsole, coordScreen);
3901 }
3902 }
3903
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003904 // define the new console buffer size
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 coordScreen.X = xSize;
3906 coordScreen.Y = ySize;
3907
Bram Moolenaar2551c032018-08-23 22:38:31 +02003908 // In the new console call API, only the first time in reverse order
3909 if (!vtp_working || resized)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 {
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003911 ResizeWindow(hConsole, srWindowRect);
3912 ResizeConBuf(hConsole, coordScreen);
3913 }
3914 else
3915 {
Bram Moolenaarf49a6922019-07-15 20:37:05 +02003916 // Workaround for a Windows 10 bug
3917 cursor.X = srWindowRect.Left;
3918 cursor.Y = srWindowRect.Top;
3919 SetConsoleCursorPosition(hConsole, cursor);
3920
Bram Moolenaarb1cf1612018-08-07 20:47:16 +02003921 ResizeConBuf(hConsole, coordScreen);
3922 ResizeWindow(hConsole, srWindowRect);
Bram Moolenaar2551c032018-08-23 22:38:31 +02003923 resized = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 }
3925}
3926
3927
3928/*
3929 * Set the console window to `Rows' * `Columns'
3930 */
3931 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003932mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933{
3934 COORD coordScreen;
3935
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003936# ifdef VIMDLL
3937 if (gui.in_use)
3938 return;
3939# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01003940 // Don't change window size while still starting up
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 if (suppress_winsize != 0)
3942 {
3943 suppress_winsize = 2;
3944 return;
3945 }
3946
3947 if (term_console)
3948 {
3949 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3950
Bram Moolenaar0f873732019-12-05 20:28:46 +01003951 // Clamp Rows and Columns to reasonable values
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 if (Rows > coordScreen.Y)
3953 Rows = coordScreen.Y;
3954 if (Columns > coordScreen.X)
3955 Columns = coordScreen.X;
3956
3957 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3958 }
3959}
3960
3961/*
3962 * Rows and/or Columns has changed.
3963 */
3964 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003965mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02003967# ifdef VIMDLL
3968 if (gui.in_use)
3969 return;
3970# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3972}
3973
3974
3975/*
3976 * Called when started up, to set the winsize that was delayed.
3977 */
3978 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003979mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980{
3981 if (suppress_winsize == 2)
3982 {
3983 suppress_winsize = 0;
3984 mch_set_shellsize();
3985 shell_resized();
3986 }
3987 suppress_winsize = 0;
3988}
Bram Moolenaar0f873732019-12-05 20:28:46 +01003989#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003991 static BOOL
3992vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003993 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003994 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01003995 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003996 STARTUPINFO *si,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02003997 PROCESS_INFORMATION *pi,
3998 LPVOID *env,
3999 char *cwd)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004000{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004001 BOOL ret = FALSE;
4002 WCHAR *wcmd, *wcwd = NULL;
4003
4004 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4005 if (wcmd == NULL)
4006 return FALSE;
4007 if (cwd != NULL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004008 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004009 wcwd = enc_to_utf16((char_u *)cwd, NULL);
4010 if (wcwd == NULL)
4011 goto theend;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004012 }
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004013
4014 ret = CreateProcessW(
4015 NULL, // Executable name
4016 wcmd, // Command to execute
4017 NULL, // Process security attributes
4018 NULL, // Thread security attributes
4019 inherit_handles, // Inherit handles
4020 flags, // Creation flags
4021 env, // Environment
4022 wcwd, // Current directory
4023 (LPSTARTUPINFOW)si, // Startup information
4024 pi); // Process information
4025theend:
4026 vim_free(wcmd);
4027 vim_free(wcwd);
4028 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004029}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030
4031
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004032 static HINSTANCE
4033vim_shell_execute(
4034 char *cmd,
4035 INT n_show_cmd)
4036{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004037 HINSTANCE ret;
4038 WCHAR *wcmd;
4039
4040 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4041 if (wcmd == NULL)
4042 return (HINSTANCE) 0;
4043
4044 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd);
4045 vim_free(wcmd);
4046 return ret;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004047}
4048
4049
Bram Moolenaar4f974752019-02-17 17:44:42 +01004050#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051
4052/*
4053 * Specialised version of system() for Win32 GUI mode.
4054 * This version proceeds as follows:
4055 * 1. Create a console window for use by the subprocess
4056 * 2. Run the subprocess (it gets the allocated console by default)
4057 * 3. Wait for the subprocess to terminate and get its exit code
4058 * 4. Prompt the user to press a key to close the console window
4059 */
4060 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004061mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062{
4063 STARTUPINFO si;
4064 PROCESS_INFORMATION pi;
4065 DWORD ret = 0;
4066 HWND hwnd = GetFocus();
4067
4068 si.cb = sizeof(si);
4069 si.lpReserved = NULL;
4070 si.lpDesktop = NULL;
4071 si.lpTitle = NULL;
4072 si.dwFlags = STARTF_USESHOWWINDOW;
4073 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004074 * It's nicer to run a filter command in a minimized window.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004075 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004076 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004077 if (options & SHELL_DOOUT)
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004078 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004079 else
4080 si.wShowWindow = SW_SHOWNORMAL;
4081 si.cbReserved2 = 0;
4082 si.lpReserved2 = NULL;
4083
Bram Moolenaar0f873732019-12-05 20:28:46 +01004084 // Now, run the command
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004085 vim_create_process(cmd, FALSE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004086 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE,
4087 &si, &pi, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088
Bram Moolenaar0f873732019-12-05 20:28:46 +01004089 // Wait for the command to terminate before continuing
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004091# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 int delay = 1;
4093
Bram Moolenaar0f873732019-12-05 20:28:46 +01004094 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 for (;;)
4096 {
4097 MSG msg;
4098
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004099 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 {
4101 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004102 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004103 delay = 1;
4104 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 }
4106 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4107 break;
4108
Bram Moolenaar0f873732019-12-05 20:28:46 +01004109 // We start waiting for a very short time and then increase it, so
4110 // that we respond quickly when the process is quick, and don't
4111 // consume too much overhead when it's slow.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 if (delay < 50)
4113 delay += 10;
4114 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004115# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 WaitForSingleObject(pi.hProcess, INFINITE);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01004117# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118
Bram Moolenaar0f873732019-12-05 20:28:46 +01004119 // Get the command exit code
Bram Moolenaar071d4272004-06-13 20:20:40 +00004120 GetExitCodeProcess(pi.hProcess, &ret);
4121 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122
Bram Moolenaar0f873732019-12-05 20:28:46 +01004123 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 CloseHandle(pi.hThread);
4125 CloseHandle(pi.hProcess);
4126
Bram Moolenaar0f873732019-12-05 20:28:46 +01004127 // Try to get input focus back. Doesn't always work though.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4129
4130 return ret;
4131}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004132
4133/*
4134 * Thread launched by the gui to send the current buffer data to the
4135 * process. This way avoid to hang up vim totally if the children
4136 * process take a long time to process the lines.
4137 */
Bram Moolenaar4c38d662016-08-03 20:54:57 +02004138 static unsigned int __stdcall
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004139sub_process_writer(LPVOID param)
4140{
4141 HANDLE g_hChildStd_IN_Wr = param;
4142 linenr_T lnum = curbuf->b_op_start.lnum;
4143 DWORD len = 0;
4144 DWORD l;
4145 char_u *lp = ml_get(lnum);
4146 char_u *s;
4147 int written = 0;
4148
4149 for (;;)
4150 {
4151 l = (DWORD)STRLEN(lp + written);
4152 if (l == 0)
4153 len = 0;
4154 else if (lp[written] == NL)
4155 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004156 // NL -> NUL translation
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004157 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4158 }
4159 else
4160 {
4161 s = vim_strchr(lp + written, NL);
4162 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4163 s == NULL ? l : (DWORD)(s - (lp + written)),
4164 &len, NULL);
4165 }
4166 if (len == (int)l)
4167 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004168 // Finished a line, add a NL, unless this line should not have
4169 // one.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004170 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004171 || (!curbuf->b_p_bin
4172 && curbuf->b_p_fixeol)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004173 || (lnum != curbuf->b_no_eol_lnum
4174 && (lnum != curbuf->b_ml.ml_line_count
4175 || curbuf->b_p_eol)))
4176 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02004177 WriteFile(g_hChildStd_IN_Wr, "\n", 1,
4178 (LPDWORD)&vim_ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004179 }
4180
4181 ++lnum;
4182 if (lnum > curbuf->b_op_end.lnum)
4183 break;
4184
4185 lp = ml_get(lnum);
4186 written = 0;
4187 }
4188 else if (len > 0)
4189 written += len;
4190 }
4191
Bram Moolenaar0f873732019-12-05 20:28:46 +01004192 // finished all the lines, close pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004193 CloseHandle(g_hChildStd_IN_Wr);
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004194 return 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004195}
4196
4197
Bram Moolenaar0f873732019-12-05 20:28:46 +01004198# define BUFLEN 100 // length for buffer, stolen from unix version
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004199
4200/*
4201 * This function read from the children's stdout and write the
4202 * data on screen or in the buffer accordingly.
4203 */
4204 static void
4205dump_pipe(int options,
4206 HANDLE g_hChildStd_OUT_Rd,
4207 garray_T *ga,
4208 char_u buffer[],
4209 DWORD *buffer_off)
4210{
4211 DWORD availableBytes = 0;
4212 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004213 int ret;
4214 DWORD len;
4215 DWORD toRead;
4216 int repeatCount;
4217
Bram Moolenaar0f873732019-12-05 20:28:46 +01004218 // we query the pipe to see if there is any data to read
4219 // to avoid to perform a blocking read
4220 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, // pipe to query
4221 NULL, // optional buffer
4222 0, // buffer size
4223 NULL, // number of read bytes
4224 &availableBytes, // available bytes total
4225 NULL); // byteLeft
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004226
4227 repeatCount = 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004228 // We got real data in the pipe, read it
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004229 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004230 {
4231 repeatCount++;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004232 toRead = (DWORD)(BUFLEN - *buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004233 toRead = availableBytes < toRead ? availableBytes : toRead;
Bram Moolenaara12a1612019-01-24 16:39:02 +01004234 ReadFile(g_hChildStd_OUT_Rd, buffer + *buffer_off, toRead , &len, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004235
Bram Moolenaar0f873732019-12-05 20:28:46 +01004236 // If we haven't read anything, there is a problem
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004237 if (len == 0)
4238 break;
4239
4240 availableBytes -= len;
4241
4242 if (options & SHELL_READ)
4243 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004244 // Do NUL -> NL translation, append NL separated
4245 // lines to the current buffer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004246 for (i = 0; i < len; ++i)
4247 {
4248 if (buffer[i] == NL)
4249 append_ga_line(ga);
4250 else if (buffer[i] == NUL)
4251 ga_append(ga, NL);
4252 else
4253 ga_append(ga, buffer[i]);
4254 }
4255 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004256 else if (has_mbyte)
4257 {
4258 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004259 int c;
4260 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004261
4262 len += *buffer_off;
4263 buffer[len] = NUL;
4264
Bram Moolenaar0f873732019-12-05 20:28:46 +01004265 // Check if the last character in buffer[] is
4266 // incomplete, keep these bytes for the next
4267 // round.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004268 for (p = buffer; p < buffer + len; p += l)
4269 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004270 l = MB_CPTR2LEN(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004271 if (l == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004272 l = 1; // NUL byte?
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004273 else if (MB_BYTE2LEN(*p) != l)
4274 break;
4275 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004276 if (p == buffer) // no complete character
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004277 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004278 // avoid getting stuck at an illegal byte
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004279 if (len >= 12)
4280 ++p;
4281 else
4282 {
4283 *buffer_off = len;
4284 return;
4285 }
4286 }
4287 c = *p;
4288 *p = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004289 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004290 if (p < buffer + len)
4291 {
4292 *p = c;
4293 *buffer_off = (DWORD)((buffer + len) - p);
4294 mch_memmove(buffer, p, *buffer_off);
4295 return;
4296 }
4297 *buffer_off = 0;
4298 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004299 else
4300 {
4301 buffer[len] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01004302 msg_puts((char *)buffer);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004303 }
4304
4305 windgoto(msg_row, msg_col);
4306 cursor_on();
4307 out_flush();
4308 }
4309}
4310
4311/*
4312 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4313 * for communication and doesn't open any new window.
4314 */
4315 static int
4316mch_system_piped(char *cmd, int options)
4317{
4318 STARTUPINFO si;
4319 PROCESS_INFORMATION pi;
4320 DWORD ret = 0;
4321
4322 HANDLE g_hChildStd_IN_Rd = NULL;
4323 HANDLE g_hChildStd_IN_Wr = NULL;
4324 HANDLE g_hChildStd_OUT_Rd = NULL;
4325 HANDLE g_hChildStd_OUT_Wr = NULL;
4326
Bram Moolenaar0f873732019-12-05 20:28:46 +01004327 char_u buffer[BUFLEN + 1]; // reading buffer + size
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004328 DWORD len;
4329
Bram Moolenaar0f873732019-12-05 20:28:46 +01004330 // buffer used to receive keys
4331 char_u ta_buf[BUFLEN + 1]; // TypeAHead
4332 int ta_len = 0; // valid bytes in ta_buf[]
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004333
4334 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004335 int noread_cnt = 0;
4336 garray_T ga;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004337 int delay = 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004338 DWORD buffer_off = 0; // valid bytes in buffer[]
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004339 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004340
4341 SECURITY_ATTRIBUTES saAttr;
4342
Bram Moolenaar0f873732019-12-05 20:28:46 +01004343 // Set the bInheritHandle flag so pipe handles are inherited.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004344 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4345 saAttr.bInheritHandle = TRUE;
4346 saAttr.lpSecurityDescriptor = NULL;
4347
4348 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004349 // Ensure the read handle to the pipe for STDOUT is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004350 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004351 // Create a pipe for the child process's STDIN.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004352 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004353 // Ensure the write handle to the pipe for STDIN is not inherited.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004354 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004355 {
4356 CloseHandle(g_hChildStd_IN_Rd);
4357 CloseHandle(g_hChildStd_IN_Wr);
4358 CloseHandle(g_hChildStd_OUT_Rd);
4359 CloseHandle(g_hChildStd_OUT_Wr);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004360 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004361 }
4362
4363 si.cb = sizeof(si);
4364 si.lpReserved = NULL;
4365 si.lpDesktop = NULL;
4366 si.lpTitle = NULL;
4367 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4368
Bram Moolenaar0f873732019-12-05 20:28:46 +01004369 // set-up our file redirection
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004370 si.hStdError = g_hChildStd_OUT_Wr;
4371 si.hStdOutput = g_hChildStd_OUT_Wr;
4372 si.hStdInput = g_hChildStd_IN_Rd;
4373 si.wShowWindow = SW_HIDE;
4374 si.cbReserved2 = 0;
4375 si.lpReserved2 = NULL;
4376
4377 if (options & SHELL_READ)
4378 ga_init2(&ga, 1, BUFLEN);
4379
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004380 if (cmd != NULL)
4381 {
4382 p = (char *)vim_strsave((char_u *)cmd);
4383 if (p != NULL)
4384 unescape_shellxquote((char_u *)p, p_sxe);
4385 else
4386 p = cmd;
4387 }
4388
Bram Moolenaar0f873732019-12-05 20:28:46 +01004389 // Now, run the command.
4390 // About "Inherit handles" being TRUE: this command can be litigious,
4391 // handle inheritance was deactivated for pending temp file, but, if we
4392 // deactivate it, the pipes don't work for some reason.
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004393 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE,
4394 &si, &pi, NULL, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004395
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004396 if (p != cmd)
4397 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004398
Bram Moolenaar0f873732019-12-05 20:28:46 +01004399 // Close our unused side of the pipes
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004400 CloseHandle(g_hChildStd_IN_Rd);
4401 CloseHandle(g_hChildStd_OUT_Wr);
4402
4403 if (options & SHELL_WRITE)
4404 {
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004405 HANDLE thread = (HANDLE)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004406 _beginthreadex(NULL, // security attributes
4407 0, // default stack size
4408 sub_process_writer, // function to be executed
4409 g_hChildStd_IN_Wr, // parameter
4410 0, // creation flag, start immediately
4411 NULL); // we don't care about thread id
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004412 CloseHandle(thread);
4413 g_hChildStd_IN_Wr = NULL;
4414 }
4415
Bram Moolenaar0f873732019-12-05 20:28:46 +01004416 // Keep updating the window while waiting for the shell to finish.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004417 for (;;)
4418 {
4419 MSG msg;
4420
Bram Moolenaar175d0702013-12-11 18:36:33 +01004421 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004422 {
4423 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004424 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004425 }
4426
Bram Moolenaar0f873732019-12-05 20:28:46 +01004427 // write pipe information in the window
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004428 if ((options & (SHELL_READ|SHELL_WRITE))
4429# ifdef FEAT_GUI
4430 || gui.in_use
4431# endif
4432 )
4433 {
4434 len = 0;
4435 if (!(options & SHELL_EXPAND)
4436 && ((options &
4437 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4438 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4439# ifdef FEAT_GUI
4440 || gui.in_use
4441# endif
4442 )
4443 && (ta_len > 0 || noread_cnt > 4))
4444 {
4445 if (ta_len == 0)
4446 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004447 // Get extra characters when we don't have any. Reset the
4448 // counter and timer.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004449 noread_cnt = 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004450 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4451 }
4452 if (ta_len > 0 || len > 0)
4453 {
4454 /*
4455 * For pipes: Check for CTRL-C: send interrupt signal to
4456 * child. Check for CTRL-D: EOF, close pipe to child.
4457 */
4458 if (len == 1 && cmd != NULL)
4459 {
4460 if (ta_buf[ta_len] == Ctrl_C)
4461 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004462 // Learn what exit code is expected, for
4463 // now put 9 as SIGKILL
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004464 TerminateProcess(pi.hProcess, 9);
4465 }
4466 if (ta_buf[ta_len] == Ctrl_D)
4467 {
4468 CloseHandle(g_hChildStd_IN_Wr);
4469 g_hChildStd_IN_Wr = NULL;
4470 }
4471 }
4472
Bram Moolenaarf4140482020-02-15 23:06:45 +01004473 term_replace_bs_del_keycode(ta_buf, ta_len, len);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004474
4475 /*
4476 * For pipes: echo the typed characters. For a pty this
4477 * does not seem to work.
4478 */
4479 for (i = ta_len; i < ta_len + len; ++i)
4480 {
4481 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4482 msg_putchar(ta_buf[i]);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004483 else if (has_mbyte)
4484 {
4485 int l = (*mb_ptr2len)(ta_buf + i);
4486
4487 msg_outtrans_len(ta_buf + i, l);
4488 i += l - 1;
4489 }
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004490 else
4491 msg_outtrans_len(ta_buf + i, 1);
4492 }
4493 windgoto(msg_row, msg_col);
4494 out_flush();
4495
4496 ta_len += len;
4497
4498 /*
4499 * Write the characters to the child, unless EOF has been
4500 * typed for pipes. Write one character at a time, to
4501 * avoid losing too much typeahead. When writing buffer
4502 * lines, drop the typed characters (only check for
4503 * CTRL-C).
4504 */
4505 if (options & SHELL_WRITE)
4506 ta_len = 0;
4507 else if (g_hChildStd_IN_Wr != NULL)
4508 {
4509 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4510 1, &len, NULL);
4511 // if we are typing in, we want to keep things reactive
4512 delay = 1;
4513 if (len > 0)
4514 {
4515 ta_len -= len;
4516 mch_memmove(ta_buf, ta_buf + len, ta_len);
4517 }
4518 }
4519 }
4520 }
4521 }
4522
4523 if (ta_len)
4524 ui_inchar_undo(ta_buf, ta_len);
4525
4526 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4527 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004528 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004529 break;
4530 }
4531
4532 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004533 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004534
Bram Moolenaar0f873732019-12-05 20:28:46 +01004535 // We start waiting for a very short time and then increase it, so
4536 // that we respond quickly when the process is quick, and don't
4537 // consume too much overhead when it's slow.
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004538 if (delay < 50)
4539 delay += 10;
4540 }
4541
Bram Moolenaar0f873732019-12-05 20:28:46 +01004542 // Close the pipe
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004543 CloseHandle(g_hChildStd_OUT_Rd);
4544 if (g_hChildStd_IN_Wr != NULL)
4545 CloseHandle(g_hChildStd_IN_Wr);
4546
4547 WaitForSingleObject(pi.hProcess, INFINITE);
4548
Bram Moolenaar0f873732019-12-05 20:28:46 +01004549 // Get the command exit code
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004550 GetExitCodeProcess(pi.hProcess, &ret);
4551
4552 if (options & SHELL_READ)
4553 {
4554 if (ga.ga_len > 0)
4555 {
4556 append_ga_line(&ga);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004557 // remember that the NL was missing
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004558 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4559 }
4560 else
4561 curbuf->b_no_eol_lnum = 0;
4562 ga_clear(&ga);
4563 }
4564
Bram Moolenaar0f873732019-12-05 20:28:46 +01004565 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004566 CloseHandle(pi.hThread);
4567 CloseHandle(pi.hProcess);
4568
4569 return ret;
4570}
4571
4572 static int
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004573mch_system_g(char *cmd, int options)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004574{
Bram Moolenaar0f873732019-12-05 20:28:46 +01004575 // if we can pipe and the shelltemp option is off
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004576 if (!p_stmp)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004577 return mch_system_piped(cmd, options);
4578 else
4579 return mch_system_classic(cmd, options);
4580}
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004581#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004583#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004584 static int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02004585mch_system_c(char *cmd, int options UNUSED)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004586{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004587 int ret;
4588 WCHAR *wcmd;
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004589 char_u *buf;
4590 size_t len;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004591
Bram Moolenaar2efc44b2019-10-05 12:09:32 +02004592 // If the command starts and ends with double quotes, enclose the command
4593 // in parentheses.
4594 len = STRLEN(cmd);
4595 if (len >= 2 && cmd[0] == '"' && cmd[len - 1] == '"')
4596 {
4597 len += 3;
4598 buf = alloc(len);
4599 if (buf == NULL)
4600 return -1;
4601 vim_snprintf((char *)buf, len, "(%s)", cmd);
4602 wcmd = enc_to_utf16(buf, NULL);
4603 free(buf);
4604 }
4605 else
4606 wcmd = enc_to_utf16((char_u *)cmd, NULL);
4607
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004608 if (wcmd == NULL)
4609 return -1;
4610
4611 ret = _wsystem(wcmd);
4612 vim_free(wcmd);
4613 return ret;
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004614}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615
4616#endif
4617
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004618 static int
4619mch_system(char *cmd, int options)
4620{
4621#ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004622 if (gui.in_use || gui.starting)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004623 return mch_system_g(cmd, options);
4624 else
4625 return mch_system_c(cmd, options);
4626#elif defined(FEAT_GUI_MSWIN)
4627 return mch_system_g(cmd, options);
4628#else
4629 return mch_system_c(cmd, options);
4630#endif
4631}
4632
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004633#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4634/*
4635 * Use a terminal window to run a shell command in.
4636 */
4637 static int
4638mch_call_shell_terminal(
4639 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004640 int options UNUSED) // SHELL_*, see vim.h
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004641{
4642 jobopt_T opt;
4643 char_u *newcmd = NULL;
4644 typval_T argvar[2];
4645 long_u cmdlen;
4646 int retval = -1;
4647 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004648 job_T *job;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004649 aco_save_T aco;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004650 oparg_T oa; // operator arguments
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004651
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004652 if (cmd == NULL)
4653 cmdlen = STRLEN(p_sh) + 1;
4654 else
4655 cmdlen = STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004656 newcmd = alloc(cmdlen);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004657 if (newcmd == NULL)
4658 return 255;
Bram Moolenaar42f652f2018-03-19 21:44:37 +01004659 if (cmd == NULL)
4660 {
4661 STRCPY(newcmd, p_sh);
4662 ch_log(NULL, "starting terminal to run a shell");
4663 }
4664 else
4665 {
4666 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", p_sh, p_shcf, cmd);
4667 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4668 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004669
4670 init_job_options(&opt);
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004671
4672 argvar[0].v_type = VAR_STRING;
4673 argvar[0].vval.v_string = newcmd;
4674 argvar[1].v_type = VAR_UNKNOWN;
4675 buf = term_start(argvar, NULL, &opt, TERM_START_SYSTEM);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004676 if (buf == NULL)
Bram Moolenaar9029b912019-03-21 19:58:00 +01004677 {
4678 vim_free(newcmd);
Bram Moolenaar81c3c89a2018-03-20 11:41:44 +01004679 return 255;
Bram Moolenaar9029b912019-03-21 19:58:00 +01004680 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004681
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004682 job = term_getjob(buf->b_term);
4683 ++job->jv_refcount;
4684
Bram Moolenaar0f873732019-12-05 20:28:46 +01004685 // Find a window to make "buf" curbuf.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004686 aucmd_prepbuf(&aco, buf);
4687
4688 clear_oparg(&oa);
4689 while (term_use_loop())
4690 {
4691 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4692 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004693 // If terminal_loop() returns OK we got a key that is handled
4694 // in Normal model. We don't do redrawing anyway.
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004695 if (terminal_loop(TRUE) == OK)
4696 normal_cmd(&oa, TRUE);
4697 }
4698 else
4699 normal_cmd(&oa, TRUE);
4700 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004701 retval = job->jv_exitval;
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004702 ch_log(NULL, "system command finished");
4703
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004704 job_unref(job);
4705
Bram Moolenaar0f873732019-12-05 20:28:46 +01004706 // restore curwin/curbuf and a few other things
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004707 aucmd_restbuf(&aco);
4708
4709 wait_return(TRUE);
4710 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4711
4712 vim_free(newcmd);
4713 return retval;
4714}
4715#endif
4716
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717/*
4718 * Either execute a command by calling the shell or start a new shell
4719 */
4720 int
4721mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004722 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004723 int options) // SHELL_*, see vim.h
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724{
4725 int x = 0;
4726 int tmode = cur_tmode;
4727#ifdef FEAT_TITLE
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004728 WCHAR szShellTitle[512];
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004729
Bram Moolenaar0f873732019-12-05 20:28:46 +01004730 // Change the title to reflect that we are in a subshell.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004731 if (GetConsoleTitleW(szShellTitle,
4732 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0)
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004733 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004734 if (cmd == NULL)
4735 wcscat(szShellTitle, L" :sh");
4736 else
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004737 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004738 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004739
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004740 if (wn != NULL)
4741 {
4742 wcscat(szShellTitle, L" - !");
4743 if ((wcslen(szShellTitle) + wcslen(wn) <
4744 sizeof(szShellTitle)/sizeof(WCHAR)))
4745 wcscat(szShellTitle, wn);
4746 SetConsoleTitleW(szShellTitle);
4747 vim_free(wn);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004748 }
4749 }
4750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751#endif
4752
4753 out_flush();
4754
4755#ifdef MCH_WRITE_DUMP
4756 if (fdDump)
4757 {
4758 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4759 fflush(fdDump);
4760 }
4761#endif
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004762#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004763 // TODO: make the terminal window work with input or output redirected.
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004764 if (
4765# ifdef VIMDLL
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004766 gui.in_use &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004767# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004768 vim_strchr(p_go, GO_TERMINAL) != NULL
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004769 && (options & (SHELL_FILTER|SHELL_DOOUT|SHELL_WRITE|SHELL_READ)) == 0)
4770 {
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004771 char_u *cmdbase = cmd;
4772
Bram Moolenaar4d5c1262019-09-20 17:20:02 +02004773 if (cmdbase != NULL)
4774 // Skip a leading quote and (.
4775 while (*cmdbase == '"' || *cmdbase == '(')
4776 ++cmdbase;
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004777
4778 // Check the command does not begin with "start "
Bram Moolenaar36e7a822019-11-13 21:49:24 +01004779 if (cmdbase == NULL || STRNICMP(cmdbase, "start", 5) != 0
4780 || !VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004781 {
4782 // Use a terminal window to run the command in.
4783 x = mch_call_shell_terminal(cmd, options);
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004784# ifdef FEAT_TITLE
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004785 resettitle();
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01004786# endif
Bram Moolenaar7c348bb2019-06-08 12:05:22 +02004787 return x;
4788 }
Bram Moolenaarf05fa372018-03-18 19:29:34 +01004789 }
4790#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791
4792 /*
4793 * Catch all deadly signals while running the external command, because a
4794 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4795 */
4796 signal(SIGINT, SIG_IGN);
4797#if defined(__GNUC__) && !defined(__MINGW32__)
4798 signal(SIGKILL, SIG_IGN);
4799#else
4800 signal(SIGBREAK, SIG_IGN);
4801#endif
4802 signal(SIGILL, SIG_IGN);
4803 signal(SIGFPE, SIG_IGN);
4804 signal(SIGSEGV, SIG_IGN);
4805 signal(SIGTERM, SIG_IGN);
4806 signal(SIGABRT, SIG_IGN);
4807
4808 if (options & SHELL_COOKED)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004809 settmode(TMODE_COOK); // set to normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810
4811 if (cmd == NULL)
4812 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004813 x = mch_system((char *)p_sh, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 }
4815 else
4816 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004817 // we use "command" or "cmd" to start the shell; slow but easy
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004818 char_u *newcmd = NULL;
4819 char_u *cmdbase = cmd;
4820 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004821
Bram Moolenaar0f873732019-12-05 20:28:46 +01004822 // Skip a leading ", ( and "(.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004823 if (*cmdbase == '"' )
4824 ++cmdbase;
4825 if (*cmdbase == '(')
4826 ++cmdbase;
4827
Bram Moolenaar1c465442017-03-12 20:10:05 +01004828 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004829 {
4830 STARTUPINFO si;
4831 PROCESS_INFORMATION pi;
4832 DWORD flags = CREATE_NEW_CONSOLE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004833 INT n_show_cmd = SW_SHOWNORMAL;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004834 char_u *p;
4835
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004836 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004837 si.cb = sizeof(si);
4838 si.lpReserved = NULL;
4839 si.lpDesktop = NULL;
4840 si.lpTitle = NULL;
4841 si.dwFlags = 0;
4842 si.cbReserved2 = 0;
4843 si.lpReserved2 = NULL;
4844
4845 cmdbase = skipwhite(cmdbase + 5);
4846 if ((STRNICMP(cmdbase, "/min", 4) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004847 && VIM_ISWHITE(cmdbase[4]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004848 {
4849 cmdbase = skipwhite(cmdbase + 4);
4850 si.dwFlags = STARTF_USESHOWWINDOW;
4851 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004852 n_show_cmd = SW_SHOWMINNOACTIVE;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004853 }
4854 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
Bram Moolenaar1c465442017-03-12 20:10:05 +01004855 && VIM_ISWHITE(cmdbase[2]))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004856 {
4857 cmdbase = skipwhite(cmdbase + 2);
4858 flags = CREATE_NO_WINDOW;
4859 si.dwFlags = STARTF_USESTDHANDLES;
4860 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004861 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004862 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004863 NULL, // Security att.
4864 OPEN_EXISTING, // Open flags
4865 FILE_ATTRIBUTE_NORMAL, // File att.
4866 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004867 si.hStdOutput = si.hStdInput;
4868 si.hStdError = si.hStdInput;
4869 }
4870
Bram Moolenaar0f873732019-12-05 20:28:46 +01004871 // Remove a trailing ", ) and )" if they have a match
4872 // at the start of the command.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004873 if (cmdbase > cmd)
4874 {
4875 p = cmdbase + STRLEN(cmdbase);
4876 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4877 *--p = NUL;
4878 if (p > cmdbase && p[-1] == ')'
4879 && (*cmd =='(' || cmd[1] == '('))
4880 *--p = NUL;
4881 }
4882
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004883 newcmd = cmdbase;
4884 unescape_shellxquote(cmdbase, p_sxe);
4885
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004886 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004887 * If creating new console, arguments are passed to the
4888 * 'cmd.exe' as-is. If it's not, arguments are not treated
4889 * correctly for current 'cmd.exe'. So unescape characters in
4890 * shellxescape except '|' for avoiding to be treated as
4891 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004892 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004893 if (flags != CREATE_NEW_CONSOLE)
4894 {
4895 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004896 char_u *cmd_shell = mch_getenv("COMSPEC");
4897
4898 if (cmd_shell == NULL || *cmd_shell == NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004899 cmd_shell = (char_u *)default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004900
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004901 subcmd = vim_strsave_escaped_ext(cmdbase,
4902 (char_u *)"|", '^', FALSE);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004903 if (subcmd != NULL)
4904 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004905 // make "cmd.exe /c arguments"
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004906 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004907 newcmd = alloc(cmdlen);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004908 if (newcmd != NULL)
4909 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004910 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004911 else
4912 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004913 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004914 }
4915 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004916
4917 /*
4918 * Now, start the command as a process, so that it doesn't
4919 * inherit our handles which causes unpleasant dangling swap
4920 * files if we exit before the spawned process
4921 */
Bram Moolenaar05aafed2017-08-11 19:12:11 +02004922 if (vim_create_process((char *)newcmd, FALSE, flags,
4923 &si, &pi, NULL, NULL))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004924 x = 0;
Bram Moolenaarb2964f22017-03-21 19:29:26 +01004925 else if (vim_shell_execute((char *)newcmd, n_show_cmd)
4926 > (HINSTANCE)32)
4927 x = 0;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004928 else
4929 {
4930 x = -1;
Bram Moolenaar4f974752019-02-17 17:44:42 +01004931#ifdef FEAT_GUI_MSWIN
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004932# ifdef VIMDLL
4933 if (gui.in_use)
4934# endif
4935 emsg(_("E371: Command not found"));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004936#endif
4937 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004938
4939 if (newcmd != cmdbase)
4940 vim_free(newcmd);
4941
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004942 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004943 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004944 // Close the handle to \\.\NUL created above.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004945 CloseHandle(si.hStdInput);
4946 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004947 // Close the handles to the subprocess, so that it goes away
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004948 CloseHandle(pi.hThread);
4949 CloseHandle(pi.hProcess);
4950 }
4951 else
4952 {
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004953 cmdlen =
Bram Moolenaar4f974752019-02-17 17:44:42 +01004954#ifdef FEAT_GUI_MSWIN
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004955 ((gui.in_use || gui.starting) ?
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004956 (!s_dont_use_vimrun && p_stmp ?
4957 STRLEN(vimrun_path) : STRLEN(p_sh) + STRLEN(p_shcf))
4958 : 0) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959#endif
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004960 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004961
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004962 newcmd = alloc(cmdlen);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004963 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01004965#if defined(FEAT_GUI_MSWIN)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004966 if (
4967# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004968 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004969# endif
4970 need_vimrun_warning)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 {
Bram Moolenaar63e43442016-11-19 17:28:44 +01004972 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
4973 "External commands will not pause after completion.\n"
4974 "See :help win32-vimrun for more information.");
4975 char *title = _("Vim Warning");
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004976 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
4977 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
Bram Moolenaar63e43442016-11-19 17:28:44 +01004978
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02004979 if (wmsg != NULL && wtitle != NULL)
4980 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
4981 vim_free(wmsg);
4982 vim_free(wtitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 need_vimrun_warning = FALSE;
4984 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004985 if (
4986# ifdef VIMDLL
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02004987 (gui.in_use || gui.starting) &&
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004988# endif
4989 !s_dont_use_vimrun && p_stmp)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02004990 // Use vimrun to execute the command. It opens a console
4991 // window, which can be closed without killing Vim.
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004992 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 vimrun_path,
4994 (msg_silent != 0 || (options & SHELL_DOOUT))
4995 ? "-s " : "",
4996 p_sh, p_shcf, cmd);
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02004997 else if (
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02004998# ifdef VIMDLL
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02004999 (gui.in_use || gui.starting) &&
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005000# endif
Bram Moolenaar0e6bfb92019-07-31 20:53:56 +02005001 s_dont_use_vimrun && STRCMP(p_shcf, "/c") == 0)
Bram Moolenaarfcc4d922019-05-24 13:32:36 +02005002 // workaround for the case that "vimrun" does not exist
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005003 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s %s %s",
5004 p_sh, p_shcf, p_sh, p_shcf, cmd);
Bram Moolenaar98ffe4c2019-05-07 23:01:39 +02005005 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02005007 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00005008 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01005010 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 }
5013 }
5014
5015 if (tmode == TMODE_RAW)
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005016 {
5017 // The shell may have messed with the mode, always set it.
5018 cur_tmode = TMODE_UNKNOWN;
Bram Moolenaar0f873732019-12-05 20:28:46 +01005019 settmode(TMODE_RAW); // set to raw mode
Bram Moolenaar3b1f18f2020-05-16 23:15:08 +02005020 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021
Bram Moolenaar0f873732019-12-05 20:28:46 +01005022 // Print the return value, unless "vimrun" was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
Bram Moolenaar4f974752019-02-17 17:44:42 +01005024#if defined(FEAT_GUI_MSWIN)
Bram Moolenaar294d9bf2019-05-23 20:12:46 +02005025 && ((gui.in_use || gui.starting) ?
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005026 ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp) : 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027#endif
5028 )
5029 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005030 smsg(_("shell returned %d"), x);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 msg_putchar('\n');
5032 }
5033#ifdef FEAT_TITLE
5034 resettitle();
5035#endif
5036
5037 signal(SIGINT, SIG_DFL);
5038#if defined(__GNUC__) && !defined(__MINGW32__)
5039 signal(SIGKILL, SIG_DFL);
5040#else
5041 signal(SIGBREAK, SIG_DFL);
5042#endif
5043 signal(SIGILL, SIG_DFL);
5044 signal(SIGFPE, SIG_DFL);
5045 signal(SIGSEGV, SIG_DFL);
5046 signal(SIGTERM, SIG_DFL);
5047 signal(SIGABRT, SIG_DFL);
5048
5049 return x;
5050}
5051
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005052#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005053 static HANDLE
5054job_io_file_open(
Bram Moolenaar972c3b82017-01-12 21:44:49 +01005055 char_u *fname,
5056 DWORD dwDesiredAccess,
5057 DWORD dwShareMode,
5058 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
5059 DWORD dwCreationDisposition,
5060 DWORD dwFlagsAndAttributes)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005061{
5062 HANDLE h;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005063 WCHAR *wn;
Bram Moolenaara12a1612019-01-24 16:39:02 +01005064
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005065 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005066 if (wn == NULL)
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02005067 return INVALID_HANDLE_VALUE;
5068
5069 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
5070 lpSecurityAttributes, dwCreationDisposition,
5071 dwFlagsAndAttributes, NULL);
5072 vim_free(wn);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005073 return h;
5074}
5075
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005076/*
5077 * Turn the dictionary "env" into a NUL separated list that can be used as the
5078 * environment argument of vim_create_process().
5079 */
Bram Moolenaarba6febd2017-10-30 21:56:23 +01005080 void
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005081win32_build_env(dict_T *env, garray_T *gap, int is_terminal)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005082{
5083 hashitem_T *hi;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005084 long_u todo = env != NULL ? env->dv_hashtab.ht_used : 0;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005085 LPVOID base = GetEnvironmentStringsW();
5086
Bram Moolenaar0f873732019-12-05 20:28:46 +01005087 // for last \0
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005088 if (ga_grow(gap, 1) == FAIL)
5089 return;
5090
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005091 if (env != NULL)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005092 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005093 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005094 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005095 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005096 {
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005097 typval_T *item = &dict_lookup(hi)->di_tv;
5098 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01005099 WCHAR *wval = enc_to_utf16(tv_get_string(item), NULL);
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005100 --todo;
5101 if (wkey != NULL && wval != NULL)
5102 {
5103 size_t n;
5104 size_t lkey = wcslen(wkey);
5105 size_t lval = wcslen(wval);
Bram Moolenaar60104f12017-08-14 23:25:04 +02005106
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005107 if (ga_grow(gap, (int)(lkey + lval + 2)) != OK)
5108 continue;
5109 for (n = 0; n < lkey; n++)
5110 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n];
5111 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'=';
5112 for (n = 0; n < lval; n++)
5113 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n];
5114 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5115 }
Bram Moolenaarbdace832019-03-02 10:13:42 +01005116 vim_free(wkey);
5117 vim_free(wval);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005118 }
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005119 }
5120 }
5121
Bram Moolenaar355757a2020-02-10 22:06:32 +01005122 if (base)
5123 {
5124 WCHAR *p = (WCHAR*) base;
5125
5126 // for last \0
5127 if (ga_grow(gap, 1) == FAIL)
5128 return;
5129
5130 while (*p != 0 || *(p + 1) != 0)
5131 {
5132 if (ga_grow(gap, 1) == OK)
5133 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
5134 p++;
5135 }
5136 FreeEnvironmentStrings(base);
5137 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5138 }
5139
Bram Moolenaar493359e2018-06-12 20:25:52 +02005140# if defined(FEAT_CLIENTSERVER) || defined(FEAT_TERMINAL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005141 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005142# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005143 char_u *servername = get_vim_var_str(VV_SEND_SERVER);
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005144 size_t servername_len = STRLEN(servername);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005145# endif
5146# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005147 char_u *version = get_vim_var_str(VV_VERSION);
5148 size_t version_len = STRLEN(version);
Bram Moolenaar493359e2018-06-12 20:25:52 +02005149# endif
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005150 // size of "VIM_SERVERNAME=" and value,
5151 // plus "VIM_TERMINAL=" and value,
5152 // plus two terminating NULs
5153 size_t n = 0
Bram Moolenaar493359e2018-06-12 20:25:52 +02005154# ifdef FEAT_CLIENTSERVER
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005155 + 15 + servername_len
Bram Moolenaar493359e2018-06-12 20:25:52 +02005156# endif
5157# ifdef FEAT_TERMINAL
5158 + 13 + version_len + 2
5159# endif
5160 ;
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005161
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005162 if (ga_grow(gap, (int)n) == OK)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005163 {
Bram Moolenaar493359e2018-06-12 20:25:52 +02005164# ifdef FEAT_CLIENTSERVER
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005165 for (n = 0; n < 15; n++)
5166 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5167 (WCHAR)"VIM_SERVERNAME="[n];
Bram Moolenaard7a137f2018-06-12 18:05:24 +02005168 for (n = 0; n < servername_len; n++)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005169 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5170 (WCHAR)servername[n];
5171 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
Bram Moolenaar493359e2018-06-12 20:25:52 +02005172# endif
5173# ifdef FEAT_TERMINAL
5174 if (is_terminal)
5175 {
5176 for (n = 0; n < 13; n++)
5177 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5178 (WCHAR)"VIM_TERMINAL="[n];
5179 for (n = 0; n < version_len; n++)
5180 *((WCHAR*)gap->ga_data + gap->ga_len++) =
5181 (WCHAR)version[n];
5182 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
5183 }
5184# endif
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005185 }
5186 }
Bram Moolenaar79c6b512018-06-12 21:11:12 +02005187# endif
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005188}
5189
Bram Moolenaarb091f302019-01-19 14:37:00 +01005190/*
5191 * Create a pair of pipes.
5192 * Return TRUE for success, FALSE for failure.
5193 */
5194 static BOOL
5195create_pipe_pair(HANDLE handles[2])
5196{
5197 static LONG s;
5198 char name[64];
5199 SECURITY_ATTRIBUTES sa;
5200
5201 sprintf(name, "\\\\?\\pipe\\vim-%08lx-%08lx",
5202 GetCurrentProcessId(),
5203 InterlockedIncrement(&s));
5204
5205 // Create named pipe. Max size of named pipe is 65535.
5206 handles[1] = CreateNamedPipe(
5207 name,
5208 PIPE_ACCESS_OUTBOUND | FILE_FLAG_OVERLAPPED,
5209 PIPE_TYPE_BYTE | PIPE_NOWAIT,
Bram Moolenaar24058382019-01-24 23:11:49 +01005210 1, MAX_NAMED_PIPE_SIZE, 0, 0, NULL);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005211
5212 if (handles[1] == INVALID_HANDLE_VALUE)
5213 return FALSE;
5214
5215 sa.nLength = sizeof(sa);
5216 sa.bInheritHandle = TRUE;
5217 sa.lpSecurityDescriptor = NULL;
5218
5219 handles[0] = CreateFile(name,
5220 FILE_GENERIC_READ,
5221 FILE_SHARE_READ, &sa,
5222 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
5223
5224 if (handles[0] == INVALID_HANDLE_VALUE)
5225 {
Bram Moolenaar6982f422019-02-16 16:48:01 +01005226 CloseHandle(handles[1]);
Bram Moolenaarb091f302019-01-19 14:37:00 +01005227 return FALSE;
5228 }
5229
5230 return TRUE;
5231}
5232
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005233 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005234mch_job_start(char *cmd, job_T *job, jobopt_T *options)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005235{
5236 STARTUPINFO si;
5237 PROCESS_INFORMATION pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005238 HANDLE jo;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005239 SECURITY_ATTRIBUTES saAttr;
5240 channel_T *channel = NULL;
Bram Moolenaard8070362016-02-15 21:56:54 +01005241 HANDLE ifd[2];
5242 HANDLE ofd[2];
5243 HANDLE efd[2];
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005244 garray_T ga;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005245
5246 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5247 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5248 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
5249 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
5250 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5251 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
5252 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
5253
5254 if (use_out_for_err && use_null_for_out)
5255 use_null_for_err = TRUE;
Bram Moolenaard8070362016-02-15 21:56:54 +01005256
5257 ifd[0] = INVALID_HANDLE_VALUE;
5258 ifd[1] = INVALID_HANDLE_VALUE;
5259 ofd[0] = INVALID_HANDLE_VALUE;
5260 ofd[1] = INVALID_HANDLE_VALUE;
5261 efd[0] = INVALID_HANDLE_VALUE;
5262 efd[1] = INVALID_HANDLE_VALUE;
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005263 ga_init2(&ga, (int)sizeof(wchar_t), 500);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005264
Bram Moolenaar14207f42016-10-27 21:13:10 +02005265 jo = CreateJobObject(NULL, NULL);
5266 if (jo == NULL)
5267 {
5268 job->jv_status = JOB_FAILED;
5269 goto failed;
5270 }
5271
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005272 if (options->jo_env != NULL)
Bram Moolenaar52dbb5e2017-11-21 18:11:27 +01005273 win32_build_env(options->jo_env, &ga, FALSE);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005274
Bram Moolenaar76467df2016-02-12 19:30:26 +01005275 ZeroMemory(&pi, sizeof(pi));
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005276 ZeroMemory(&si, sizeof(si));
5277 si.cb = sizeof(si);
Bram Moolenaard8070362016-02-15 21:56:54 +01005278 si.dwFlags |= STARTF_USESHOWWINDOW;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005279 si.wShowWindow = SW_HIDE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005280
Bram Moolenaard8070362016-02-15 21:56:54 +01005281 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5282 saAttr.bInheritHandle = TRUE;
5283 saAttr.lpSecurityDescriptor = NULL;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005284
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005285 if (use_file_for_in)
5286 {
5287 char_u *fname = options->jo_io_name[PART_IN];
5288
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005289 ifd[0] = job_io_file_open(fname, GENERIC_READ,
5290 FILE_SHARE_READ | FILE_SHARE_WRITE,
5291 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
5292 if (ifd[0] == INVALID_HANDLE_VALUE)
Bram Moolenaar94d01912016-03-08 13:48:51 +01005293 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005294 semsg(_(e_notopen), fname);
Bram Moolenaar94d01912016-03-08 13:48:51 +01005295 goto failed;
5296 }
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005297 }
Bram Moolenaarb091f302019-01-19 14:37:00 +01005298 else if (!use_null_for_in
5299 && (!create_pipe_pair(ifd)
5300 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005301 goto failed;
5302
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005303 if (use_file_for_out)
5304 {
5305 char_u *fname = options->jo_io_name[PART_OUT];
5306
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005307 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
5308 FILE_SHARE_READ | FILE_SHARE_WRITE,
5309 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5310 if (ofd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005311 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005312 semsg(_(e_notopen), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005313 goto failed;
5314 }
5315 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005316 else if (!use_null_for_out &&
5317 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005318 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005319 goto failed;
5320
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005321 if (use_file_for_err)
5322 {
5323 char_u *fname = options->jo_io_name[PART_ERR];
5324
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005325 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
5326 FILE_SHARE_READ | FILE_SHARE_WRITE,
5327 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5328 if (efd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005329 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005330 semsg(_(e_notopen), fname);
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005331 goto failed;
5332 }
5333 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005334 else if (!use_out_for_err && !use_null_for_err &&
5335 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005336 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaard8070362016-02-15 21:56:54 +01005337 goto failed;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005338
Bram Moolenaard8070362016-02-15 21:56:54 +01005339 si.dwFlags |= STARTF_USESTDHANDLES;
5340 si.hStdInput = ifd[0];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005341 si.hStdOutput = ofd[1];
5342 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
5343
5344 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5345 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005346 if (options->jo_set & JO_CHANNEL)
5347 {
5348 channel = options->jo_channel;
5349 if (channel != NULL)
5350 ++channel->ch_refcount;
5351 }
5352 else
5353 channel = add_channel();
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005354 if (channel == NULL)
5355 goto failed;
5356 }
Bram Moolenaard8070362016-02-15 21:56:54 +01005357
5358 if (!vim_create_process(cmd, TRUE,
Bram Moolenaar14207f42016-10-27 21:13:10 +02005359 CREATE_SUSPENDED |
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005360 CREATE_DEFAULT_ERROR_MODE |
5361 CREATE_NEW_PROCESS_GROUP |
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005362 CREATE_UNICODE_ENVIRONMENT |
Bram Moolenaar76467df2016-02-12 19:30:26 +01005363 CREATE_NEW_CONSOLE,
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005364 &si, &pi,
5365 ga.ga_data,
5366 (char *)options->jo_cwd))
Bram Moolenaar76467df2016-02-12 19:30:26 +01005367 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005368 CloseHandle(jo);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005369 job->jv_status = JOB_FAILED;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005370 goto failed;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005371 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005372
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005373 ga_clear(&ga);
5374
Bram Moolenaar14207f42016-10-27 21:13:10 +02005375 if (!AssignProcessToJobObject(jo, pi.hProcess))
5376 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005377 // if failing, switch the way to terminate
5378 // process with TerminateProcess.
Bram Moolenaar14207f42016-10-27 21:13:10 +02005379 CloseHandle(jo);
5380 jo = NULL;
5381 }
5382 ResumeThread(pi.hThread);
Bram Moolenaar75578a32016-03-10 16:33:31 +01005383 CloseHandle(pi.hThread);
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005384 job->jv_proc_info = pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005385 job->jv_job_object = jo;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005386 job->jv_status = JOB_STARTED;
5387
Bram Moolenaar641ad6c2016-09-01 18:32:11 +02005388 CloseHandle(ifd[0]);
5389 CloseHandle(ofd[1]);
5390 if (!use_out_for_err && !use_null_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005391 CloseHandle(efd[1]);
Bram Moolenaard8070362016-02-15 21:56:54 +01005392
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005393 job->jv_channel = channel;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005394 if (channel != NULL)
5395 {
5396 channel_set_pipes(channel,
5397 use_file_for_in || use_null_for_in
5398 ? INVALID_FD : (sock_T)ifd[1],
5399 use_file_for_out || use_null_for_out
5400 ? INVALID_FD : (sock_T)ofd[0],
5401 use_out_for_err || use_file_for_err || use_null_for_err
5402 ? INVALID_FD : (sock_T)efd[0]);
5403 channel_set_job(channel, job, options);
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005404 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005405 return;
5406
5407failed:
Bram Moolenaard8070362016-02-15 21:56:54 +01005408 CloseHandle(ifd[0]);
5409 CloseHandle(ofd[0]);
5410 CloseHandle(efd[0]);
5411 CloseHandle(ifd[1]);
5412 CloseHandle(ofd[1]);
5413 CloseHandle(efd[1]);
Bram Moolenaarde279892016-03-11 22:19:44 +01005414 channel_unref(channel);
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005415 ga_clear(&ga);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005416}
5417
5418 char *
5419mch_job_status(job_T *job)
5420{
5421 DWORD dwExitCode = 0;
5422
Bram Moolenaar76467df2016-02-12 19:30:26 +01005423 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
5424 || dwExitCode != STILL_ACTIVE)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005425 {
Bram Moolenaareab089d2016-02-21 19:32:02 +01005426 job->jv_exitval = (int)dwExitCode;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005427 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005428 {
5429 ch_log(job->jv_channel, "Job ended");
5430 job->jv_status = JOB_ENDED;
5431 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005432 return "dead";
5433 }
5434 return "run";
5435}
5436
Bram Moolenaar97792de2016-10-15 18:36:49 +02005437 job_T *
5438mch_detect_ended_job(job_T *job_list)
5439{
5440 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
5441 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
5442 job_T *job = job_list;
5443
5444 while (job != NULL)
5445 {
5446 DWORD n;
5447 DWORD result;
5448
5449 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
5450 && job != NULL; job = job->jv_next)
5451 {
5452 if (job->jv_status == JOB_STARTED)
5453 {
5454 jobHandles[n] = job->jv_proc_info.hProcess;
5455 jobArray[n] = job;
5456 ++n;
5457 }
5458 }
5459 if (n == 0)
5460 continue;
5461 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
5462 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
5463 {
5464 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
5465
5466 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
5467 return wait_job;
5468 }
5469 }
5470 return NULL;
5471}
5472
Bram Moolenaarfb630902016-10-29 14:55:00 +02005473 static BOOL
5474terminate_all(HANDLE process, int code)
5475{
5476 PROCESSENTRY32 pe;
5477 HANDLE h = INVALID_HANDLE_VALUE;
5478 DWORD pid = GetProcessId(process);
5479
5480 if (pid != 0)
5481 {
5482 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5483 if (h != INVALID_HANDLE_VALUE)
5484 {
5485 pe.dwSize = sizeof(PROCESSENTRY32);
5486 if (!Process32First(h, &pe))
5487 goto theend;
5488
5489 do
5490 {
5491 if (pe.th32ParentProcessID == pid)
5492 {
5493 HANDLE ph = OpenProcess(
5494 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
5495 if (ph != NULL)
5496 {
5497 terminate_all(ph, code);
5498 CloseHandle(ph);
5499 }
5500 }
5501 } while (Process32Next(h, &pe));
5502
5503 CloseHandle(h);
5504 }
5505 }
5506
5507theend:
5508 return TerminateProcess(process, code);
5509}
5510
5511/*
5512 * Send a (deadly) signal to "job".
5513 * Return FAIL if it didn't work.
5514 */
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005515 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005516mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005517{
Bram Moolenaar923d9262016-02-25 20:56:01 +01005518 int ret;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005519
Bram Moolenaar923d9262016-02-25 20:56:01 +01005520 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
Bram Moolenaar76467df2016-02-12 19:30:26 +01005521 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005522 // deadly signal
Bram Moolenaar14207f42016-10-27 21:13:10 +02005523 if (job->jv_job_object != NULL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005524 {
5525 if (job->jv_channel != NULL && job->jv_channel->ch_anonymous_pipe)
5526 job->jv_channel->ch_killing = TRUE;
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005527 return TerminateJobObject(job->jv_job_object, -1) ? OK : FAIL;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01005528 }
Bram Moolenaarb3e195c2020-02-10 21:32:19 +01005529 return terminate_all(job->jv_proc_info.hProcess, -1) ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005530 }
5531
5532 if (!AttachConsole(job->jv_proc_info.dwProcessId))
5533 return FAIL;
5534 ret = GenerateConsoleCtrlEvent(
Bram Moolenaar923d9262016-02-25 20:56:01 +01005535 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
5536 job->jv_proc_info.dwProcessId)
5537 ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005538 FreeConsole();
5539 return ret;
5540}
5541
5542/*
5543 * Clear the data related to "job".
5544 */
5545 void
5546mch_clear_job(job_T *job)
5547{
5548 if (job->jv_status != JOB_FAILED)
5549 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005550 if (job->jv_job_object != NULL)
5551 CloseHandle(job->jv_job_object);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005552 CloseHandle(job->jv_proc_info.hProcess);
5553 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005554}
5555#endif
5556
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005558#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559
5560/*
5561 * Start termcap mode
5562 */
5563 static void
5564termcap_mode_start(void)
5565{
5566 DWORD cmodein;
5567
5568 if (g_fTermcapMode)
5569 return;
5570
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005571 if (!p_rs && USE_VTP)
5572 vtp_printf("\033[?1049h");
5573
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 SaveConsoleBuffer(&g_cbNonTermcap);
5575
5576 if (g_cbTermcap.IsValid)
5577 {
5578 /*
5579 * We've been in termcap mode before. Restore certain screen
5580 * characteristics, including the buffer size and the window
5581 * size. Since we will be redrawing the screen, we don't need
5582 * to restore the actual contents of the buffer.
5583 */
5584 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005585 reset_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
5587 Rows = g_cbTermcap.Info.dwSize.Y;
5588 Columns = g_cbTermcap.Info.dwSize.X;
5589 }
5590 else
5591 {
5592 /*
5593 * This is our first time entering termcap mode. Clear the console
5594 * screen buffer, and resize the buffer to match the current window
5595 * size. We will use this as the size of our editing environment.
5596 */
5597 ClearConsoleBuffer(g_attrCurrent);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005598 set_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005599 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
5600 }
5601
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005602# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603 resettitle();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005604# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605
5606 GetConsoleMode(g_hConIn, &cmodein);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 if (g_fMouseActive)
5608 cmodein |= ENABLE_MOUSE_INPUT;
5609 else
5610 cmodein &= ~ENABLE_MOUSE_INPUT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 cmodein |= ENABLE_WINDOW_INPUT;
5612 SetConsoleMode(g_hConIn, cmodein);
5613
5614 redraw_later_clear();
5615 g_fTermcapMode = TRUE;
5616}
5617
5618
5619/*
5620 * End termcap mode
5621 */
5622 static void
5623termcap_mode_end(void)
5624{
5625 DWORD cmodein;
5626 ConsoleBuffer *cb;
5627 COORD coord;
5628 DWORD dwDummy;
5629
5630 if (!g_fTermcapMode)
5631 return;
5632
5633 SaveConsoleBuffer(&g_cbTermcap);
5634
5635 GetConsoleMode(g_hConIn, &cmodein);
5636 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
5637 SetConsoleMode(g_hConIn, cmodein);
5638
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005639# ifdef FEAT_RESTORE_ORIG_SCREEN
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005640 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005641# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 cb = &g_cbNonTermcap;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01005643# endif
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005644 RestoreConsoleBuffer(cb, p_rs);
Bram Moolenaardf543822020-01-30 11:53:59 +01005645 restore_console_color_rgb();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 SetConsoleCursorInfo(g_hConOut, &g_cci);
5647
5648 if (p_rs || exiting)
5649 {
5650 /*
5651 * Clear anything that happens to be on the current line.
5652 */
5653 coord.X = 0;
5654 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
5655 FillConsoleOutputCharacter(g_hConOut, ' ',
5656 cb->Info.dwSize.X, coord, &dwDummy);
5657 /*
5658 * The following is just for aesthetics. If we are exiting without
5659 * restoring the screen, then we want to have a prompt string
5660 * appear at the bottom line. However, the command interpreter
5661 * seems to always advance the cursor one line before displaying
5662 * the prompt string, which causes the screen to scroll. To
5663 * counter this, move the cursor up one line before exiting.
5664 */
5665 if (exiting && !p_rs)
5666 coord.Y--;
5667 /*
5668 * Position the cursor at the leftmost column of the desired row.
5669 */
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005670 SetConsoleCursorPosition(g_hConOut, coord);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671 }
5672
Bram Moolenaar81ccbf12020-04-15 21:05:30 +02005673 if (!p_rs && USE_VTP)
Bram Moolenaar0afdcf82020-04-01 18:29:10 +02005674 vtp_printf("\033[?1049l");
5675
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676 g_fTermcapMode = FALSE;
5677}
Bram Moolenaar0f873732019-12-05 20:28:46 +01005678#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00005679
5680
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005681#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 void
5683mch_write(
Bram Moolenaar1266d672017-02-01 13:43:36 +01005684 char_u *s UNUSED,
5685 int len UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686{
Bram Moolenaar0f873732019-12-05 20:28:46 +01005687 // never used
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688}
5689
5690#else
5691
5692/*
5693 * clear `n' chars, starting from `coord'
5694 */
5695 static void
5696clear_chars(
5697 COORD coord,
5698 DWORD n)
5699{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005700 if (!USE_VTP)
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02005701 {
5702 DWORD dwDummy;
5703
5704 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5705 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord,
5706 &dwDummy);
5707 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005708 else
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02005709 {
5710 set_console_color_rgb();
5711 gotoxy(coord.X + 1, coord.Y + 1);
5712 vtp_printf("\033[%dX", n);
5713 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714}
5715
5716
5717/*
5718 * Clear the screen
5719 */
5720 static void
5721clear_screen(void)
5722{
5723 g_coord.X = g_coord.Y = 0;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005724
5725 if (!USE_VTP)
5726 clear_chars(g_coord, Rows * Columns);
5727 else
5728 {
5729 set_console_color_rgb();
5730 gotoxy(1, 1);
5731 vtp_printf("\033[2J");
5732 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733}
5734
5735
5736/*
5737 * Clear to end of display
5738 */
5739 static void
5740clear_to_end_of_display(void)
5741{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005742 COORD save = g_coord;
5743
5744 if (!USE_VTP)
5745 clear_chars(g_coord, (Rows - g_coord.Y - 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 * Columns + (Columns - g_coord.X));
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005747 else
5748 {
5749 set_console_color_rgb();
5750 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5751 vtp_printf("\033[0J");
5752
5753 gotoxy(save.X + 1, save.Y + 1);
5754 g_coord = save;
5755 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756}
5757
5758
5759/*
5760 * Clear to end of line
5761 */
5762 static void
5763clear_to_end_of_line(void)
5764{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005765 COORD save = g_coord;
5766
5767 if (!USE_VTP)
5768 clear_chars(g_coord, Columns - g_coord.X);
5769 else
5770 {
5771 set_console_color_rgb();
5772 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5773 vtp_printf("\033[0K");
5774
5775 gotoxy(save.X + 1, save.Y + 1);
5776 g_coord = save;
5777 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778}
5779
5780
5781/*
5782 * Scroll the scroll region up by `cLines' lines
5783 */
5784 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005785scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786{
5787 COORD oldcoord = g_coord;
5788
5789 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5790 delete_lines(cLines);
5791
5792 g_coord = oldcoord;
5793}
5794
5795
5796/*
5797 * Set the scroll region
5798 */
5799 static void
5800set_scroll_region(
5801 unsigned left,
5802 unsigned top,
5803 unsigned right,
5804 unsigned bottom)
5805{
5806 if (left >= right
5807 || top >= bottom
5808 || right > (unsigned) Columns - 1
5809 || bottom > (unsigned) Rows - 1)
5810 return;
5811
5812 g_srScrollRegion.Left = left;
5813 g_srScrollRegion.Top = top;
5814 g_srScrollRegion.Right = right;
5815 g_srScrollRegion.Bottom = bottom;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005816}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005817
Bram Moolenaar6982f422019-02-16 16:48:01 +01005818 static void
5819set_scroll_region_tb(
5820 unsigned top,
5821 unsigned bottom)
5822{
5823 if (top >= bottom || bottom > (unsigned)Rows - 1)
5824 return;
5825
5826 g_srScrollRegion.Top = top;
5827 g_srScrollRegion.Bottom = bottom;
5828}
5829
5830 static void
5831set_scroll_region_lr(
5832 unsigned left,
5833 unsigned right)
5834{
5835 if (left >= right || right > (unsigned)Columns - 1)
5836 return;
5837
5838 g_srScrollRegion.Left = left;
5839 g_srScrollRegion.Right = right;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840}
5841
5842
5843/*
5844 * Insert `cLines' lines at the current cursor position
5845 */
5846 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005847insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005849 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 COORD dest;
5851 CHAR_INFO fill;
5852
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005853 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5854
Bram Moolenaar6982f422019-02-16 16:48:01 +01005855 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 dest.Y = g_coord.Y + cLines;
5857
Bram Moolenaar6982f422019-02-16 16:48:01 +01005858 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 source.Top = g_coord.Y;
5860 source.Right = g_srScrollRegion.Right;
5861 source.Bottom = g_srScrollRegion.Bottom - cLines;
5862
Bram Moolenaar6982f422019-02-16 16:48:01 +01005863 clip.Left = g_srScrollRegion.Left;
5864 clip.Top = g_coord.Y;
5865 clip.Right = g_srScrollRegion.Right;
5866 clip.Bottom = g_srScrollRegion.Bottom;
5867
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005868 fill.Char.AsciiChar = ' ';
5869 if (!USE_VTP)
5870 fill.Attributes = g_attrCurrent;
5871 else
5872 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005874 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005875
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005876 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5877
Bram Moolenaar6982f422019-02-16 16:48:01 +01005878 // Here we have to deal with a win32 console flake: If the scroll
5879 // region looks like abc and we scroll c to a and fill with d we get
5880 // cbd... if we scroll block c one line at a time to a, we get cdd...
5881 // vim expects cdd consistently... So we have to deal with that
5882 // here... (this also occurs scrolling the same way in the other
5883 // direction).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884
5885 if (source.Bottom < dest.Y)
5886 {
5887 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005888 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889
Bram Moolenaar6982f422019-02-16 16:48:01 +01005890 coord.X = source.Left;
5891 for (i = clip.Top; i < dest.Y; ++i)
5892 {
5893 coord.Y = i;
5894 clear_chars(coord, source.Right - source.Left + 1);
5895 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005897
5898 if (USE_WT)
5899 {
5900 COORD coord;
5901 int i;
5902
5903 coord.X = source.Left;
5904 for (i = source.Top; i < dest.Y; ++i)
5905 {
5906 coord.Y = i;
5907 clear_chars(coord, source.Right - source.Left + 1);
5908 }
5909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005910}
5911
5912
5913/*
5914 * Delete `cLines' lines at the current cursor position
5915 */
5916 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005917delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918{
Bram Moolenaar6982f422019-02-16 16:48:01 +01005919 SMALL_RECT source, clip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 COORD dest;
5921 CHAR_INFO fill;
5922 int nb;
5923
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005924 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5925
Bram Moolenaar6982f422019-02-16 16:48:01 +01005926 dest.X = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 dest.Y = g_coord.Y;
5928
Bram Moolenaar6982f422019-02-16 16:48:01 +01005929 source.Left = g_srScrollRegion.Left;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930 source.Top = g_coord.Y + cLines;
5931 source.Right = g_srScrollRegion.Right;
5932 source.Bottom = g_srScrollRegion.Bottom;
5933
Bram Moolenaar6982f422019-02-16 16:48:01 +01005934 clip.Left = g_srScrollRegion.Left;
5935 clip.Top = g_coord.Y;
5936 clip.Right = g_srScrollRegion.Right;
5937 clip.Bottom = g_srScrollRegion.Bottom;
5938
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005939 fill.Char.AsciiChar = ' ';
5940 if (!USE_VTP)
5941 fill.Attributes = g_attrCurrent;
5942 else
5943 fill.Attributes = g_attrDefault;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005944
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005945 set_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005946
Bram Moolenaar3b5fef62019-03-17 14:54:53 +01005947 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
5948
Bram Moolenaar6982f422019-02-16 16:48:01 +01005949 // Here we have to deal with a win32 console flake; See insert_lines()
5950 // above.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951
5952 nb = dest.Y + (source.Bottom - source.Top) + 1;
5953
5954 if (nb < source.Top)
5955 {
5956 COORD coord;
Bram Moolenaar6982f422019-02-16 16:48:01 +01005957 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958
Bram Moolenaar6982f422019-02-16 16:48:01 +01005959 coord.X = source.Left;
5960 for (i = nb; i < clip.Bottom; ++i)
5961 {
5962 coord.Y = i;
5963 clear_chars(coord, source.Right - source.Left + 1);
5964 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005965 }
Bram Moolenaar06b7b582020-05-30 17:49:25 +02005966
5967 if (USE_WT)
5968 {
5969 COORD coord;
5970 int i;
5971
5972 coord.X = source.Left;
5973 for (i = nb; i <= source.Bottom; ++i)
5974 {
5975 coord.Y = i;
5976 clear_chars(coord, source.Right - source.Left + 1);
5977 }
5978 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979}
5980
5981
5982/*
Bram Moolenaar2313b612019-09-27 14:14:32 +02005983 * Set the cursor position to (x,y) (1-based).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005984 */
5985 static void
5986gotoxy(
5987 unsigned x,
5988 unsigned y)
5989{
5990 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
5991 return;
5992
Bram Moolenaarcafafb32018-02-22 21:07:09 +01005993 if (!USE_VTP)
Bram Moolenaar2313b612019-09-27 14:14:32 +02005994 {
Bram Moolenaar82e743c2020-03-26 15:39:53 +01005995 // There are reports of double-width characters not displayed
5996 // correctly. This workaround should fix it, similar to how it's done
5997 // for VTP.
5998 g_coord.X = 0;
5999 SetConsoleCursorPosition(g_hConOut, g_coord);
6000
Bram Moolenaar2313b612019-09-27 14:14:32 +02006001 // external cursor coords are 1-based; internal are 0-based
6002 g_coord.X = x - 1;
6003 g_coord.Y = y - 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006004 SetConsoleCursorPosition(g_hConOut, g_coord);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006005 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006006 else
Bram Moolenaar2313b612019-09-27 14:14:32 +02006007 {
6008 // Move the cursor to the left edge of the screen to prevent screen
Bram Moolenaara1299742019-10-10 16:36:00 +02006009 // destruction. Insider build bug. Always enabled because it's cheap
6010 // and avoids mistakes with recognizing the build.
6011 vtp_printf("\033[%d;%dH", g_coord.Y + 1, 1);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006012
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006013 vtp_printf("\033[%d;%dH", y, x);
Bram Moolenaar2313b612019-09-27 14:14:32 +02006014
6015 g_coord.X = x - 1;
6016 g_coord.Y = y - 1;
6017 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018}
6019
6020
6021/*
6022 * Set the current text attribute = (foreground | background)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006023 * See ../runtime/doc/os_win32.txt for the numbers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024 */
6025 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006026textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006028 g_attrCurrent = wAttr & 0xff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006029
6030 SetConsoleTextAttribute(g_hConOut, wAttr);
6031}
6032
6033
6034 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006035textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006036{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006037 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006039 if (!USE_VTP)
6040 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6041 else
6042 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043}
6044
6045
6046 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006047textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048{
Bram Moolenaar6383b922015-03-24 17:12:19 +01006049 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006051 if (!USE_VTP)
6052 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
6053 else
6054 vtp_sgr_bulk(wAttr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006055}
6056
6057
6058/*
6059 * restore the default text attribute (whatever we started with)
6060 */
6061 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006062normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006064 if (!USE_VTP)
6065 textattr(g_attrDefault);
6066 else
6067 vtp_sgr_bulk(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068}
6069
6070
6071static WORD g_attrPreStandout = 0;
6072
6073/*
6074 * Make the text standout, by brightening it
6075 */
6076 static void
6077standout(void)
6078{
6079 g_attrPreStandout = g_attrCurrent;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006080
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
6082}
6083
6084
6085/*
6086 * Turn off standout mode
6087 */
6088 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006089standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090{
6091 if (g_attrPreStandout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092 textattr(g_attrPreStandout);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006093
6094 g_attrPreStandout = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006095}
6096
6097
6098/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00006099 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100 */
6101 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006102mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103{
6104 char_u *p;
6105 int n;
6106
6107 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
6108 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006109 if (
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006110# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006111 !p_tgc &&
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006112# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006113 T_ME[0] == ESC && T_ME[1] == '|')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114 {
6115 p = T_ME + 2;
6116 n = getdigits(&p);
6117 if (*p == 'm' && n > 0)
6118 {
6119 cterm_normal_fg_color = (n & 0xf) + 1;
6120 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
6121 }
6122 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006123# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006124 cterm_normal_fg_gui_color = INVALCOLOR;
6125 cterm_normal_bg_gui_color = INVALCOLOR;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006126# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127}
6128
6129
6130/*
6131 * visual bell: flash the screen
6132 */
6133 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006134visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135{
6136 COORD coordOrigin = {0, 0};
6137 WORD attrFlash = ~g_attrCurrent & 0xff;
6138
6139 DWORD dwDummy;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006140 LPWORD oldattrs = ALLOC_MULT(WORD, Rows * Columns);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141
6142 if (oldattrs == NULL)
6143 return;
6144 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
6145 coordOrigin, &dwDummy);
6146 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
6147 coordOrigin, &dwDummy);
6148
Bram Moolenaar0f873732019-12-05 20:28:46 +01006149 Sleep(15); // wait for 15 msec
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006150 if (!USE_VTP)
6151 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152 coordOrigin, &dwDummy);
6153 vim_free(oldattrs);
6154}
6155
6156
6157/*
6158 * Make the cursor visible or invisible
6159 */
6160 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006161cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162{
6163 s_cursor_visible = fVisible;
Bram Moolenaar2695de62020-04-17 21:13:01 +02006164
6165 if (USE_VTP)
6166 vtp_printf("\033[?25%c", fVisible ? 'h' : 'l');
6167
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006168# ifdef MCH_CURSOR_SHAPE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169 mch_update_cursor();
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006170# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171}
6172
6173
6174/*
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006175 * Write "cbToWrite" bytes in `pchBuf' to the screen.
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006176 * Returns the number of bytes actually written (at least one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006178 static DWORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179write_chars(
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006180 char_u *pchBuf,
6181 DWORD cbToWrite)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006183 COORD coord = g_coord;
6184 DWORD written;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006185 DWORD n, cchwritten;
6186 static DWORD cells;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006187 static WCHAR *unicodebuf = NULL;
6188 static int unibuflen = 0;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006189 static int length;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006190 int cp = enc_utf8 ? CP_UTF8 : enc_codepage;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006191 static WCHAR *utf8spbuf = NULL;
6192 static int utf8splength;
6193 static DWORD utf8spcells;
6194 static WCHAR **utf8usingbuf = &unicodebuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006196 if (cbToWrite != 1 || *pchBuf != ' ' || !enc_utf8)
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006197 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006198 utf8usingbuf = &unicodebuf;
6199 do
6200 {
6201 length = MultiByteToWideChar(cp, 0, (LPCSTR)pchBuf, cbToWrite,
6202 unicodebuf, unibuflen);
6203 if (length && length <= unibuflen)
6204 break;
6205 vim_free(unicodebuf);
6206 unicodebuf = length ? LALLOC_MULT(WCHAR, length) : NULL;
6207 unibuflen = unibuflen ? 0 : length;
6208 } while(1);
6209 cells = mb_string2cells(pchBuf, cbToWrite);
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006210 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006211 else // cbToWrite == 1 && *pchBuf == ' ' && enc_utf8
6212 {
6213 if (utf8usingbuf != &utf8spbuf)
6214 {
6215 if (utf8spbuf == NULL)
6216 {
6217 cells = mb_string2cells((char_u *)" ", 1);
6218 length = MultiByteToWideChar(CP_UTF8, 0, " ", 1, NULL, 0);
6219 utf8spbuf = LALLOC_MULT(WCHAR, length);
6220 if (utf8spbuf != NULL)
6221 {
6222 MultiByteToWideChar(CP_UTF8, 0, " ", 1, utf8spbuf, length);
6223 utf8usingbuf = &utf8spbuf;
6224 utf8splength = length;
6225 utf8spcells = cells;
6226 }
6227 }
6228 else
6229 {
6230 utf8usingbuf = &utf8spbuf;
6231 length = utf8splength;
6232 cells = utf8spcells;
6233 }
6234 }
6235 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006236
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006237 if (!USE_VTP)
6238 {
6239 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
6240 coord, &written);
6241 // When writing fails or didn't write a single character, pretend one
6242 // character was written, otherwise we get stuck.
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006243 if (WriteConsoleOutputCharacterW(g_hConOut, *utf8usingbuf, length,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006244 coord, &cchwritten) == 0
6245 || cchwritten == 0 || cchwritten == (DWORD)-1)
6246 cchwritten = 1;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006247 }
6248 else
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006249 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006250 if (WriteConsoleW(g_hConOut, *utf8usingbuf, length, &cchwritten,
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006251 NULL) == 0 || cchwritten == 0)
6252 cchwritten = 1;
6253 }
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006254
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006255 if (cchwritten == length)
6256 {
6257 written = cbToWrite;
6258 g_coord.X += (SHORT)cells;
6259 }
6260 else
6261 {
6262 char_u *p = pchBuf;
6263 for (n = 0; n < cchwritten; n++)
6264 MB_CPTR_ADV(p);
6265 written = p - pchBuf;
6266 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
Bram Moolenaarac360bf2015-09-01 20:31:20 +02006267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268
6269 while (g_coord.X > g_srScrollRegion.Right)
6270 {
6271 g_coord.X -= (SHORT) Columns;
6272 if (g_coord.Y < g_srScrollRegion.Bottom)
6273 g_coord.Y++;
6274 }
6275
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006276 // Cursor under VTP is always in the correct position, no need to reset.
6277 if (!USE_VTP)
6278 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279
6280 return written;
6281}
6282
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006283 static char_u *
6284get_seq(
6285 int *args,
6286 int *count,
6287 char_u *head)
6288{
6289 int argc;
6290 char_u *p;
6291
6292 if (head == NULL || *head != '\033')
6293 return NULL;
6294
6295 argc = 0;
6296 p = head;
6297 ++p;
6298 do
6299 {
6300 ++p;
6301 args[argc] = getdigits(&p);
6302 argc += (argc < 15) ? 1 : 0;
6303 } while (*p == ';');
6304 *count = argc;
6305
6306 return p;
6307}
6308
6309 static char_u *
6310get_sgr(
6311 int *args,
6312 int *count,
6313 char_u *head)
6314{
6315 char_u *p = get_seq(args, count, head);
6316
6317 return (p && *p == 'm') ? ++p : NULL;
6318}
6319
6320/*
6321 * Pointer to next if SGR (^[[n;2;*;*;*m), NULL otherwise.
6322 */
6323 static char_u *
6324sgrn2(
6325 char_u *head,
6326 int n)
6327{
6328 int argc;
6329 int args[16];
6330 char_u *p = get_sgr(args, &argc, head);
6331
6332 return p && argc == 5 && args[0] == n && args[1] == 2 ? p : NULL;
6333}
6334
6335/*
6336 * Pointer to next if SGR(^[[nm)<space>ESC, NULL otherwise.
6337 */
6338 static char_u *
6339sgrnc(
6340 char_u *head,
6341 int n)
6342{
6343 int argc;
6344 int args[16];
6345 char_u *p = get_sgr(args, &argc, head);
6346
6347 return p && argc == 1 && args[0] == n && (p = skipwhite(p)) && *p == '\033'
6348 ? p : NULL;
6349}
6350
6351 static char_u *
6352skipblank(char_u *q)
6353{
6354 char_u *p = q;
6355
6356 while (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r')
6357 ++p;
6358 return p;
6359}
6360
6361/*
6362 * Pointer to the next if any whitespace that may follow SGR is ESC, otherwise
6363 * NULL.
6364 */
6365 static char_u *
6366sgrn2c(
6367 char_u *head,
6368 int n)
6369{
6370 char_u *p = sgrn2(head, n);
6371
6372 return p && *p != NUL && (p = skipblank(p)) && *p == '\033' ? p : NULL;
6373}
6374
6375/*
6376 * If there is only a newline between the sequence immediately following it,
6377 * a pointer to the character following the newline is returned.
6378 * Otherwise NULL.
6379 */
6380 static char_u *
6381sgrn2cn(
6382 char_u *head,
6383 int n)
6384{
6385 char_u *p = sgrn2(head, n);
6386
6387 return p && p[0] == 0x0a && p[1] == '\033' ? ++p : NULL;
6388}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006389
6390/*
6391 * mch_write(): write the output buffer to the screen, translating ESC
6392 * sequences into calls to console output routines.
6393 */
6394 void
6395mch_write(
6396 char_u *s,
6397 int len)
6398{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006399# ifdef VIMDLL
6400 if (gui.in_use)
6401 return;
6402# endif
6403
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404 s[len] = NUL;
6405
6406 if (!term_console)
6407 {
6408 write(1, s, (unsigned)len);
6409 return;
6410 }
6411
Bram Moolenaar0f873732019-12-05 20:28:46 +01006412 // translate ESC | sequences into faked bios calls
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413 while (len--)
6414 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006415 int prefix = -1;
6416 char_u ch;
6417
6418 // While processing a sequence, on rare occasions it seems that another
6419 // sequence may be inserted asynchronously.
6420 if (len < 0)
6421 {
6422 redraw_all_later(CLEAR);
6423 return;
6424 }
6425
6426 while((ch = s[++prefix]))
6427 if (ch <= 0x1e && !(ch != '\n' && ch != '\r' && ch != '\b'
6428 && ch != '\a' && ch != '\033'))
6429 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430
6431 if (p_wd)
6432 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006433 WaitForChar(p_wd, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434 if (prefix != 0)
6435 prefix = 1;
6436 }
6437
6438 if (prefix != 0)
6439 {
6440 DWORD nWritten;
6441
6442 nWritten = write_chars(s, prefix);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006443# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444 if (fdDump)
6445 {
6446 fputc('>', fdDump);
6447 fwrite(s, sizeof(char_u), nWritten, fdDump);
6448 fputs("<\n", fdDump);
6449 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006450# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451 len -= (nWritten - 1);
6452 s += nWritten;
6453 }
6454 else if (s[0] == '\n')
6455 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006456 // \n, newline: go to the beginning of the next line or scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457 if (g_coord.Y == g_srScrollRegion.Bottom)
6458 {
6459 scroll(1);
6460 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
6461 }
6462 else
6463 {
6464 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
6465 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006466# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006467 if (fdDump)
6468 fputs("\\n\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006469# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006470 s++;
6471 }
6472 else if (s[0] == '\r')
6473 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006474 // \r, carriage return: go to beginning of line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006476# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477 if (fdDump)
6478 fputs("\\r\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006479# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480 s++;
6481 }
6482 else if (s[0] == '\b')
6483 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006484 // \b, backspace: move cursor one position left
Bram Moolenaar071d4272004-06-13 20:20:40 +00006485 if (g_coord.X > g_srScrollRegion.Left)
6486 g_coord.X--;
6487 else if (g_coord.Y > g_srScrollRegion.Top)
6488 {
6489 g_coord.X = g_srScrollRegion.Right;
6490 g_coord.Y--;
6491 }
6492 gotoxy(g_coord.X + 1, g_coord.Y + 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006493# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494 if (fdDump)
6495 fputs("\\b\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006496# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497 s++;
6498 }
6499 else if (s[0] == '\a')
6500 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006501 // \a, bell
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502 MessageBeep(0xFFFFFFFF);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006503# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006504 if (fdDump)
6505 fputs("\\a\n", fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006506# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507 s++;
6508 }
6509 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
6510 {
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006511# ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006512 char_u *old_s = s;
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006513# endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006514 char_u *p;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006515 int arg1 = 0, arg2 = 0, argc = 0, args[16];
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006516 char_u *sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006517
6518 switch (s[2])
6519 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520 case '0': case '1': case '2': case '3': case '4':
6521 case '5': case '6': case '7': case '8': case '9':
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006522 if (*(p = get_seq(args, &argc, s)) != 'm')
6523 goto notsgr;
6524
6525 p = s;
6526
6527 // Handling frequent optional sequences. Output to the screen
6528 // takes too long, so do not output as much as possible.
6529
6530 // If resetFG,FG,BG,<cr>,BG,FG are connected, the preceding
6531 // resetFG,FG,BG are omitted.
6532 if (sgrn2(sgrn2(sgrn2cn(sgrn2(sgrnc(p, 39), 38), 48), 48), 38))
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006533 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006534 p = sgrn2(sgrn2(sgrnc(p, 39), 38), 48);
6535 len = len + 1 - (int)(p - s);
6536 s = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006537 break;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02006540 // If FG,BG,BG,FG of SGR are connected, the first FG can be
6541 // omitted.
6542 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 48), 38))
6543 p = sp;
6544
6545 // If FG,BG,FG,BG of SGR are connected, the first FG can be
6546 // omitted.
6547 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 38), 48))
6548 p = sp;
6549
6550 // If BG,BG of SGR are connected, the first BG can be omitted.
6551 if (sgrn2((sp = sgrn2(p, 48)), 48))
6552 p = sp;
6553
6554 // If restoreFG and FG are connected, the restoreFG can be
6555 // omitted.
6556 if (sgrn2((sp = sgrnc(p, 39)), 38))
6557 p = sp;
6558
6559 p = get_seq(args, &argc, p);
6560
6561notsgr:
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006562 arg1 = args[0];
6563 arg2 = args[1];
6564 if (*p == 'm')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006565 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006566 if (argc == 1 && args[0] == 0)
6567 normvideo();
6568 else if (argc == 1)
6569 {
6570 if (USE_VTP)
6571 textcolor((WORD) arg1);
6572 else
6573 textattr((WORD) arg1);
6574 }
6575 else if (USE_VTP)
6576 vtp_sgr_bulks(argc, args);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006577 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006578 else if (argc == 2 && *p == 'H')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579 {
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006580 gotoxy(arg2, arg1);
6581 }
6582 else if (argc == 2 && *p == 'r')
6583 {
6584 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
6585 }
Bram Moolenaar6982f422019-02-16 16:48:01 +01006586 else if (argc == 2 && *p == 'R')
6587 {
6588 set_scroll_region_tb(arg1, arg2);
6589 }
6590 else if (argc == 2 && *p == 'V')
6591 {
6592 set_scroll_region_lr(arg1, arg2);
6593 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006594 else if (argc == 1 && *p == 'A')
6595 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 gotoxy(g_coord.X + 1,
6597 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
6598 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006599 else if (argc == 1 && *p == 'b')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600 {
6601 textbackground((WORD) arg1);
6602 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01006603 else if (argc == 1 && *p == 'C')
6604 {
6605 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
6606 g_coord.Y + 1);
6607 }
6608 else if (argc == 1 && *p == 'f')
6609 {
6610 textcolor((WORD) arg1);
6611 }
6612 else if (argc == 1 && *p == 'H')
6613 {
6614 gotoxy(1, arg1);
6615 }
6616 else if (argc == 1 && *p == 'L')
6617 {
6618 insert_lines(arg1);
6619 }
6620 else if (argc == 1 && *p == 'M')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 {
6622 delete_lines(arg1);
6623 }
6624
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006625 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626 s = p + 1;
6627 break;
6628
Bram Moolenaar071d4272004-06-13 20:20:40 +00006629 case 'A':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006630 gotoxy(g_coord.X + 1,
6631 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
6632 goto got3;
6633
6634 case 'B':
6635 visual_bell();
6636 goto got3;
6637
6638 case 'C':
Bram Moolenaar071d4272004-06-13 20:20:40 +00006639 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
6640 g_coord.Y + 1);
6641 goto got3;
6642
6643 case 'E':
6644 termcap_mode_end();
6645 goto got3;
6646
6647 case 'F':
6648 standout();
6649 goto got3;
6650
6651 case 'f':
6652 standend();
6653 goto got3;
6654
6655 case 'H':
6656 gotoxy(1, 1);
6657 goto got3;
6658
6659 case 'j':
6660 clear_to_end_of_display();
6661 goto got3;
6662
6663 case 'J':
6664 clear_screen();
6665 goto got3;
6666
6667 case 'K':
6668 clear_to_end_of_line();
6669 goto got3;
6670
6671 case 'L':
6672 insert_lines(1);
6673 goto got3;
6674
6675 case 'M':
6676 delete_lines(1);
6677 goto got3;
6678
6679 case 'S':
6680 termcap_mode_start();
6681 goto got3;
6682
6683 case 'V':
6684 cursor_visible(TRUE);
6685 goto got3;
6686
6687 case 'v':
6688 cursor_visible(FALSE);
6689 goto got3;
6690
6691 got3:
6692 s += 3;
6693 len -= 2;
6694 }
6695
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006696# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697 if (fdDump)
6698 {
6699 fputs("ESC | ", fdDump);
6700 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
6701 fputc('\n', fdDump);
6702 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006703# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704 }
6705 else
6706 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006707 // Write a single character
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708 DWORD nWritten;
6709
6710 nWritten = write_chars(s, 1);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006711# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712 if (fdDump)
6713 {
6714 fputc('>', fdDump);
6715 fwrite(s, sizeof(char_u), nWritten, fdDump);
6716 fputs("<\n", fdDump);
6717 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006718# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006719
6720 len -= (nWritten - 1);
6721 s += nWritten;
6722 }
6723 }
6724
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006725# ifdef MCH_WRITE_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726 if (fdDump)
6727 fflush(fdDump);
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01006728# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729}
6730
Bram Moolenaar0f873732019-12-05 20:28:46 +01006731#endif // FEAT_GUI_MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00006732
6733
6734/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01006735 * Delay for "msec" milliseconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736 */
6737 void
6738mch_delay(
6739 long msec,
Bram Moolenaar0981c872020-08-23 14:28:37 +02006740 int flags UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006742#if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006743 Sleep((int)msec); // never wait for input
6744#else // Console
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006745# ifdef VIMDLL
6746 if (gui.in_use)
6747 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006748 Sleep((int)msec); // never wait for input
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006749 return;
6750 }
6751# endif
Bram Moolenaar0981c872020-08-23 14:28:37 +02006752 if (flags & MCH_DELAY_IGNOREINPUT)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006753# ifdef FEAT_MZSCHEME
6754 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
6755 {
6756 int towait = p_mzq;
6757
Bram Moolenaar0f873732019-12-05 20:28:46 +01006758 // if msec is large enough, wait by portions in p_mzq
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006759 while (msec > 0)
6760 {
6761 mzvim_check_threads();
6762 if (msec < towait)
6763 towait = msec;
6764 Sleep(towait);
6765 msec -= towait;
6766 }
6767 }
6768 else
6769# endif
6770 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006771 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006772 WaitForChar(msec, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006773#endif
6774}
6775
6776
6777/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01006778 * This version of remove is not scared by a readonly (backup) file.
6779 * This can also remove a symbolic link like Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780 * Return 0 for success, -1 for failure.
6781 */
6782 int
6783mch_remove(char_u *name)
6784{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006785 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786 int n;
6787
Bram Moolenaar203258c2016-01-17 22:15:16 +01006788 /*
6789 * On Windows, deleting a directory's symbolic link is done by
6790 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
6791 */
6792 if (mch_isdir(name) && mch_is_symbolic_link(name))
6793 return mch_rmdir(name);
6794
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006795 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
6796
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006797 wn = enc_to_utf16(name, NULL);
6798 if (wn == NULL)
6799 return -1;
6800
6801 n = DeleteFileW(wn) ? 0 : -1;
6802 vim_free(wn);
6803 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006804}
6805
6806
6807/*
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006808 * Check for an "interrupt signal": CTRL-break or CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006809 */
6810 void
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02006811mch_breakcheck(int force UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006812{
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006813#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
6814# ifdef VIMDLL
6815 if (!gui.in_use)
6816# endif
6817 if (g_fCtrlCPressed || g_fCBrkPressed)
6818 {
6819 ctrl_break_was_pressed = g_fCBrkPressed;
6820 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6821 got_int = TRUE;
6822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006823#endif
6824}
6825
Bram Moolenaar0f873732019-12-05 20:28:46 +01006826// physical RAM to leave for the OS
Bram Moolenaaree273972016-01-02 21:11:51 +01006827#define WINNT_RESERVE_BYTES (256*1024*1024)
Bram Moolenaaree273972016-01-02 21:11:51 +01006828
6829/*
6830 * How much main memory in KiB that can be used by VIM.
6831 */
Bram Moolenaaree273972016-01-02 21:11:51 +01006832 long_u
Bram Moolenaar1266d672017-02-01 13:43:36 +01006833mch_total_mem(int special UNUSED)
Bram Moolenaaree273972016-01-02 21:11:51 +01006834{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006835 MEMORYSTATUSEX ms;
6836
Bram Moolenaar0f873732019-12-05 20:28:46 +01006837 // Need to use GlobalMemoryStatusEx() when there is more memory than
6838 // what fits in 32 bits.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006839 ms.dwLength = sizeof(MEMORYSTATUSEX);
6840 GlobalMemoryStatusEx(&ms);
6841 if (ms.ullAvailVirtual < ms.ullTotalPhys)
Bram Moolenaaree273972016-01-02 21:11:51 +01006842 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006843 // Process address space fits in physical RAM, use all of it.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006844 return (long_u)(ms.ullAvailVirtual / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006845 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006846 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
Bram Moolenaaree273972016-01-02 21:11:51 +01006847 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006848 // Catch old NT box or perverse hardware setup.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006849 return (long_u)((ms.ullTotalPhys / 2) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006850 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006851 // Use physical RAM less reserve for OS + data.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006852 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006853}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854
Bram Moolenaar071d4272004-06-13 20:20:40 +00006855/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006856 * mch_wrename() works around a bug in rename (aka MoveFile) in
Bram Moolenaar071d4272004-06-13 20:20:40 +00006857 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
6858 * file whose short file name is "FOO.BAR" (its long file name will
6859 * be correct: "foo.bar~"). Because a file can be accessed by
6860 * either its SFN or its LFN, "foo.bar" has effectively been
6861 * renamed to "foo.bar", which is not at all what was wanted. This
6862 * seems to happen only when renaming files with three-character
6863 * extensions by appending a suffix that does not include ".".
6864 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
6865 *
6866 * There is another problem, which isn't really a bug but isn't right either:
6867 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
6868 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
6869 * service pack 6. Doesn't seem to happen on Windows 98.
6870 *
6871 * Like rename(), returns 0 upon success, non-zero upon failure.
6872 * Should probably set errno appropriately when errors occur.
6873 */
6874 int
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006875mch_wrename(WCHAR *wold, WCHAR *wnew)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876{
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006877 WCHAR *p;
6878 int i;
6879 WCHAR szTempFile[_MAX_PATH + 1];
6880 WCHAR szNewPath[_MAX_PATH + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006881 HANDLE hf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006882
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006883 // No need to play tricks unless the file name contains a "~" as the
6884 // seventh character.
6885 p = wold;
6886 for (i = 0; wold[i] != NUL; ++i)
6887 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
6888 && wold[i + 1] != 0)
6889 p = wold + i + 1;
6890 if ((int)(wold + i - p) < 8 || p[6] != '~')
6891 return (MoveFileW(wold, wnew) == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006892
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006893 // Get base path of new file name. Undocumented feature: If pszNewFile is
6894 // a directory, no error is returned and pszFilePart will be NULL.
6895 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006896 return -1;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006897 *p = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006898
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006899 // Get (and create) a unique temporary file name in directory of new file
6900 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006901 return -2;
6902
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006903 // blow the temp file away
6904 if (!DeleteFileW(szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 return -3;
6906
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006907 // rename old file to the temp file
6908 if (!MoveFileW(wold, szTempFile))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006909 return -4;
6910
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006911 // now create an empty file called pszOldFile; this prevents the operating
6912 // system using pszOldFile as an alias (SFN) if we're renaming within the
6913 // same directory. For example, we're editing a file called
6914 // filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
6915 // to filena~1.txt~ (i.e., we're making a backup while writing it), the
6916 // SFN for filena~1.txt~ will be filena~1.txt, by default, which will
6917 // cause all sorts of problems later in buf_write(). So, we create an
6918 // empty file called filena~1.txt and the system will have to find some
6919 // other SFN for filena~1.txt~, such as filena~2.txt
6920 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6922 return -5;
6923 if (!CloseHandle(hf))
6924 return -6;
6925
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006926 // rename the temp file to the new file
6927 if (!MoveFileW(szTempFile, wnew))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006928 {
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006929 // Renaming failed. Rename the file back to its old name, so that it
6930 // looks like nothing happened.
6931 (void)MoveFileW(szTempFile, wold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932 return -7;
6933 }
6934
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006935 // Seems to be left around on Novell filesystems
6936 DeleteFileW(szTempFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006938 // finally, remove the empty old file
6939 if (!DeleteFileW(wold))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940 return -8;
6941
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006942 return 0;
6943}
6944
6945
6946/*
6947 * Converts the filenames to UTF-16, then call mch_wrename().
6948 * Like rename(), returns 0 upon success, non-zero upon failure.
6949 */
6950 int
6951mch_rename(
6952 const char *pszOldFile,
6953 const char *pszNewFile)
6954{
6955 WCHAR *wold = NULL;
6956 WCHAR *wnew = NULL;
6957 int retval = -1;
6958
6959 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
6960 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
6961 if (wold != NULL && wnew != NULL)
6962 retval = mch_wrename(wold, wnew);
6963 vim_free(wold);
6964 vim_free(wnew);
6965 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006966}
6967
6968/*
6969 * Get the default shell for the current hardware platform
6970 */
6971 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006972default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006973{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006974 return "cmd.exe";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975}
6976
6977/*
6978 * mch_access() extends access() to do more detailed check on network drives.
6979 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
6980 */
6981 int
6982mch_access(char *n, int p)
6983{
6984 HANDLE hFile;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006985 int retval = -1; // default: fail
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006986 WCHAR *wn;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02006988 wn = enc_to_utf16((char_u *)n, NULL);
6989 if (wn == NULL)
6990 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006992 if (mch_isdir((char_u *)n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994 WCHAR TempNameW[_MAX_PATH + 16] = L"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006995
6996 if (p & R_OK)
6997 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006998 // Read check is performed by seeing if we can do a find file on
6999 // the directory for any file.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007000 int i;
7001 WIN32_FIND_DATAW d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007003 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
7004 TempNameW[i] = wn[i];
7005 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
7006 TempNameW[i++] = '\\';
7007 TempNameW[i++] = '*';
7008 TempNameW[i++] = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007010 hFile = FindFirstFileW(TempNameW, &d);
7011 if (hFile == INVALID_HANDLE_VALUE)
7012 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007013 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014 (void)FindClose(hFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 }
7016
7017 if (p & W_OK)
7018 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007019 // Trying to create a temporary file in the directory should catch
7020 // directories on read-only network shares. However, in
7021 // directories whose ACL allows writes but denies deletes will end
7022 // up keeping the temporary file :-(.
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007023 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
7024 goto getout;
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007025 else
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007026 DeleteFileW(TempNameW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007027 }
7028 }
7029 else
7030 {
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007031 // Don't consider a file read-only if another process has opened it.
7032 DWORD share_mode = FILE_SHARE_READ | FILE_SHARE_WRITE;
7033
Bram Moolenaar0f873732019-12-05 20:28:46 +01007034 // Trying to open the file for the required access does ACL, read-only
7035 // network share, and file attribute checks.
Bram Moolenaar5aa98962018-05-06 17:09:38 +02007036 DWORD access_mode = ((p & W_OK) ? GENERIC_WRITE : 0)
7037 | ((p & R_OK) ? GENERIC_READ : 0);
7038
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007039 hFile = CreateFileW(wn, access_mode, share_mode,
7040 NULL, OPEN_EXISTING, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041 if (hFile == INVALID_HANDLE_VALUE)
7042 goto getout;
7043 CloseHandle(hFile);
7044 }
7045
Bram Moolenaar0f873732019-12-05 20:28:46 +01007046 retval = 0; // success
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047getout:
Bram Moolenaar071d4272004-06-13 20:20:40 +00007048 vim_free(wn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049 return retval;
7050}
7051
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007053 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054 */
7055 int
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007056mch_open(const char *name, int flags, int mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057{
7058 WCHAR *wn;
7059 int f;
7060
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007061 wn = enc_to_utf16((char_u *)name, NULL);
7062 if (wn == NULL)
7063 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007065 f = _wopen(wn, flags, mode);
7066 vim_free(wn);
7067 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068}
7069
7070/*
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007071 * Version of fopen() that uses UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007072 */
7073 FILE *
Bram Moolenaarb6843a02017-08-02 22:07:12 +02007074mch_fopen(const char *name, const char *mode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075{
7076 WCHAR *wn, *wm;
7077 FILE *f = NULL;
7078
Bram Moolenaara12a1612019-01-24 16:39:02 +01007079#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0f873732019-12-05 20:28:46 +01007080 // Work around an annoying assertion in the Microsoft debug CRT
7081 // when mode's text/binary setting doesn't match _get_fmode().
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007082 char newMode = mode[strlen(mode) - 1];
7083 int oldMode = 0;
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007084
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007085 _get_fmode(&oldMode);
7086 if (newMode == 't')
7087 _set_fmode(_O_TEXT);
7088 else if (newMode == 'b')
7089 _set_fmode(_O_BINARY);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007090#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007091 wn = enc_to_utf16((char_u *)name, NULL);
7092 wm = enc_to_utf16((char_u *)mode, NULL);
7093 if (wn != NULL && wm != NULL)
7094 f = _wfopen(wn, wm);
7095 vim_free(wn);
7096 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00007097
Bram Moolenaara12a1612019-01-24 16:39:02 +01007098#if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007099 _set_fmode(oldMode);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007100#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007101 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007103
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104/*
7105 * SUB STREAM (aka info stream) handling:
7106 *
7107 * NTFS can have sub streams for each file. Normal contents of file is
7108 * stored in the main stream, and extra contents (author information and
7109 * title and so on) can be stored in sub stream. After Windows 2000, user
7110 * can access and store those informations in sub streams via explorer's
7111 * property menuitem in right click menu. Those informations in sub streams
7112 * were lost when copying only the main stream. So we have to copy sub
7113 * streams.
7114 *
7115 * Incomplete explanation:
7116 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
7117 * More useful info and an example:
7118 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
7119 */
7120
7121/*
7122 * Copy info stream data "substream". Read from the file with BackupRead(sh)
7123 * and write to stream "substream" of file "to".
7124 * Errors are ignored.
7125 */
7126 static void
7127copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
7128{
7129 HANDLE hTo;
7130 WCHAR *to_name;
7131
7132 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
7133 wcscpy(to_name, to);
7134 wcscat(to_name, substream);
7135
7136 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
7137 FILE_ATTRIBUTE_NORMAL, NULL);
7138 if (hTo != INVALID_HANDLE_VALUE)
7139 {
7140 long done;
7141 DWORD todo;
7142 DWORD readcnt, written;
7143 char buf[4096];
7144
Bram Moolenaar0f873732019-12-05 20:28:46 +01007145 // Copy block of bytes at a time. Abort when something goes wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007146 for (done = 0; done < len; done += written)
7147 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007148 // (size_t) cast for Borland C 5.5
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007149 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
7150 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007151 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
7152 FALSE, FALSE, context)
7153 || readcnt != todo
7154 || !WriteFile(hTo, buf, todo, &written, NULL)
7155 || written != todo)
7156 break;
7157 }
7158 CloseHandle(hTo);
7159 }
7160
7161 free(to_name);
7162}
7163
7164/*
7165 * Copy info streams from file "from" to file "to".
7166 */
7167 static void
7168copy_infostreams(char_u *from, char_u *to)
7169{
7170 WCHAR *fromw;
7171 WCHAR *tow;
7172 HANDLE sh;
7173 WIN32_STREAM_ID sid;
7174 int headersize;
7175 WCHAR streamname[_MAX_PATH];
7176 DWORD readcount;
7177 void *context = NULL;
7178 DWORD lo, hi;
7179 int len;
7180
Bram Moolenaar0f873732019-12-05 20:28:46 +01007181 // Convert the file names to wide characters.
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007182 fromw = enc_to_utf16(from, NULL);
7183 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184 if (fromw != NULL && tow != NULL)
7185 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007186 // Open the file for reading.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007187 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
7188 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
7189 if (sh != INVALID_HANDLE_VALUE)
7190 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007191 // Use BackupRead() to find the info streams. Repeat until we
7192 // have done them all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007193 for (;;)
7194 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007195 // Get the header to find the length of the stream name. If
7196 // the "readcount" is zero we have done all info streams.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007197 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007198 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007199 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
7200 &readcount, FALSE, FALSE, &context)
7201 || readcount == 0)
7202 break;
7203
Bram Moolenaar0f873732019-12-05 20:28:46 +01007204 // We only deal with streams that have a name. The normal
7205 // file data appears to be without a name, even though docs
7206 // suggest it is called "::$DATA".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007207 if (sid.dwStreamNameSize > 0)
7208 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007209 // Read the stream name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210 if (!BackupRead(sh, (LPBYTE)streamname,
7211 sid.dwStreamNameSize,
7212 &readcount, FALSE, FALSE, &context))
7213 break;
7214
Bram Moolenaar0f873732019-12-05 20:28:46 +01007215 // Copy an info stream with a name ":anything:$DATA".
7216 // Skip "::$DATA", it has no stream name (examples suggest
7217 // it might be used for the normal file contents).
7218 // Note that BackupRead() counts bytes, but the name is in
7219 // wide characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007220 len = readcount / sizeof(WCHAR);
7221 streamname[len] = 0;
7222 if (len > 7 && wcsicmp(streamname + len - 6,
7223 L":$DATA") == 0)
7224 {
7225 streamname[len - 6] = 0;
7226 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00007227 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007228 }
7229 }
7230
Bram Moolenaar0f873732019-12-05 20:28:46 +01007231 // Advance to the next stream. We might try seeking too far,
7232 // but BackupSeek() doesn't skip over stream borders, thus
7233 // that's OK.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007234 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007235 &lo, &hi, &context);
7236 }
7237
Bram Moolenaar0f873732019-12-05 20:28:46 +01007238 // Clear the context.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007239 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
7240
7241 CloseHandle(sh);
7242 }
7243 }
7244 vim_free(fromw);
7245 vim_free(tow);
7246}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247
7248/*
7249 * Copy file attributes from file "from" to file "to".
7250 * For Windows NT and later we copy info streams.
7251 * Always returns zero, errors are ignored.
7252 */
7253 int
7254mch_copy_file_attribute(char_u *from, char_u *to)
7255{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007256 // File streams only work on Windows NT and later.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007257 copy_infostreams(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007258 return 0;
7259}
7260
7261#if defined(MYRESETSTKOFLW) || defined(PROTO)
7262/*
7263 * Recreate a destroyed stack guard page in win32.
7264 * Written by Benjamin Peterson.
7265 */
7266
Bram Moolenaar0f873732019-12-05 20:28:46 +01007267// These magic numbers are from the MS header files
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007268# define MIN_STACK_WINNT 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00007269
7270/*
7271 * This function does the same thing as _resetstkoflw(), which is only
7272 * available in DevStudio .net and later.
7273 * Returns 0 for failure, 1 for success.
7274 */
7275 int
7276myresetstkoflw(void)
7277{
7278 BYTE *pStackPtr;
7279 BYTE *pGuardPage;
7280 BYTE *pStackBase;
7281 BYTE *pLowestPossiblePage;
7282 MEMORY_BASIC_INFORMATION mbi;
7283 SYSTEM_INFO si;
7284 DWORD nPageSize;
7285 DWORD dummy;
7286
Bram Moolenaar0f873732019-12-05 20:28:46 +01007287 // We need to know the system page size.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007288 GetSystemInfo(&si);
7289 nPageSize = si.dwPageSize;
7290
Bram Moolenaar0f873732019-12-05 20:28:46 +01007291 // ...and the current stack pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +00007292 pStackPtr = (BYTE*)_alloca(1);
7293
Bram Moolenaar0f873732019-12-05 20:28:46 +01007294 // ...and the base of the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007295 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
7296 return 0;
7297 pStackBase = (BYTE*)mbi.AllocationBase;
7298
Bram Moolenaar4b96df52020-01-26 22:00:26 +01007299 // ...and the page that's min_stack_req pages away from stack base; this is
Bram Moolenaar0f873732019-12-05 20:28:46 +01007300 // the lowest page we could use.
Bram Moolenaarcea912a2016-10-12 14:20:24 +02007301 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007302
Bram Moolenaar071d4272004-06-13 20:20:40 +00007303 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007304 // We want the first committed page in the stack Start at the stack
7305 // base and move forward through memory until we find a committed block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007306 BYTE *pBlock = pStackBase;
7307
Bram Moolenaara466c992005-07-09 21:03:22 +00007308 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007309 {
7310 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
7311 return 0;
7312
7313 pBlock += mbi.RegionSize;
7314
7315 if (mbi.State & MEM_COMMIT)
7316 break;
7317 }
7318
Bram Moolenaar0f873732019-12-05 20:28:46 +01007319 // mbi now describes the first committed block in the stack.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007320 if (mbi.Protect & PAGE_GUARD)
7321 return 1;
7322
Bram Moolenaar0f873732019-12-05 20:28:46 +01007323 // decide where the guard page should start
Bram Moolenaar071d4272004-06-13 20:20:40 +00007324 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
7325 pGuardPage = pLowestPossiblePage;
7326 else
7327 pGuardPage = (BYTE*)mbi.BaseAddress;
7328
Bram Moolenaar0f873732019-12-05 20:28:46 +01007329 // allocate the guard page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007330 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
7331 return 0;
7332
Bram Moolenaar0f873732019-12-05 20:28:46 +01007333 // apply the guard attribute to the page
Bram Moolenaar071d4272004-06-13 20:20:40 +00007334 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
7335 &dummy))
7336 return 0;
7337 }
7338
7339 return 1;
7340}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007341#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007342
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007343
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007344/*
7345 * The command line arguments in UCS2
7346 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007347static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007348static LPWSTR *ArglistW = NULL;
7349static int global_argc = 0;
7350static char **global_argv;
7351
Bram Moolenaar0f873732019-12-05 20:28:46 +01007352static int used_file_argc = 0; // last argument in global_argv[] used
7353 // for the argument list.
7354static int *used_file_indexes = NULL; // indexes in global_argv[] for
7355 // command line arguments added to
7356 // the argument list
7357static int used_file_count = 0; // nr of entries in used_file_indexes
7358static int used_file_literal = FALSE; // take file names literally
7359static int used_file_full_path = FALSE; // file name was full path
7360static int used_file_diff_mode = FALSE; // file name was with diff mode
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007361static int used_alist_count = 0;
7362
7363
7364/*
7365 * Get the command line arguments. Unicode version.
7366 * Returns argc. Zero when something fails.
7367 */
7368 int
7369get_cmd_argsW(char ***argvp)
7370{
7371 char **argv = NULL;
7372 int argc = 0;
7373 int i;
7374
Bram Moolenaar14993322014-09-09 12:25:33 +02007375 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007376 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
7377 if (ArglistW != NULL)
7378 {
7379 argv = malloc((nArgsW + 1) * sizeof(char *));
7380 if (argv != NULL)
7381 {
7382 argc = nArgsW;
7383 argv[argc] = NULL;
7384 for (i = 0; i < argc; ++i)
7385 {
7386 int len;
7387
Bram Moolenaar0f873732019-12-05 20:28:46 +01007388 // Convert each Unicode argument to the current codepage.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007389 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007390 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007391 (LPSTR *)&argv[i], &len, 0, 0);
7392 if (argv[i] == NULL)
7393 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007394 // Out of memory, clear everything.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007395 while (i > 0)
7396 free(argv[--i]);
7397 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01007398 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007399 argc = 0;
7400 }
7401 }
7402 }
7403 }
7404
7405 global_argc = argc;
7406 global_argv = argv;
7407 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02007408 {
7409 if (used_file_indexes != NULL)
7410 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007411 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02007412 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007413
7414 if (argvp != NULL)
7415 *argvp = argv;
7416 return argc;
7417}
7418
7419 void
7420free_cmd_argsW(void)
7421{
7422 if (ArglistW != NULL)
7423 {
7424 GlobalFree(ArglistW);
7425 ArglistW = NULL;
7426 }
7427}
7428
7429/*
7430 * Remember "name" is an argument that was added to the argument list.
7431 * This avoids that we have to re-parse the argument list when fix_arg_enc()
7432 * is called.
7433 */
7434 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007435used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007436{
7437 int i;
7438
7439 if (used_file_indexes == NULL)
7440 return;
7441 for (i = used_file_argc + 1; i < global_argc; ++i)
7442 if (STRCMP(global_argv[i], name) == 0)
7443 {
7444 used_file_argc = i;
7445 used_file_indexes[used_file_count++] = i;
7446 break;
7447 }
7448 used_file_literal = literal;
7449 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007450 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007451}
7452
7453/*
7454 * Remember the length of the argument list as it was. If it changes then we
7455 * leave it alone when 'encoding' is set.
7456 */
7457 void
7458set_alist_count(void)
7459{
7460 used_alist_count = GARGCOUNT;
7461}
7462
7463/*
7464 * Fix the encoding of the command line arguments. Invoked when 'encoding'
7465 * has been changed while starting up. Use the UCS-2 command line arguments
7466 * and convert them to 'encoding'.
7467 */
7468 void
7469fix_arg_enc(void)
7470{
7471 int i;
7472 int idx;
7473 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007474 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007475
Bram Moolenaar0f873732019-12-05 20:28:46 +01007476 // Safety checks:
7477 // - if argument count differs between the wide and non-wide argument
7478 // list, something must be wrong.
7479 // - the file name arguments must have been located.
7480 // - the length of the argument list wasn't changed by the user.
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007481 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007482 || ArglistW == NULL
7483 || used_file_indexes == NULL
7484 || used_file_count == 0
7485 || used_alist_count != GARGCOUNT)
7486 return;
7487
Bram Moolenaar0f873732019-12-05 20:28:46 +01007488 // Remember the buffer numbers for the arguments.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02007489 fnum_list = ALLOC_MULT(int, GARGCOUNT);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007490 if (fnum_list == NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007491 return; // out of memory
Bram Moolenaar86b68352004-12-27 21:59:20 +00007492 for (i = 0; i < GARGCOUNT; ++i)
7493 fnum_list[i] = GARGLIST[i].ae_fnum;
7494
Bram Moolenaar0f873732019-12-05 20:28:46 +01007495 // Clear the argument list. Make room for the new arguments.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007496 alist_clear(&global_alist);
7497 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007498 return; // out of memory
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007499
7500 for (i = 0; i < used_file_count; ++i)
7501 {
7502 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00007503 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007504 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007505 {
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007506 int literal = used_file_literal;
7507
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007508#ifdef FEAT_DIFF
Bram Moolenaar0f873732019-12-05 20:28:46 +01007509 // When using diff mode may need to concatenate file name to
7510 // directory name. Just like it's done in main().
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007511 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
7512 && !mch_isdir(alist_name(&GARGLIST[0])))
7513 {
7514 char_u *r;
7515
7516 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
7517 if (r != NULL)
7518 {
7519 vim_free(str);
7520 str = r;
7521 }
7522 }
Bram Moolenaar912bc4a2019-12-01 18:58:11 +01007523#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007524 // Re-use the old buffer by renaming it. When not using literal
7525 // names it's done by alist_expand() below.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007526 if (used_file_literal)
7527 buf_set_name(fnum_list[i], str);
7528
Bram Moolenaar0f873732019-12-05 20:28:46 +01007529 // Check backtick literal. backtick literal is already expanded in
7530 // main.c, so this part add str as literal.
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007531 if (literal == FALSE)
7532 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +02007533 size_t len = STRLEN(str);
7534
Bram Moolenaar39d21e32017-08-05 23:09:31 +02007535 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
7536 literal = TRUE;
7537 }
7538 alist_add(&global_alist, str, literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00007539 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007540 }
7541
7542 if (!used_file_literal)
7543 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007544 // Now expand wildcards in the arguments.
7545 // Temporarily add '(' and ')' to 'isfname'. These are valid
7546 // filename characters but are excluded from 'isfname' to make
7547 // "gf" work on a file name in parenthesis (e.g.: see vim.h).
7548 // Also, unset wildignore to not be influenced by this option.
7549 // The arguments specified in command-line should be kept even if
7550 // encoding options were changed.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007551 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007552 do_cmdline_cmd((char_u *)":let SaVe_WIG = &wig|set wig=");
Bram Moolenaar86b68352004-12-27 21:59:20 +00007553 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007554 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
Bram Moolenaar20586cb2018-03-08 22:03:14 +01007555 do_cmdline_cmd((char_u *)":let &wig = SaVe_WIG|unlet SaVe_WIG");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007556 }
7557
Bram Moolenaar0f873732019-12-05 20:28:46 +01007558 // If wildcard expansion failed, we are editing the first file of the
7559 // arglist and there is no file name: Edit the first argument now.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007560 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7561 {
7562 do_cmdline_cmd((char_u *)":rewind");
7563 if (GARGCOUNT == 1 && used_file_full_path)
Bram Moolenaarb7407d32018-02-03 17:36:27 +01007564 (void)vim_chdirfile(alist_name(&GARGLIST[0]), "drop");
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007565 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007566
7567 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007568}
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007569
7570 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02007571mch_setenv(char *var, char *value, int x UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007572{
7573 char_u *envbuf;
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007574 WCHAR *p;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007575
Bram Moolenaar964b3742019-05-24 18:54:09 +02007576 envbuf = alloc(STRLEN(var) + STRLEN(value) + 2);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007577 if (envbuf == NULL)
7578 return -1;
7579
7580 sprintf((char *)envbuf, "%s=%s", var, value);
7581
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007582 p = enc_to_utf16(envbuf, NULL);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007583
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007584 vim_free(envbuf);
7585 if (p == NULL)
7586 return -1;
7587 _wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007588#ifdef libintl_wputenv
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007589 libintl_wputenv(p);
Bram Moolenaara12a1612019-01-24 16:39:02 +01007590#endif
Bram Moolenaar0eb035c2019-04-02 22:15:55 +02007591 // Unlike Un*x systems, we can free the string for _wputenv().
7592 vim_free(p);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007593
7594 return 0;
7595}
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007596
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007597/*
7598 * Support for 256 colors and 24-bit colors was added in Windows 10
7599 * version 1703 (Creators update).
7600 */
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007601#define VTP_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 15063)
7602
7603/*
7604 * Support for pseudo-console (ConPTY) was added in windows 10
Bram Moolenaar57da6982019-09-13 22:30:11 +02007605 * version 1809 (October 2018 update).
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007606 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007607#define CONPTY_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 17763)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007608
7609/*
7610 * ConPTY differences between versions, need different logic.
7611 * version 1903 (May 2019 update).
7612 */
7613#define CONPTY_1903_BUILD MAKE_VER(10, 0, 18362)
7614
7615/*
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007616 * version 1909 (November 2019 update).
7617 */
7618#define CONPTY_1909_BUILD MAKE_VER(10, 0, 18363)
7619
7620/*
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007621 * Stay ahead of the next update, and when it's done, fix this.
7622 * version ? (2020 update, temporarily use the build number of insider preview)
7623 */
7624#define CONPTY_NEXT_UPDATE_BUILD MAKE_VER(10, 0, 19587)
7625
7626/*
Bram Moolenaar57da6982019-09-13 22:30:11 +02007627 * Confirm until this version. Also the logic changes.
7628 * insider preview.
7629 */
Bram Moolenaar4c063dd2019-10-04 21:29:12 +02007630#define CONPTY_INSIDER_BUILD MAKE_VER(10, 0, 18995)
Bram Moolenaar57da6982019-09-13 22:30:11 +02007631
7632/*
7633 * Not stable now.
7634 */
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007635#define CONPTY_STABLE_BUILD MAKE_VER(10, 0, 32767) // T.B.D.
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007636
7637 static void
7638vtp_flag_init(void)
7639{
7640 DWORD ver = get_build_number();
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007641#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007642 DWORD mode;
7643 HANDLE out;
7644
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007645# ifdef VIMDLL
7646 if (!gui.in_use)
7647# endif
7648 {
7649 out = GetStdHandle(STD_OUTPUT_HANDLE);
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007650
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007651 vtp_working = (ver >= VTP_FIRST_SUPPORT_BUILD) ? 1 : 0;
7652 GetConsoleMode(out, &mode);
7653 mode |= (ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
7654 if (SetConsoleMode(out, mode) == 0)
7655 vtp_working = 0;
7656 }
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007657#endif
7658
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007659 if (ver >= CONPTY_FIRST_SUPPORT_BUILD)
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01007660 conpty_working = 1;
7661 if (ver >= CONPTY_STABLE_BUILD)
7662 conpty_stable = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007663
Bram Moolenaar57da6982019-09-13 22:30:11 +02007664 if (ver <= CONPTY_INSIDER_BUILD)
7665 conpty_type = 3;
Bram Moolenaar36e7a822019-11-13 21:49:24 +01007666 if (ver <= CONPTY_1909_BUILD)
7667 conpty_type = 2;
Bram Moolenaar57da6982019-09-13 22:30:11 +02007668 if (ver <= CONPTY_1903_BUILD)
7669 conpty_type = 2;
7670 if (ver < CONPTY_FIRST_SUPPORT_BUILD)
7671 conpty_type = 1;
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02007672
7673 if (ver >= CONPTY_NEXT_UPDATE_BUILD)
7674 conpty_fix_type = 1;
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01007675}
7676
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007677#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007678
7679 static void
7680vtp_init(void)
7681{
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007682 HMODULE hKerneldll;
7683 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007684# ifdef FEAT_TERMGUICOLORS
7685 COLORREF fg, bg;
7686# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007687
Bram Moolenaar0f873732019-12-05 20:28:46 +01007688 // Use functions supported from Vista
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007689 hKerneldll = GetModuleHandle("kernel32.dll");
7690 if (hKerneldll != NULL)
7691 {
7692 pGetConsoleScreenBufferInfoEx =
7693 (PfnGetConsoleScreenBufferInfoEx)GetProcAddress(
7694 hKerneldll, "GetConsoleScreenBufferInfoEx");
7695 pSetConsoleScreenBufferInfoEx =
7696 (PfnSetConsoleScreenBufferInfoEx)GetProcAddress(
7697 hKerneldll, "SetConsoleScreenBufferInfoEx");
7698 if (pGetConsoleScreenBufferInfoEx != NULL
7699 && pSetConsoleScreenBufferInfoEx != NULL)
7700 has_csbiex = TRUE;
7701 }
7702
7703 csbi.cbSize = sizeof(csbi);
7704 if (has_csbiex)
7705 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007706 save_console_bg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_bg];
7707 save_console_fg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_fg];
Bram Moolenaardf543822020-01-30 11:53:59 +01007708 store_console_bg_rgb = save_console_bg_rgb;
7709 store_console_fg_rgb = save_console_fg_rgb;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007710
7711# ifdef FEAT_TERMGUICOLORS
7712 bg = (COLORREF)csbi.ColorTable[g_color_index_bg];
7713 fg = (COLORREF)csbi.ColorTable[g_color_index_fg];
7714 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7715 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7716 default_console_color_bg = bg;
7717 default_console_color_fg = fg;
Bram Moolenaarc4568ab2018-11-16 16:21:05 +01007718# endif
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007719
7720 set_console_color_rgb();
7721}
7722
7723 static void
7724vtp_exit(void)
7725{
Bram Moolenaardf543822020-01-30 11:53:59 +01007726 restore_console_color_rgb();
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007727}
7728
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007729 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007730vtp_printf(
7731 char *format,
7732 ...)
7733{
7734 char_u buf[100];
7735 va_list list;
7736 DWORD result;
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007737 int len;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007738
7739 va_start(list, format);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007740 len = vim_vsnprintf((char *)buf, 100, (char *)format, list);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007741 va_end(list);
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007742 WriteConsoleA(g_hConOut, buf, (DWORD)len, &result, NULL);
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007743 return (int)result;
7744}
7745
7746 static void
7747vtp_sgr_bulk(
7748 int arg)
7749{
7750 int args[1];
7751
7752 args[0] = arg;
7753 vtp_sgr_bulks(1, args);
7754}
7755
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007756#define FAST256(x) \
7757 if ((*p-- = "0123456789"[(n = x % 10)]) \
7758 && x >= 10 && (*p-- = "0123456789"[((m = x % 100) - n) / 10]) \
7759 && x >= 100 && (*p-- = "012"[((x & 0xff) - m) / 100]));
7760
7761#define FAST256CASE(x) \
7762 case x: \
7763 FAST256(newargs[x - 1]);
7764
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007765 static void
7766vtp_sgr_bulks(
7767 int argc,
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007768 int *args)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007769{
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007770#define MAXSGR 16
7771#define SGRBUFSIZE 2 + 4 * MAXSGR + 1 // '\033[' + SGR + 'm'
7772 char_u buf[SGRBUFSIZE];
7773 char_u *p;
7774 int in, out;
7775 int newargs[16];
7776 static int sgrfgr = -1, sgrfgg, sgrfgb;
7777 static int sgrbgr = -1, sgrbgg, sgrbgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007778
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007779 if (argc == 0)
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007780 {
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007781 sgrfgr = sgrbgr = -1;
7782 vtp_printf("033[m");
7783 return;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007784 }
Bram Moolenaar4e5534f2020-04-30 20:59:57 +02007785
7786 in = out = 0;
7787 while (in < argc)
7788 {
7789 int s = args[in];
7790 int copylen = 1;
7791
7792 if (s == 38)
7793 {
7794 if (argc - in >= 5 && args[in + 1] == 2)
7795 {
7796 if (sgrfgr == args[in + 2] && sgrfgg == args[in + 3]
7797 && sgrfgb == args[in + 4])
7798 {
7799 in += 5;
7800 copylen = 0;
7801 }
7802 else
7803 {
7804 sgrfgr = args[in + 2];
7805 sgrfgg = args[in + 3];
7806 sgrfgb = args[in + 4];
7807 copylen = 5;
7808 }
7809 }
7810 else if (argc - in >= 3 && args[in + 1] == 5)
7811 {
7812 sgrfgr = -1;
7813 copylen = 3;
7814 }
7815 }
7816 else if (s == 48)
7817 {
7818 if (argc - in >= 5 && args[in + 1] == 2)
7819 {
7820 if (sgrbgr == args[in + 2] && sgrbgg == args[in + 3]
7821 && sgrbgb == args[in + 4])
7822 {
7823 in += 5;
7824 copylen = 0;
7825 }
7826 else
7827 {
7828 sgrbgr = args[in + 2];
7829 sgrbgg = args[in + 3];
7830 sgrbgb = args[in + 4];
7831 copylen = 5;
7832 }
7833 }
7834 else if (argc - in >= 3 && args[in + 1] == 5)
7835 {
7836 sgrbgr = -1;
7837 copylen = 3;
7838 }
7839 }
7840 else if (30 <= s && s <= 39)
7841 sgrfgr = -1;
7842 else if (90 <= s && s <= 97)
7843 sgrfgr = -1;
7844 else if (40 <= s && s <= 49)
7845 sgrbgr = -1;
7846 else if (100 <= s && s <= 107)
7847 sgrbgr = -1;
7848 else if (s == 0)
7849 sgrfgr = sgrbgr = -1;
7850
7851 while (copylen--)
7852 newargs[out++] = args[in++];
7853 }
7854
7855 p = &buf[sizeof(buf) - 1];
7856 *p-- = 'm';
7857
7858 switch (out)
7859 {
7860 int n, m;
7861 DWORD r;
7862
7863 FAST256CASE(16);
7864 *p-- = ';';
7865 FAST256CASE(15);
7866 *p-- = ';';
7867 FAST256CASE(14);
7868 *p-- = ';';
7869 FAST256CASE(13);
7870 *p-- = ';';
7871 FAST256CASE(12);
7872 *p-- = ';';
7873 FAST256CASE(11);
7874 *p-- = ';';
7875 FAST256CASE(10);
7876 *p-- = ';';
7877 FAST256CASE(9);
7878 *p-- = ';';
7879 FAST256CASE(8);
7880 *p-- = ';';
7881 FAST256CASE(7);
7882 *p-- = ';';
7883 FAST256CASE(6);
7884 *p-- = ';';
7885 FAST256CASE(5);
7886 *p-- = ';';
7887 FAST256CASE(4);
7888 *p-- = ';';
7889 FAST256CASE(3);
7890 *p-- = ';';
7891 FAST256CASE(2);
7892 *p-- = ';';
7893 FAST256CASE(1);
7894 *p-- = '[';
7895 *p = '\033';
7896 WriteConsoleA(g_hConOut, p, (DWORD)(&buf[SGRBUFSIZE] - p), &r, NULL);
7897 default:
7898 break;
7899 }
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007900}
7901
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007902 static void
7903wt_init(void)
7904{
7905 wt_working = (mch_getenv("WT_SESSION") != NULL);
7906}
7907
7908 int
7909use_wt(void)
7910{
7911 return USE_WT;
7912}
7913
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007914# ifdef FEAT_TERMGUICOLORS
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007915 static int
7916ctermtoxterm(
7917 int cterm)
7918{
Bram Moolenaar9894e392018-05-05 14:29:06 +02007919 char_u r, g, b, idx;
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007920
7921 cterm_color2rgb(cterm, &r, &g, &b, &idx);
7922 return (((int)r << 16) | ((int)g << 8) | (int)b);
7923}
Bram Moolenaar8a938af2018-05-01 17:30:41 +02007924# endif
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02007925
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007926 static void
7927set_console_color_rgb(void)
7928{
7929# ifdef FEAT_TERMGUICOLORS
7930 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
Bram Moolenaara050b942019-12-02 21:35:31 +01007931 guicolor_T fg, bg;
7932 int ctermfg, ctermbg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007933
7934 if (!USE_VTP)
7935 return;
7936
Bram Moolenaara050b942019-12-02 21:35:31 +01007937 get_default_console_color(&ctermfg, &ctermbg, &fg, &bg);
7938
Bram Moolenaar06b7b582020-05-30 17:49:25 +02007939 if (USE_WT)
7940 {
7941 term_fg_rgb_color(fg);
7942 term_bg_rgb_color(bg);
7943 return;
7944 }
7945
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007946 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
7947 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
7948
7949 csbi.cbSize = sizeof(csbi);
7950 if (has_csbiex)
7951 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
7952
7953 csbi.cbSize = sizeof(csbi);
7954 csbi.srWindow.Right += 1;
7955 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01007956 store_console_bg_rgb = csbi.ColorTable[g_color_index_bg];
7957 store_console_fg_rgb = csbi.ColorTable[g_color_index_fg];
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02007958 csbi.ColorTable[g_color_index_bg] = (COLORREF)bg;
7959 csbi.ColorTable[g_color_index_fg] = (COLORREF)fg;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01007960 if (has_csbiex)
7961 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
7962# endif
7963}
7964
Bram Moolenaara050b942019-12-02 21:35:31 +01007965# if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
7966 void
7967get_default_console_color(
7968 int *cterm_fg,
7969 int *cterm_bg,
7970 guicolor_T *gui_fg,
7971 guicolor_T *gui_bg)
7972{
7973 int id;
7974 guicolor_T guifg = INVALCOLOR;
7975 guicolor_T guibg = INVALCOLOR;
7976 int ctermfg = 0;
7977 int ctermbg = 0;
7978
7979 id = syn_name2id((char_u *)"Normal");
7980 if (id > 0 && p_tgc)
7981 syn_id2colors(id, &guifg, &guibg);
7982 if (guifg == INVALCOLOR)
7983 {
7984 ctermfg = -1;
7985 if (id > 0)
7986 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
7987 guifg = ctermfg != -1 ? ctermtoxterm(ctermfg)
7988 : default_console_color_fg;
7989 cterm_normal_fg_gui_color = guifg;
7990 ctermfg = ctermfg < 0 ? 0 : ctermfg;
7991 }
7992 if (guibg == INVALCOLOR)
7993 {
7994 ctermbg = -1;
7995 if (id > 0)
7996 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
7997 guibg = ctermbg != -1 ? ctermtoxterm(ctermbg)
7998 : default_console_color_bg;
7999 cterm_normal_bg_gui_color = guibg;
8000 ctermbg = ctermbg < 0 ? 0 : ctermbg;
8001 }
8002
8003 *cterm_fg = ctermfg;
8004 *cterm_bg = ctermbg;
8005 *gui_fg = guifg;
8006 *gui_bg = guibg;
8007}
8008# endif
8009
Bram Moolenaardf543822020-01-30 11:53:59 +01008010/*
8011 * Set the console colors to the original colors or the last set colors.
8012 */
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008013 static void
8014reset_console_color_rgb(void)
8015{
8016# ifdef FEAT_TERMGUICOLORS
8017 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8018
Bram Moolenaar06b7b582020-05-30 17:49:25 +02008019 if (USE_WT)
8020 return;
8021
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008022 csbi.cbSize = sizeof(csbi);
8023 if (has_csbiex)
8024 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8025
8026 csbi.cbSize = sizeof(csbi);
8027 csbi.srWindow.Right += 1;
8028 csbi.srWindow.Bottom += 1;
Bram Moolenaardf543822020-01-30 11:53:59 +01008029 csbi.ColorTable[g_color_index_bg] = (COLORREF)store_console_bg_rgb;
8030 csbi.ColorTable[g_color_index_fg] = (COLORREF)store_console_fg_rgb;
8031 if (has_csbiex)
8032 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8033# endif
8034}
8035
8036/*
8037 * Set the console colors to the original colors.
8038 */
8039 static void
8040restore_console_color_rgb(void)
8041{
8042# ifdef FEAT_TERMGUICOLORS
8043 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
8044
8045 csbi.cbSize = sizeof(csbi);
8046 if (has_csbiex)
8047 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8048
8049 csbi.cbSize = sizeof(csbi);
8050 csbi.srWindow.Right += 1;
8051 csbi.srWindow.Bottom += 1;
Bram Moolenaarf6ceaf12018-08-30 17:47:05 +02008052 csbi.ColorTable[g_color_index_bg] = (COLORREF)save_console_bg_rgb;
8053 csbi.ColorTable[g_color_index_fg] = (COLORREF)save_console_fg_rgb;
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008054 if (has_csbiex)
8055 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
8056# endif
8057}
8058
8059 void
8060control_console_color_rgb(void)
8061{
8062 if (USE_VTP)
8063 set_console_color_rgb();
8064 else
8065 reset_console_color_rgb();
8066}
8067
8068 int
Bram Moolenaarcafafb32018-02-22 21:07:09 +01008069use_vtp(void)
8070{
8071 return USE_VTP;
8072}
8073
Bram Moolenaarc5cd8852018-05-01 15:47:38 +02008074 int
8075is_term_win32(void)
8076{
8077 return T_NAME != NULL && STRCMP(T_NAME, "win32") == 0;
8078}
8079
Bram Moolenaaraa5df7e2019-02-03 14:53:10 +01008080 int
8081has_vtp_working(void)
8082{
8083 return vtp_working;
8084}
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008085
Bram Moolenaar6902c0e2019-02-16 14:07:37 +01008086#endif
8087
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008088 int
8089has_conpty_working(void)
8090{
8091 return conpty_working;
8092}
8093
8094 int
Bram Moolenaar57da6982019-09-13 22:30:11 +02008095get_conpty_type(void)
8096{
8097 return conpty_type;
8098}
8099
8100 int
Bram Moolenaard9ef1b82019-02-13 19:23:10 +01008101is_conpty_stable(void)
8102{
8103 return conpty_stable;
8104}
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008105
Bram Moolenaar7ed8f592020-04-28 20:44:42 +02008106 int
8107get_conpty_fix_type(void)
8108{
8109 return conpty_fix_type;
8110}
8111
Bram Moolenaarafde13b2019-04-28 19:46:49 +02008112#if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008113 void
8114resize_console_buf(void)
8115{
8116 CONSOLE_SCREEN_BUFFER_INFO csbi;
8117 COORD coord;
8118 SMALL_RECT newsize;
8119
8120 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
8121 {
8122 coord.X = SRWIDTH(csbi.srWindow);
8123 coord.Y = SRHEIGHT(csbi.srWindow);
8124 SetConsoleScreenBufferSize(g_hConOut, coord);
8125
8126 newsize.Left = 0;
8127 newsize.Top = 0;
8128 newsize.Right = coord.X - 1;
8129 newsize.Bottom = coord.Y - 1;
8130 SetConsoleWindowInfo(g_hConOut, TRUE, &newsize);
8131
8132 SetConsoleScreenBufferSize(g_hConOut, coord);
8133 }
8134}
8135#endif