blob: dd3e6def5cb50d1c6c9500858e84422a1a8d9085 [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
13 * the console version only, so there is a lot of "#ifndef FEAT_GUI_W32".
14 *
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
33/* cproto fails on missing include files */
34#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
48# if defined(FEAT_TITLE) && !defined(FEAT_GUI_W32)
49# 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
85/* Record all output and all keyboard & mouse input */
86/* #define MCH_WRITE_DUMP */
87
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
97#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;
114typedef int KEY_EVENT_RECORD;
115typedef int LOGFONT;
116typedef int LPBOOL;
117typedef int LPCTSTR;
118typedef int LPDWORD;
119typedef int LPSTR;
120typedef int LPTSTR;
121typedef int LPVOID;
122typedef int MOUSE_EVENT_RECORD;
123typedef int PACL;
124typedef int PDWORD;
125typedef int PHANDLE;
126typedef int PRINTDLG;
127typedef int PSECURITY_DESCRIPTOR;
128typedef int PSID;
129typedef int SECURITY_INFORMATION;
130typedef int SHORT;
131typedef int SMALL_RECT;
132typedef int TEXTMETRIC;
133typedef int TOKEN_INFORMATION_CLASS;
134typedef int TRUSTEE;
135typedef int WORD;
136typedef int WCHAR;
137typedef void VOID;
Bram Moolenaar82881492012-11-20 16:53:39 +0100138typedef int BY_HANDLE_FILE_INFORMATION;
Bram Moolenaar32ac8cd2013-07-03 18:49:17 +0200139typedef int SE_OBJECT_TYPE;
140typedef int PSNSECINFO;
141typedef int PSNSECINFOW;
Bram Moolenaarb8e0bdb2014-11-12 16:10:48 +0100142typedef int STARTUPINFO;
143typedef int PROCESS_INFORMATION;
Bram Moolenaard90b6c02016-08-28 18:10:45 +0200144typedef int LPSECURITY_ATTRIBUTES;
145# define __stdcall /* empty */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146#endif
147
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148#if defined(__BORLANDC__)
149/* Strangely Borland uses a non-standard name. */
150# define wcsicmp(a, b) wcscmpi((a), (b))
151#endif
152
153#ifndef FEAT_GUI_W32
154/* Win32 Console handles for input and output */
155static HANDLE g_hConIn = INVALID_HANDLE_VALUE;
156static HANDLE g_hConOut = INVALID_HANDLE_VALUE;
157
158/* Win32 Screen buffer,coordinate,console I/O information */
159static SMALL_RECT g_srScrollRegion;
160static COORD g_coord; /* 0-based, but external coords are 1-based */
161
162/* The attribute of the screen when the editor was started */
163static WORD g_attrDefault = 7; /* lightgray text on black background */
164static WORD g_attrCurrent;
165
166static int g_fCBrkPressed = FALSE; /* set by ctrl-break interrupt */
167static int g_fCtrlCPressed = FALSE; /* set when ctrl-C or ctrl-break detected */
168static int g_fForceExit = FALSE; /* set when forcefully exiting */
169
170static void termcap_mode_start(void);
171static void termcap_mode_end(void);
172static void clear_chars(COORD coord, DWORD n);
173static void clear_screen(void);
174static void clear_to_end_of_display(void);
175static void clear_to_end_of_line(void);
176static void scroll(unsigned cLines);
177static void set_scroll_region(unsigned left, unsigned top,
178 unsigned right, unsigned bottom);
179static void insert_lines(unsigned cLines);
180static void delete_lines(unsigned cLines);
181static void gotoxy(unsigned x, unsigned y);
182static void normvideo(void);
183static void textattr(WORD wAttr);
184static void textcolor(WORD wAttr);
185static void textbackground(WORD wAttr);
186static void standout(void);
187static void standend(void);
188static void visual_bell(void);
189static void cursor_visible(BOOL fVisible);
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200190static DWORD write_chars(char_u *pchBuf, DWORD cbToWrite);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191static void create_conin(void);
192static int s_cursor_visible = TRUE;
193static int did_create_conin = FALSE;
194#else
195static int s_dont_use_vimrun = TRUE;
196static int need_vimrun_warning = FALSE;
197static char *vimrun_path = "vimrun ";
198#endif
199
Bram Moolenaar12b559e2013-06-12 22:41:37 +0200200static int win32_getattrs(char_u *name);
201static int win32_setattrs(char_u *name, int attrs);
202static int win32_set_archive(char_u *name);
203
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204#ifndef FEAT_GUI_W32
205static int suppress_winsize = 1; /* don't fiddle with console */
206#endif
207
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200208static char_u *exe_path = NULL;
209
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100210static BOOL win8_or_later = FALSE;
211
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100212#ifndef FEAT_GUI_W32
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100213/*
214 * Version of ReadConsoleInput() that works with IME.
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100215 * Works around problems on Windows 8.
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100216 */
217 static BOOL
218read_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100219 HANDLE hInput,
220 INPUT_RECORD *lpBuffer,
221 DWORD nLength,
222 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100223{
224 enum
225 {
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100226 IRSIZE = 10
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100227 };
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100228 static INPUT_RECORD s_irCache[IRSIZE];
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100229 static DWORD s_dwIndex = 0;
230 static DWORD s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100231 DWORD dwEvents;
Bram Moolenaardd415a62014-02-05 14:02:27 +0100232 int head;
233 int tail;
234 int i;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100235
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200236 if (nLength == -2)
237 return (s_dwMax > 0) ? TRUE : FALSE;
238
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100239 if (!win8_or_later)
240 {
241 if (nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200242 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
243 return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents);
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100244 }
245
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100246 if (s_dwMax == 0)
247 {
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100248 if (nLength == -1)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200249 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
250 if (!ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents))
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100251 return FALSE;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100252 s_dwIndex = 0;
253 s_dwMax = dwEvents;
254 if (dwEvents == 0)
255 {
256 *lpEvents = 0;
257 return TRUE;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100258 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100259
260 if (s_dwMax > 1)
261 {
262 head = 0;
263 tail = s_dwMax - 1;
264 while (head != tail)
265 {
266 if (s_irCache[head].EventType == WINDOW_BUFFER_SIZE_EVENT
267 && s_irCache[head + 1].EventType
268 == WINDOW_BUFFER_SIZE_EVENT)
269 {
270 /* Remove duplicate event to avoid flicker. */
271 for (i = head; i < tail; ++i)
272 s_irCache[i] = s_irCache[i + 1];
273 --tail;
274 continue;
275 }
276 head++;
277 }
278 s_dwMax = tail + 1;
279 }
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100280 }
Bram Moolenaardd415a62014-02-05 14:02:27 +0100281
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100282 *lpBuffer = s_irCache[s_dwIndex];
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200283 if (!(nLength == -1 || nLength == -2) && ++s_dwIndex >= s_dwMax)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100284 s_dwMax = 0;
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100285 *lpEvents = 1;
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100286 return TRUE;
287}
288
289/*
290 * Version of PeekConsoleInput() that works with IME.
291 */
292 static BOOL
293peek_console_input(
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100294 HANDLE hInput,
295 INPUT_RECORD *lpBuffer,
296 DWORD nLength,
297 LPDWORD lpEvents)
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100298{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100299 return read_console_input(hInput, lpBuffer, -1, lpEvents);
Bram Moolenaar3a69e112014-01-10 13:51:42 +0100300}
301
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100302# ifdef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200303 static DWORD
304msg_wait_for_multiple_objects(
305 DWORD nCount,
306 LPHANDLE pHandles,
307 BOOL fWaitAll,
308 DWORD dwMilliseconds,
309 DWORD dwWakeMask)
310{
311 if (read_console_input(NULL, NULL, -2, NULL))
312 return WAIT_OBJECT_0;
313 return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll,
314 dwMilliseconds, dwWakeMask);
315}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100316# endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200317
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100318# ifndef FEAT_CLIENTSERVER
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200319 static DWORD
320wait_for_single_object(
321 HANDLE hHandle,
322 DWORD dwMilliseconds)
323{
324 if (read_console_input(NULL, NULL, -2, NULL))
325 return WAIT_OBJECT_0;
326 return WaitForSingleObject(hHandle, dwMilliseconds);
327}
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100328# endif
329#endif
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +0200330
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 static void
332get_exe_name(void)
333{
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100334 /* Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned
335 * as the maximum length that works (plus a NUL byte). */
336#define MAX_ENV_PATH_LEN 8192
337 char temp[MAX_ENV_PATH_LEN];
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200338 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339
340 if (exe_name == NULL)
341 {
342 /* store the name of the executable, may be used for $VIM */
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100343 GetModuleFileName(NULL, temp, MAX_ENV_PATH_LEN - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 if (*temp != NUL)
345 exe_name = FullName_save((char_u *)temp, FALSE);
346 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000347
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200348 if (exe_path == NULL && exe_name != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000349 {
Bram Moolenaar6b5ef062010-10-27 12:18:00 +0200350 exe_path = vim_strnsave(exe_name,
351 (int)(gettail_sep(exe_name) - exe_name));
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200352 if (exe_path != NULL)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000353 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200354 /* Append our starting directory to $PATH, so that when doing
355 * "!xxd" it's found in our starting directory. Needed because
356 * SearchPath() also looks there. */
357 p = mch_getenv("PATH");
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100358 if (p == NULL
359 || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200360 {
Bram Moolenaar27d9ece2010-11-10 15:37:05 +0100361 if (p == NULL || *p == NUL)
362 temp[0] = NUL;
363 else
364 {
365 STRCPY(temp, p);
366 STRCAT(temp, ";");
367 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200368 STRCAT(temp, exe_path);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100369 vim_setenv((char_u *)"PATH", (char_u *)temp);
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200370 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000371 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000372 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373}
374
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200375/*
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100376 * Unescape characters in "p" that appear in "escaped".
377 */
378 static void
379unescape_shellxquote(char_u *p, char_u *escaped)
380{
Bram Moolenaar4336cdf2012-02-29 13:58:47 +0100381 int l = (int)STRLEN(p);
Bram Moolenaar6b707b42012-02-21 21:22:44 +0100382 int n;
383
384 while (*p != NUL)
385 {
386 if (*p == '^' && vim_strchr(escaped, p[1]) != NULL)
387 mch_memmove(p, p + 1, l--);
388#ifdef FEAT_MBYTE
389 n = (*mb_ptr2len)(p);
390#else
391 n = 1;
392#endif
393 p += n;
394 l -= n;
395 }
396}
397
398/*
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200399 * Load library "name".
400 */
401 HINSTANCE
402vimLoadLib(char *name)
403{
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200404 HINSTANCE dll = NULL;
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200405
Bram Moolenaarfaca8402012-10-21 02:37:10 +0200406 /* NOTE: Do not use mch_dirname() and mch_chdir() here, they may call
407 * vimLoadLib() recursively, which causes a stack overflow. */
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200408 if (exe_path == NULL)
409 get_exe_name();
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200410 if (exe_path != NULL)
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200411 {
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200412 WCHAR old_dirw[MAXPATHL];
413
414 if (GetCurrentDirectoryW(MAXPATHL, old_dirw) != 0)
415 {
416 /* Change directory to where the executable is, both to make
417 * sure we find a .dll there and to avoid looking for a .dll
418 * in the current directory. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100419 SetCurrentDirectory((LPCSTR)exe_path);
Bram Moolenaar17aa8cc2012-10-21 21:38:45 +0200420 dll = LoadLibrary(name);
421 SetCurrentDirectoryW(old_dirw);
422 return dll;
423 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200424 }
425 return dll;
426}
427
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100428#if defined(DYNAMIC_ICONV) || defined(DYNAMIC_GETTEXT) || defined(PROTO)
429/*
430 * Get related information about 'funcname' which is imported by 'hInst'.
431 * If 'info' is 0, return the function address.
432 * If 'info' is 1, return the module name which the function is imported from.
433 */
434 static void *
435get_imported_func_info(HINSTANCE hInst, const char *funcname, int info)
436{
437 PBYTE pImage = (PBYTE)hInst;
438 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)hInst;
439 PIMAGE_NT_HEADERS pPE;
440 PIMAGE_IMPORT_DESCRIPTOR pImpDesc;
441 PIMAGE_THUNK_DATA pIAT; /* Import Address Table */
442 PIMAGE_THUNK_DATA pINT; /* Import Name Table */
443 PIMAGE_IMPORT_BY_NAME pImpName;
444
445 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
446 return NULL;
447 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
448 if (pPE->Signature != IMAGE_NT_SIGNATURE)
449 return NULL;
450 pImpDesc = (PIMAGE_IMPORT_DESCRIPTOR)(pImage
451 + pPE->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT]
452 .VirtualAddress);
453 for (; pImpDesc->FirstThunk; ++pImpDesc)
454 {
455 if (!pImpDesc->OriginalFirstThunk)
456 continue;
457 pIAT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->FirstThunk);
458 pINT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->OriginalFirstThunk);
459 for (; pIAT->u1.Function; ++pIAT, ++pINT)
460 {
461 if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
462 continue;
463 pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage
464 + (UINT_PTR)(pINT->u1.AddressOfData));
465 if (strcmp((char *)pImpName->Name, funcname) == 0)
466 {
467 switch (info)
468 {
469 case 0:
470 return (void *)pIAT->u1.Function;
471 case 1:
472 return (void *)(pImage + pImpDesc->Name);
473 default:
474 return NULL;
475 }
476 }
477 }
478 }
479 return NULL;
480}
481
482/*
483 * Get the module handle which 'funcname' in 'hInst' is imported from.
484 */
485 HINSTANCE
486find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname)
487{
488 char *modulename;
489
490 modulename = (char *)get_imported_func_info(hInst, funcname, 1);
491 if (modulename != NULL)
492 return GetModuleHandleA(modulename);
493 return NULL;
494}
495
496/*
497 * Get the address of 'funcname' which is imported by 'hInst' DLL.
498 */
499 void *
500get_dll_import_func(HINSTANCE hInst, const char *funcname)
501{
502 return get_imported_func_info(hInst, funcname, 0);
503}
504#endif
505
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506#if defined(DYNAMIC_GETTEXT) || defined(PROTO)
507# ifndef GETTEXT_DLL
508# define GETTEXT_DLL "libintl.dll"
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100509# define GETTEXT_DLL_ALT "libintl-8.dll"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510# endif
Bram Moolenaarf6a2b082012-06-29 13:14:03 +0200511/* Dummy functions */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000512static char *null_libintl_gettext(const char *);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200513static char *null_libintl_ngettext(const char *, const char *, unsigned long n);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000514static char *null_libintl_textdomain(const char *);
515static char *null_libintl_bindtextdomain(const char *, const char *);
516static char *null_libintl_bind_textdomain_codeset(const char *, const char *);
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100517static int null_libintl_putenv(const char *);
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100518static int null_libintl_wputenv(const wchar_t *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200520static HINSTANCE hLibintlDLL = NULL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000521char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200522char *(*dyn_libintl_ngettext)(const char *, const char *, unsigned long n)
523 = null_libintl_ngettext;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000524char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
525char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000527char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *)
528 = null_libintl_bind_textdomain_codeset;
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100529int (*dyn_libintl_putenv)(const char *) = null_libintl_putenv;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100530int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531
532 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100533dyn_libintl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534{
535 int i;
536 static struct
537 {
538 char *name;
539 FARPROC *ptr;
540 } libintl_entry[] =
541 {
542 {"gettext", (FARPROC*)&dyn_libintl_gettext},
Bram Moolenaaree695f72016-08-03 22:08:45 +0200543 {"ngettext", (FARPROC*)&dyn_libintl_ngettext},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544 {"textdomain", (FARPROC*)&dyn_libintl_textdomain},
545 {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
546 {NULL, NULL}
547 };
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100548 HINSTANCE hmsvcrt;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549
550 /* No need to initialize twice. */
551 if (hLibintlDLL)
552 return 1;
553 /* Load gettext library (libintl.dll) */
Bram Moolenaar923e43b2016-01-28 15:07:38 +0100554 hLibintlDLL = vimLoadLib(GETTEXT_DLL);
Bram Moolenaar938ee832016-01-24 15:36:03 +0100555#ifdef GETTEXT_DLL_ALT
Bram Moolenaar286eacd2016-01-16 18:05:50 +0100556 if (!hLibintlDLL)
557 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT);
Bram Moolenaar938ee832016-01-24 15:36:03 +0100558#endif
559 if (!hLibintlDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200561 if (p_verbose > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 {
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200563 verbose_enter();
564 EMSG2(_(e_loadlib), GETTEXT_DLL);
565 verbose_leave();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 }
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200567 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 }
569 for (i = 0; libintl_entry[i].name != NULL
570 && libintl_entry[i].ptr != NULL; ++i)
571 {
572 if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL,
573 libintl_entry[i].name)) == NULL)
574 {
575 dyn_libintl_end();
576 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000577 {
578 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 EMSG2(_(e_loadfunc), libintl_entry[i].name);
Bram Moolenaara04f10b2005-05-31 22:09:46 +0000580 verbose_leave();
581 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 return 0;
583 }
584 }
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000585
586 /* The bind_textdomain_codeset() function is optional. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000587 dyn_libintl_bind_textdomain_codeset = (void *)GetProcAddress(hLibintlDLL,
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000588 "bind_textdomain_codeset");
589 if (dyn_libintl_bind_textdomain_codeset == NULL)
590 dyn_libintl_bind_textdomain_codeset =
591 null_libintl_bind_textdomain_codeset;
592
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100593 /* _putenv() function for the libintl.dll is optional. */
594 hmsvcrt = find_imported_module_by_funcname(hLibintlDLL, "getenv");
595 if (hmsvcrt != NULL)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100596 {
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100597 dyn_libintl_putenv = (void *)GetProcAddress(hmsvcrt, "_putenv");
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100598 dyn_libintl_wputenv = (void *)GetProcAddress(hmsvcrt, "_wputenv");
599 }
600 if (dyn_libintl_putenv == NULL || dyn_libintl_putenv == _putenv)
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100601 dyn_libintl_putenv = null_libintl_putenv;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100602 if (dyn_libintl_wputenv == NULL || dyn_libintl_wputenv == _wputenv)
603 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100604
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 return 1;
606}
607
608 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100609dyn_libintl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610{
611 if (hLibintlDLL)
612 FreeLibrary(hLibintlDLL);
613 hLibintlDLL = NULL;
614 dyn_libintl_gettext = null_libintl_gettext;
Bram Moolenaaree695f72016-08-03 22:08:45 +0200615 dyn_libintl_ngettext = null_libintl_ngettext;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 dyn_libintl_textdomain = null_libintl_textdomain;
617 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000618 dyn_libintl_bind_textdomain_codeset = null_libintl_bind_textdomain_codeset;
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100619 dyn_libintl_putenv = null_libintl_putenv;
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100620 dyn_libintl_wputenv = null_libintl_wputenv;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621}
622
623 static char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000624null_libintl_gettext(const char *msgid)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625{
626 return (char*)msgid;
627}
628
629 static char *
Bram Moolenaaree695f72016-08-03 22:08:45 +0200630null_libintl_ngettext(
631 const char *msgid,
632 const char *msgid_plural,
633 unsigned long n)
634{
Bram Moolenaarc90f2ae2016-08-04 22:00:15 +0200635 return (char *)(n == 1 ? msgid : msgid_plural);
Bram Moolenaaree695f72016-08-03 22:08:45 +0200636}
637
Bram Moolenaaree695f72016-08-03 22:08:45 +0200638 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100639null_libintl_bindtextdomain(
640 const char *domainname UNUSED,
641 const char *dirname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642{
643 return NULL;
644}
645
646 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100647null_libintl_bind_textdomain_codeset(
648 const char *domainname UNUSED,
649 const char *codeset UNUSED)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000650{
651 return NULL;
652}
653
654 static char *
Bram Moolenaar1266d672017-02-01 13:43:36 +0100655null_libintl_textdomain(const char *domainname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656{
657 return NULL;
658}
659
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100660 int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100661null_libintl_putenv(const char *envstring UNUSED)
Bram Moolenaar972c3b82017-01-12 21:44:49 +0100662{
663 return 0;
664}
665
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100666 int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100667null_libintl_wputenv(const wchar_t *envstring UNUSED)
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +0100668{
669 return 0;
670}
671
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672#endif /* DYNAMIC_GETTEXT */
673
674/* This symbol is not defined in older versions of the SDK or Visual C++ */
675
676#ifndef VER_PLATFORM_WIN32_WINDOWS
677# define VER_PLATFORM_WIN32_WINDOWS 1
678#endif
679
680DWORD g_PlatformId;
681
682#ifdef HAVE_ACL
Bram Moolenaar82881492012-11-20 16:53:39 +0100683# ifndef PROTO
684# include <aclapi.h>
685# endif
Bram Moolenaar27515922013-06-29 15:36:26 +0200686# ifndef PROTECTED_DACL_SECURITY_INFORMATION
687# define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L
688# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689#endif
690
Bram Moolenaar27515922013-06-29 15:36:26 +0200691#ifdef HAVE_ACL
692/*
693 * Enables or disables the specified privilege.
694 */
695 static BOOL
696win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable)
697{
Bram Moolenaarb0d5c962014-01-12 13:24:51 +0100698 BOOL bResult;
699 LUID luid;
700 HANDLE hToken;
701 TOKEN_PRIVILEGES tokenPrivileges;
Bram Moolenaar27515922013-06-29 15:36:26 +0200702
703 if (!OpenProcessToken(GetCurrentProcess(),
704 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
705 return FALSE;
706
707 if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid))
708 {
709 CloseHandle(hToken);
710 return FALSE;
711 }
712
Bram Moolenaar45500912014-07-09 20:51:07 +0200713 tokenPrivileges.PrivilegeCount = 1;
Bram Moolenaar27515922013-06-29 15:36:26 +0200714 tokenPrivileges.Privileges[0].Luid = luid;
715 tokenPrivileges.Privileges[0].Attributes = bEnable ?
716 SE_PRIVILEGE_ENABLED : 0;
717
718 bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges,
719 sizeof(TOKEN_PRIVILEGES), NULL, NULL);
720
721 CloseHandle(hToken);
722
723 return bResult && GetLastError() == ERROR_SUCCESS;
724}
725#endif
726
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727/*
728 * Set g_PlatformId to VER_PLATFORM_WIN32_NT (NT) or
729 * VER_PLATFORM_WIN32_WINDOWS (Win95).
730 */
731 void
732PlatformId(void)
733{
734 static int done = FALSE;
735
736 if (!done)
737 {
738 OSVERSIONINFO ovi;
739
740 ovi.dwOSVersionInfoSize = sizeof(ovi);
741 GetVersionEx(&ovi);
742
743 g_PlatformId = ovi.dwPlatformId;
744
Bram Moolenaarf50eb782014-02-05 13:36:54 +0100745 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2)
746 || ovi.dwMajorVersion > 6)
747 win8_or_later = TRUE;
748
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749#ifdef HAVE_ACL
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200750 /* Enable privilege for getting or setting SACLs. */
751 win32_enable_privilege(SE_SECURITY_NAME, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752#endif
753 done = TRUE;
754 }
755}
756
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757#ifndef FEAT_GUI_W32
758
759#define SHIFT (SHIFT_PRESSED)
760#define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)
761#define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)
762#define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED)
763
764
765/* When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode.
766 * We map function keys to their ANSI terminal equivalents, as produced
767 * by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any
768 * ANSI key with a value >= '\300' is nonstandard, but provided anyway
769 * so that the user can have access to all SHIFT-, CTRL-, and ALT-
770 * combinations of function/arrow/etc keys.
771 */
772
Bram Moolenaard6f676d2005-06-01 21:51:55 +0000773static const struct
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774{
775 WORD wVirtKey;
776 BOOL fAnsiKey;
777 int chAlone;
778 int chShift;
779 int chCtrl;
780 int chAlt;
781} VirtKeyMap[] =
782{
783
784/* Key ANSI alone shift ctrl alt */
785 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, },
786
787 { VK_F1, TRUE, ';', 'T', '^', 'h', },
788 { VK_F2, TRUE, '<', 'U', '_', 'i', },
789 { VK_F3, TRUE, '=', 'V', '`', 'j', },
790 { VK_F4, TRUE, '>', 'W', 'a', 'k', },
791 { VK_F5, TRUE, '?', 'X', 'b', 'l', },
792 { VK_F6, TRUE, '@', 'Y', 'c', 'm', },
793 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', },
794 { VK_F8, TRUE, 'B', '[', 'e', 'o', },
795 { VK_F9, TRUE, 'C', '\\', 'f', 'p', },
796 { VK_F10, TRUE, 'D', ']', 'g', 'q', },
797 { VK_F11, TRUE, '\205', '\207', '\211', '\213', },
798 { VK_F12, TRUE, '\206', '\210', '\212', '\214', },
799
800 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', },
801 { VK_UP, TRUE, 'H', '\304', '\305', '\306', },
802 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, /*PgUp*/
803 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', },
804 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', },
805 { VK_END, TRUE, 'O', '\315', 'u', '\316', },
806 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', },
807 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, /*PgDn*/
808 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', },
809 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', },
810
811 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, /*PrtScrn*/
812
813#if 0
814 /* Most people don't have F13-F20, but what the hell... */
815 { VK_F13, TRUE, '\332', '\333', '\334', '\335', },
816 { VK_F14, TRUE, '\336', '\337', '\340', '\341', },
817 { VK_F15, TRUE, '\342', '\343', '\344', '\345', },
818 { VK_F16, TRUE, '\346', '\347', '\350', '\351', },
819 { VK_F17, TRUE, '\352', '\353', '\354', '\355', },
820 { VK_F18, TRUE, '\356', '\357', '\360', '\361', },
821 { VK_F19, TRUE, '\362', '\363', '\364', '\365', },
822 { VK_F20, TRUE, '\366', '\367', '\370', '\371', },
823#endif
824 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, /* keyp '+' */
825 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, /* keyp '-' */
826 /* { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, keyp '/' */
827 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, /* keyp '*' */
828
829 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', },
830 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', },
831 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', },
832 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', },
833 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', },
834 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', },
835 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', },
836 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', },
837 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', },
838 /* Sorry, out of number space! <negri>*/
839 { VK_NUMPAD9,TRUE, '\376', '\377', '\377', '\367', },
840
841};
842
843
844#ifdef _MSC_VER
845// The ToAscii bug destroys several registers. Need to turn off optimization
846// or the GetConsoleKeyboardLayoutName hack will fail in non-debug versions
Bram Moolenaar7b5f8322006-03-23 22:47:08 +0000847# pragma warning(push)
848# pragma warning(disable: 4748)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849# pragma optimize("", off)
850#endif
851
852#if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200853# define UChar UnicodeChar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854#else
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200855# define UChar uChar.UnicodeChar
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856#endif
857
858/* The return code indicates key code size. */
859 static int
860#ifdef __BORLANDC__
861 __stdcall
862#endif
863win32_kbd_patch_key(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000864 KEY_EVENT_RECORD *pker)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865{
866 UINT uMods = pker->dwControlKeyState;
867 static int s_iIsDead = 0;
868 static WORD awAnsiCode[2];
869 static BYTE abKeystate[256];
870
871
872 if (s_iIsDead == 2)
873 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200874 pker->UChar = (WCHAR) awAnsiCode[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 s_iIsDead = 0;
876 return 1;
877 }
878
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200879 if (pker->UChar != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 return 1;
881
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200882 vim_memset(abKeystate, 0, sizeof (abKeystate));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 /* Clear any pending dead keys */
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200885 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886
887 if (uMods & SHIFT_PRESSED)
888 abKeystate[VK_SHIFT] = 0x80;
889 if (uMods & CAPSLOCK_ON)
890 abKeystate[VK_CAPITAL] = 1;
891
892 if ((uMods & ALT_GR) == ALT_GR)
893 {
894 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] =
895 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80;
896 }
897
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200898 s_iIsDead = ToUnicode(pker->wVirtualKeyCode, pker->wVirtualScanCode,
899 abKeystate, awAnsiCode, 2, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
901 if (s_iIsDead > 0)
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200902 pker->UChar = (WCHAR) awAnsiCode[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903
904 return s_iIsDead;
905}
906
907#ifdef _MSC_VER
908/* MUST switch optimization on again here, otherwise a call to
909 * decode_key_event() may crash (e.g. when hitting caps-lock) */
910# pragma optimize("", on)
Bram Moolenaar7b5f8322006-03-23 22:47:08 +0000911# pragma warning(pop)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912
913# if (_MSC_VER < 1100)
914/* MUST turn off global optimisation for this next function, or
915 * pressing ctrl-minus in insert mode crashes Vim when built with
916 * VC4.1. -- negri. */
917# pragma optimize("g", off)
918# endif
919#endif
920
921static BOOL g_fJustGotFocus = FALSE;
922
923/*
924 * Decode a KEY_EVENT into one or two keystrokes
925 */
926 static BOOL
927decode_key_event(
928 KEY_EVENT_RECORD *pker,
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200929 WCHAR *pch,
930 WCHAR *pch2,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 int *pmodifiers,
932 BOOL fDoPost)
933{
934 int i;
935 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL);
936
937 *pch = *pch2 = NUL;
938 g_fJustGotFocus = FALSE;
939
940 /* ignore key up events */
941 if (!pker->bKeyDown)
942 return FALSE;
943
944 /* ignore some keystrokes */
945 switch (pker->wVirtualKeyCode)
946 {
947 /* modifiers */
948 case VK_SHIFT:
949 case VK_CONTROL:
950 case VK_MENU: /* Alt key */
951 return FALSE;
952
953 default:
954 break;
955 }
956
957 /* special cases */
Bram Moolenaarac360bf2015-09-01 20:31:20 +0200958 if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 {
960 /* Ctrl-6 is Ctrl-^ */
961 if (pker->wVirtualKeyCode == '6')
962 {
963 *pch = Ctrl_HAT;
964 return TRUE;
965 }
966 /* Ctrl-2 is Ctrl-@ */
967 else if (pker->wVirtualKeyCode == '2')
968 {
969 *pch = NUL;
970 return TRUE;
971 }
972 /* Ctrl-- is Ctrl-_ */
973 else if (pker->wVirtualKeyCode == 0xBD)
974 {
975 *pch = Ctrl__;
976 return TRUE;
977 }
978 }
979
980 /* Shift-TAB */
981 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED))
982 {
983 *pch = K_NUL;
984 *pch2 = '\017';
985 return TRUE;
986 }
987
988 for (i = sizeof(VirtKeyMap) / sizeof(VirtKeyMap[0]); --i >= 0; )
989 {
990 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode)
991 {
992 if (nModifs == 0)
993 *pch = VirtKeyMap[i].chAlone;
994 else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0)
995 *pch = VirtKeyMap[i].chShift;
996 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0)
997 *pch = VirtKeyMap[i].chCtrl;
998 else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0)
999 *pch = VirtKeyMap[i].chAlt;
1000
1001 if (*pch != 0)
1002 {
1003 if (VirtKeyMap[i].fAnsiKey)
1004 {
1005 *pch2 = *pch;
1006 *pch = K_NUL;
1007 }
1008
1009 return TRUE;
1010 }
1011 }
1012 }
1013
1014 i = win32_kbd_patch_key(pker);
1015
1016 if (i < 0)
1017 *pch = NUL;
1018 else
1019 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001020 *pch = (i > 0) ? pker->UChar : NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021
1022 if (pmodifiers != NULL)
1023 {
1024 /* Pass on the ALT key as a modifier, but only when not combined
1025 * with CTRL (which is ALTGR). */
1026 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0)
1027 *pmodifiers |= MOD_MASK_ALT;
1028
1029 /* Pass on SHIFT only for special keys, because we don't know when
1030 * it's already included with the character. */
1031 if ((nModifs & SHIFT) != 0 && *pch <= 0x20)
1032 *pmodifiers |= MOD_MASK_SHIFT;
1033
1034 /* Pass on CTRL only for non-special keys, because we don't know
1035 * when it's already included with the character. And not when
1036 * combined with ALT (which is ALTGR). */
1037 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0
1038 && *pch >= 0x20 && *pch < 0x80)
1039 *pmodifiers |= MOD_MASK_CTRL;
1040 }
1041 }
1042
1043 return (*pch != NUL);
1044}
1045
1046#ifdef _MSC_VER
1047# pragma optimize("", on)
1048#endif
1049
1050#endif /* FEAT_GUI_W32 */
1051
1052
1053#ifdef FEAT_MOUSE
1054
1055/*
1056 * For the GUI the mouse handling is in gui_w32.c.
1057 */
1058# ifdef FEAT_GUI_W32
1059 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001060mch_setmouse(int on UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061{
1062}
1063# else
1064static int g_fMouseAvail = FALSE; /* mouse present */
1065static int g_fMouseActive = FALSE; /* mouse enabled */
1066static int g_nMouseClick = -1; /* mouse status */
1067static int g_xMouse; /* mouse x coordinate */
1068static int g_yMouse; /* mouse y coordinate */
1069
1070/*
1071 * Enable or disable mouse input
1072 */
1073 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001074mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075{
1076 DWORD cmodein;
1077
1078 if (!g_fMouseAvail)
1079 return;
1080
1081 g_fMouseActive = on;
1082 GetConsoleMode(g_hConIn, &cmodein);
1083
1084 if (g_fMouseActive)
1085 cmodein |= ENABLE_MOUSE_INPUT;
1086 else
1087 cmodein &= ~ENABLE_MOUSE_INPUT;
1088
1089 SetConsoleMode(g_hConIn, cmodein);
1090}
1091
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092/*
1093 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT,
1094 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse
1095 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG
1096 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type,
1097 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick,
1098 * and we return the mouse position in g_xMouse and g_yMouse.
1099 *
1100 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more
1101 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only
1102 * by MOUSE_LEFT, _MIDDLE, or _RIGHT.
1103 *
1104 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE,
1105 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, ....
1106 *
1107 * Windows will send us MOUSE_MOVED notifications whenever the mouse
1108 * moves, even if it stays within the same character cell. We ignore
1109 * all MOUSE_MOVED messages if the position hasn't really changed, and
1110 * we ignore all MOUSE_MOVED messages where no button is held down (i.e.,
1111 * we're only interested in MOUSE_DRAG).
1112 *
1113 * All of this is complicated by the code that fakes MOUSE_MIDDLE on
1114 * 2-button mouses by pressing the left & right buttons simultaneously.
1115 * In practice, it's almost impossible to click both at the same time,
1116 * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE
1117 * in such cases, if the user is clicking quickly.
1118 */
1119 static BOOL
1120decode_mouse_event(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001121 MOUSE_EVENT_RECORD *pmer)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122{
1123 static int s_nOldButton = -1;
1124 static int s_nOldMouseClick = -1;
1125 static int s_xOldMouse = -1;
1126 static int s_yOldMouse = -1;
1127 static linenr_T s_old_topline = 0;
1128#ifdef FEAT_DIFF
1129 static int s_old_topfill = 0;
1130#endif
1131 static int s_cClicks = 1;
1132 static BOOL s_fReleased = TRUE;
1133 static DWORD s_dwLastClickTime = 0;
1134 static BOOL s_fNextIsMiddle = FALSE;
1135
1136 static DWORD cButtons = 0; /* number of buttons supported */
1137
1138 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED;
1139 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED;
1140 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED;
1141 const DWORD LEFT_RIGHT = LEFT | RIGHT;
1142
1143 int nButton;
1144
1145 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons))
1146 cButtons = 2;
1147
1148 if (!g_fMouseAvail || !g_fMouseActive)
1149 {
1150 g_nMouseClick = -1;
1151 return FALSE;
1152 }
1153
1154 /* get a spurious MOUSE_EVENT immediately after receiving focus; ignore */
1155 if (g_fJustGotFocus)
1156 {
1157 g_fJustGotFocus = FALSE;
1158 return FALSE;
1159 }
1160
1161 /* unprocessed mouse click? */
1162 if (g_nMouseClick != -1)
1163 return TRUE;
1164
1165 nButton = -1;
1166 g_xMouse = pmer->dwMousePosition.X;
1167 g_yMouse = pmer->dwMousePosition.Y;
1168
1169 if (pmer->dwEventFlags == MOUSE_MOVED)
1170 {
1171 /* ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these
1172 * events even when the mouse moves only within a char cell.) */
1173 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse)
1174 return FALSE;
1175 }
1176
1177 /* If no buttons are pressed... */
1178 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0)
1179 {
1180 /* If the last thing returned was MOUSE_RELEASE, ignore this */
1181 if (s_fReleased)
1182 return FALSE;
1183
1184 nButton = MOUSE_RELEASE;
1185 s_fReleased = TRUE;
1186 }
1187 else /* one or more buttons pressed */
1188 {
1189 /* on a 2-button mouse, hold down left and right buttons
1190 * simultaneously to get MIDDLE. */
1191
1192 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG)
1193 {
1194 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT);
1195
1196 /* if either left or right button only is pressed, see if the
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001197 * next mouse event has both of them pressed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 if (dwLR == LEFT || dwLR == RIGHT)
1199 {
1200 for (;;)
1201 {
1202 /* wait a short time for next input event */
1203 if (WaitForSingleObject(g_hConIn, p_mouset / 3)
1204 != WAIT_OBJECT_0)
1205 break;
1206 else
1207 {
1208 DWORD cRecords = 0;
1209 INPUT_RECORD ir;
1210 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent;
1211
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001212 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213
1214 if (cRecords == 0 || ir.EventType != MOUSE_EVENT
1215 || !(pmer2->dwButtonState & LEFT_RIGHT))
1216 break;
1217 else
1218 {
1219 if (pmer2->dwEventFlags != MOUSE_MOVED)
1220 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001221 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222
1223 return decode_mouse_event(pmer2);
1224 }
1225 else if (s_xOldMouse == pmer2->dwMousePosition.X &&
1226 s_yOldMouse == pmer2->dwMousePosition.Y)
1227 {
1228 /* throw away spurious mouse move */
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001229 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230
1231 /* are there any more mouse events in queue? */
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001232 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233
1234 if (cRecords==0 || ir.EventType != MOUSE_EVENT)
1235 break;
1236 }
1237 else
1238 break;
1239 }
1240 }
1241 }
1242 }
1243 }
1244
1245 if (s_fNextIsMiddle)
1246 {
1247 nButton = (pmer->dwEventFlags == MOUSE_MOVED)
1248 ? MOUSE_DRAG : MOUSE_MIDDLE;
1249 s_fNextIsMiddle = FALSE;
1250 }
1251 else if (cButtons == 2 &&
1252 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT))
1253 {
1254 nButton = MOUSE_MIDDLE;
1255
1256 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED)
1257 {
1258 s_fNextIsMiddle = TRUE;
1259 nButton = MOUSE_RELEASE;
1260 }
1261 }
1262 else if ((pmer->dwButtonState & LEFT) == LEFT)
1263 nButton = MOUSE_LEFT;
1264 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE)
1265 nButton = MOUSE_MIDDLE;
1266 else if ((pmer->dwButtonState & RIGHT) == RIGHT)
1267 nButton = MOUSE_RIGHT;
1268
1269 if (! s_fReleased && ! s_fNextIsMiddle
1270 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG)
1271 return FALSE;
1272
1273 s_fReleased = s_fNextIsMiddle;
1274 }
1275
1276 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK)
1277 {
1278 /* button pressed or released, without mouse moving */
1279 if (nButton != -1 && nButton != MOUSE_RELEASE)
1280 {
1281 DWORD dwCurrentTime = GetTickCount();
1282
1283 if (s_xOldMouse != g_xMouse
1284 || s_yOldMouse != g_yMouse
1285 || s_nOldButton != nButton
1286 || s_old_topline != curwin->w_topline
1287#ifdef FEAT_DIFF
1288 || s_old_topfill != curwin->w_topfill
1289#endif
1290 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset)
1291 {
1292 s_cClicks = 1;
1293 }
1294 else if (++s_cClicks > 4)
1295 {
1296 s_cClicks = 1;
1297 }
1298
1299 s_dwLastClickTime = dwCurrentTime;
1300 }
1301 }
1302 else if (pmer->dwEventFlags == MOUSE_MOVED)
1303 {
1304 if (nButton != -1 && nButton != MOUSE_RELEASE)
1305 nButton = MOUSE_DRAG;
1306
1307 s_cClicks = 1;
1308 }
1309
1310 if (nButton == -1)
1311 return FALSE;
1312
1313 if (nButton != MOUSE_RELEASE)
1314 s_nOldButton = nButton;
1315
1316 g_nMouseClick = nButton;
1317
1318 if (pmer->dwControlKeyState & SHIFT_PRESSED)
1319 g_nMouseClick |= MOUSE_SHIFT;
1320 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
1321 g_nMouseClick |= MOUSE_CTRL;
1322 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
1323 g_nMouseClick |= MOUSE_ALT;
1324
1325 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE)
1326 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks);
1327
1328 /* only pass on interesting (i.e., different) mouse events */
1329 if (s_xOldMouse == g_xMouse
1330 && s_yOldMouse == g_yMouse
1331 && s_nOldMouseClick == g_nMouseClick)
1332 {
1333 g_nMouseClick = -1;
1334 return FALSE;
1335 }
1336
1337 s_xOldMouse = g_xMouse;
1338 s_yOldMouse = g_yMouse;
1339 s_old_topline = curwin->w_topline;
1340#ifdef FEAT_DIFF
1341 s_old_topfill = curwin->w_topfill;
1342#endif
1343 s_nOldMouseClick = g_nMouseClick;
1344
1345 return TRUE;
1346}
1347
1348# endif /* FEAT_GUI_W32 */
1349#endif /* FEAT_MOUSE */
1350
1351
1352#ifdef MCH_CURSOR_SHAPE
1353/*
1354 * Set the shape of the cursor.
1355 * 'thickness' can be from 1 (thin) to 99 (block)
1356 */
1357 static void
1358mch_set_cursor_shape(int thickness)
1359{
1360 CONSOLE_CURSOR_INFO ConsoleCursorInfo;
1361 ConsoleCursorInfo.dwSize = thickness;
1362 ConsoleCursorInfo.bVisible = s_cursor_visible;
1363
1364 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
1365 if (s_cursor_visible)
1366 SetConsoleCursorPosition(g_hConOut, g_coord);
1367}
1368
1369 void
1370mch_update_cursor(void)
1371{
1372 int idx;
1373 int thickness;
1374
1375 /*
1376 * How the cursor is drawn depends on the current mode.
1377 */
1378 idx = get_shape_idx(FALSE);
1379
1380 if (shape_table[idx].shape == SHAPE_BLOCK)
1381 thickness = 99; /* 100 doesn't work on W95 */
1382 else
1383 thickness = shape_table[idx].percentage;
1384 mch_set_cursor_shape(thickness);
1385}
1386#endif
1387
1388#ifndef FEAT_GUI_W32 /* this isn't used for the GUI */
1389/*
1390 * Handle FOCUS_EVENT.
1391 */
1392 static void
1393handle_focus_event(INPUT_RECORD ir)
1394{
1395 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus;
1396 ui_focus_change((int)g_fJustGotFocus);
1397}
1398
1399/*
1400 * Wait until console input from keyboard or mouse is available,
1401 * or the time is up.
1402 * Return TRUE if something is available FALSE if not.
1403 */
1404 static int
1405WaitForChar(long msec)
1406{
1407 DWORD dwNow = 0, dwEndTime = 0;
1408 INPUT_RECORD ir;
1409 DWORD cRecords;
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001410 WCHAR ch, ch2;
Bram Moolenaar4445f7e2016-04-20 20:55:56 +02001411#ifdef FEAT_TIMERS
Bram Moolenaar40b1b542016-04-20 20:18:23 +02001412 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar4445f7e2016-04-20 20:55:56 +02001413#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414
1415 if (msec > 0)
1416 /* Wait until the specified time has elapsed. */
1417 dwEndTime = GetTickCount() + msec;
1418 else if (msec < 0)
1419 /* Wait forever. */
1420 dwEndTime = INFINITE;
1421
1422 /* We need to loop until the end of the time period, because
1423 * we might get multiple unusable mouse events in that time.
1424 */
1425 for (;;)
1426 {
Bram Moolenaarca568ae2016-02-01 21:32:58 +01001427#ifdef MESSAGE_QUEUE
1428 parse_queued_messages();
1429#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001430#ifdef FEAT_MZSCHEME
1431 mzvim_check_threads();
1432#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433#ifdef FEAT_CLIENTSERVER
1434 serverProcessPendingMessages();
1435#endif
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001436
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437 if (0
1438#ifdef FEAT_MOUSE
1439 || g_nMouseClick != -1
1440#endif
1441#ifdef FEAT_CLIENTSERVER
1442 || input_available()
1443#endif
1444 )
1445 return TRUE;
1446
1447 if (msec > 0)
1448 {
Bram Moolenaarb7512b72013-08-10 12:45:09 +02001449 /* If the specified wait time has passed, return. Beware that
1450 * GetTickCount() may wrap around (overflow). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 dwNow = GetTickCount();
Bram Moolenaarb7512b72013-08-10 12:45:09 +02001452 if ((int)(dwNow - dwEndTime) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453 break;
1454 }
1455 if (msec != 0)
1456 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001457 DWORD dwWaitTime = dwEndTime - dwNow;
1458
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01001459#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar8a8199e2016-11-26 15:13:33 +01001460 /* Check channel while waiting for input. */
Bram Moolenaar9186a272016-02-23 19:34:01 +01001461 if (dwWaitTime > 100)
Bram Moolenaar8a8199e2016-11-26 15:13:33 +01001462 {
Bram Moolenaar9186a272016-02-23 19:34:01 +01001463 dwWaitTime = 100;
Bram Moolenaar8a8199e2016-11-26 15:13:33 +01001464 /* If there is readahead then parse_queued_messages() timed out
1465 * and we should call it again soon. */
1466 if (channel_any_readahead())
1467 dwWaitTime = 10;
1468 }
Bram Moolenaar9186a272016-02-23 19:34:01 +01001469#endif
Bram Moolenaar59716a22017-03-01 20:32:44 +01001470#ifdef FEAT_BEVAL
1471 if (p_beval && dwWaitTime > 100)
1472 /* The 'balloonexpr' may indirectly invoke a callback while
1473 * waiting for a character, need to check often. */
1474 dwWaitTime = 100;
1475#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001476#ifdef FEAT_MZSCHEME
1477 if (mzthreads_allowed() && p_mzq > 0
1478 && (msec < 0 || (long)dwWaitTime > p_mzq))
1479 dwWaitTime = p_mzq; /* don't wait longer than 'mzquantum' */
1480#endif
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001481#ifdef FEAT_TIMERS
1482 {
1483 long due_time;
1484
1485 /* When waiting very briefly don't trigger timers. */
1486 if (dwWaitTime > 10)
1487 {
1488 /* Trigger timers and then get the time in msec until the
1489 * next one is due. Wait up to that time. */
1490 due_time = check_due_timer();
Bram Moolenaar40b1b542016-04-20 20:18:23 +02001491 if (typebuf.tb_change_cnt != tb_change_cnt)
1492 {
1493 /* timer may have used feedkeys() */
1494 return FALSE;
1495 }
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001496 if (due_time > 0 && dwWaitTime > (DWORD)due_time)
1497 dwWaitTime = due_time;
1498 }
1499 }
1500#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501#ifdef FEAT_CLIENTSERVER
1502 /* Wait for either an event on the console input or a message in
1503 * the client-server window. */
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +02001504 if (msg_wait_for_multiple_objects(1, &g_hConIn, FALSE,
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001505 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506#else
Bram Moolenaarbb86ebb2015-08-04 19:27:05 +02001507 if (wait_for_single_object(g_hConIn, dwWaitTime) != WAIT_OBJECT_0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508#endif
1509 continue;
1510 }
1511
1512 cRecords = 0;
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001513 peek_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514
1515#ifdef FEAT_MBYTE_IME
1516 if (State & CMDLINE && msg_row == Rows - 1)
1517 {
1518 CONSOLE_SCREEN_BUFFER_INFO csbi;
1519
1520 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
1521 {
1522 if (csbi.dwCursorPosition.Y != msg_row)
1523 {
1524 /* The screen is now messed up, must redraw the
1525 * command line and later all the windows. */
1526 redraw_all_later(CLEAR);
1527 cmdline_row -= (msg_row - csbi.dwCursorPosition.Y);
1528 redrawcmd();
1529 }
1530 }
1531 }
1532#endif
1533
1534 if (cRecords > 0)
1535 {
1536 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown)
1537 {
1538#ifdef FEAT_MBYTE_IME
1539 /* Windows IME sends two '\n's with only one 'ENTER'. First:
1540 * wVirtualKeyCode == 13. second: wVirtualKeyCode == 0 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001541 if (ir.Event.KeyEvent.UChar == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 && ir.Event.KeyEvent.wVirtualKeyCode == 13)
1543 {
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001544 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 continue;
1546 }
1547#endif
1548 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2,
1549 NULL, FALSE))
1550 return TRUE;
1551 }
1552
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001553 read_console_input(g_hConIn, &ir, 1, &cRecords);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554
1555 if (ir.EventType == FOCUS_EVENT)
1556 handle_focus_event(ir);
1557 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
1558 shell_resized();
1559#ifdef FEAT_MOUSE
1560 else if (ir.EventType == MOUSE_EVENT
1561 && decode_mouse_event(&ir.Event.MouseEvent))
1562 return TRUE;
1563#endif
1564 }
1565 else if (msec == 0)
1566 break;
1567 }
1568
1569#ifdef FEAT_CLIENTSERVER
1570 /* Something might have been received while we were waiting. */
1571 if (input_available())
1572 return TRUE;
1573#endif
Bram Moolenaarf12d9832016-01-29 21:11:25 +01001574
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 return FALSE;
1576}
1577
1578#ifndef FEAT_GUI_MSWIN
1579/*
1580 * return non-zero if a character is available
1581 */
1582 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001583mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584{
1585 return WaitForChar(0L);
1586}
1587#endif
1588
1589/*
1590 * Create the console input. Used when reading stdin doesn't work.
1591 */
1592 static void
1593create_conin(void)
1594{
1595 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE,
1596 FILE_SHARE_READ|FILE_SHARE_WRITE,
1597 (LPSECURITY_ATTRIBUTES) NULL,
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001598 OPEN_EXISTING, 0, (HANDLE)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599 did_create_conin = TRUE;
1600}
1601
1602/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01001603 * Get a keystroke or a mouse event, use a blocking wait.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001605 static WCHAR
1606tgetch(int *pmodifiers, WCHAR *pch2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607{
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001608 WCHAR ch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609
1610 for (;;)
1611 {
1612 INPUT_RECORD ir;
1613 DWORD cRecords = 0;
1614
1615#ifdef FEAT_CLIENTSERVER
1616 (void)WaitForChar(-1L);
1617 if (input_available())
1618 return 0;
1619# ifdef FEAT_MOUSE
1620 if (g_nMouseClick != -1)
1621 return 0;
1622# endif
1623#endif
Bram Moolenaar3a69e112014-01-10 13:51:42 +01001624 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 {
1626 if (did_create_conin)
1627 read_error_exit();
1628 create_conin();
1629 continue;
1630 }
1631
1632 if (ir.EventType == KEY_EVENT)
1633 {
1634 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2,
1635 pmodifiers, TRUE))
1636 return ch;
1637 }
1638 else if (ir.EventType == FOCUS_EVENT)
1639 handle_focus_event(ir);
1640 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
1641 shell_resized();
1642#ifdef FEAT_MOUSE
1643 else if (ir.EventType == MOUSE_EVENT)
1644 {
1645 if (decode_mouse_event(&ir.Event.MouseEvent))
1646 return 0;
1647 }
1648#endif
1649 }
1650}
1651#endif /* !FEAT_GUI_W32 */
1652
1653
1654/*
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02001655 * mch_inchar(): low-level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 * Get one or more characters from the keyboard or the mouse.
1657 * If time == 0, do not wait for characters.
1658 * If time == n, wait a short time for characters.
1659 * If time == -1, wait forever for characters.
1660 * Returns the number of characters read into buf.
1661 */
1662 int
1663mch_inchar(
Bram Moolenaar1266d672017-02-01 13:43:36 +01001664 char_u *buf UNUSED,
1665 int maxlen UNUSED,
1666 long time UNUSED,
1667 int tb_change_cnt UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668{
1669#ifndef FEAT_GUI_W32 /* this isn't used for the GUI */
1670
1671 int len;
1672 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673#define TYPEAHEADLEN 20
1674 static char_u typeahead[TYPEAHEADLEN]; /* previously typed bytes. */
1675 static int typeaheadlen = 0;
1676
1677 /* First use any typeahead that was kept because "buf" was too small. */
1678 if (typeaheadlen > 0)
1679 goto theend;
1680
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 if (time >= 0)
1682 {
1683 if (!WaitForChar(time)) /* no character available */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 }
1686 else /* time == -1, wait forever */
1687 {
1688 mch_set_winsize_now(); /* Allow winsize changes from now on */
1689
Bram Moolenaar3918c952005-03-15 22:34:55 +00001690 /*
1691 * If there is no character available within 2 seconds (default)
1692 * write the autoscript file to disk. Or cause the CursorHold event
1693 * to be triggered.
1694 */
1695 if (!WaitForChar(p_ut))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 {
1697#ifdef FEAT_AUTOCMD
Bram Moolenaard35f9712005-12-18 22:02:33 +00001698 if (trigger_cursorhold() && maxlen >= 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 {
Bram Moolenaar3918c952005-03-15 22:34:55 +00001700 buf[0] = K_SPECIAL;
1701 buf[1] = KS_EXTRA;
1702 buf[2] = (int)KE_CURSORHOLD;
1703 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 }
1705#endif
Bram Moolenaar702517d2005-06-27 22:34:07 +00001706 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 }
1708 }
1709
1710 /*
1711 * Try to read as many characters as there are, until the buffer is full.
1712 */
1713
1714 /* we will get at least one key. Get more if they are available. */
1715 g_fCBrkPressed = FALSE;
1716
1717#ifdef MCH_WRITE_DUMP
1718 if (fdDump)
1719 fputc('[', fdDump);
1720#endif
1721
1722 /* Keep looping until there is something in the typeahead buffer and more
1723 * to get and still room in the buffer (up to two bytes for a char and
1724 * three bytes for a modifier). */
1725 while ((typeaheadlen == 0 || WaitForChar(0L))
1726 && typeaheadlen + 5 <= TYPEAHEADLEN)
1727 {
1728 if (typebuf_changed(tb_change_cnt))
1729 {
1730 /* "buf" may be invalid now if a client put something in the
1731 * typeahead buffer and "buf" is in the typeahead buffer. */
1732 typeaheadlen = 0;
1733 break;
1734 }
1735#ifdef FEAT_MOUSE
1736 if (g_nMouseClick != -1)
1737 {
1738# ifdef MCH_WRITE_DUMP
1739 if (fdDump)
1740 fprintf(fdDump, "{%02x @ %d, %d}",
1741 g_nMouseClick, g_xMouse, g_yMouse);
1742# endif
1743 typeahead[typeaheadlen++] = ESC + 128;
1744 typeahead[typeaheadlen++] = 'M';
1745 typeahead[typeaheadlen++] = g_nMouseClick;
1746 typeahead[typeaheadlen++] = g_xMouse + '!';
1747 typeahead[typeaheadlen++] = g_yMouse + '!';
1748 g_nMouseClick = -1;
1749 }
1750 else
1751#endif
1752 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001753 WCHAR ch2 = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754 int modifiers = 0;
1755
1756 c = tgetch(&modifiers, &ch2);
1757
1758 if (typebuf_changed(tb_change_cnt))
1759 {
1760 /* "buf" may be invalid now if a client put something in the
1761 * typeahead buffer and "buf" is in the typeahead buffer. */
1762 typeaheadlen = 0;
1763 break;
1764 }
1765
1766 if (c == Ctrl_C && ctrl_c_interrupts)
1767 {
1768#if defined(FEAT_CLIENTSERVER)
1769 trash_input_buf();
1770#endif
1771 got_int = TRUE;
1772 }
1773
1774#ifdef FEAT_MOUSE
1775 if (g_nMouseClick == -1)
1776#endif
1777 {
1778 int n = 1;
Bram Moolenaar45500912014-07-09 20:51:07 +02001779 int conv = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001781#ifdef FEAT_MBYTE
1782 if (ch2 == NUL)
1783 {
1784 int i;
1785 char_u *p;
1786 WCHAR ch[2];
1787
1788 ch[0] = c;
1789 if (c >= 0xD800 && c <= 0xDBFF) /* High surrogate */
1790 {
1791 ch[1] = tgetch(&modifiers, &ch2);
1792 n++;
1793 }
1794 p = utf16_to_enc(ch, &n);
1795 if (p != NULL)
1796 {
1797 for (i = 0; i < n; i++)
1798 typeahead[typeaheadlen + i] = p[i];
1799 vim_free(p);
1800 }
1801 }
1802 else
1803#endif
1804 typeahead[typeaheadlen] = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 if (ch2 != NUL)
1806 {
Bram Moolenaarac360bf2015-09-01 20:31:20 +02001807 typeahead[typeaheadlen + n] = 3;
1808 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
Bram Moolenaar45500912014-07-09 20:51:07 +02001809 n += 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811
Bram Moolenaar45500912014-07-09 20:51:07 +02001812 if (conv)
1813 {
1814 char_u *p = typeahead + typeaheadlen;
Bram Moolenaar45500912014-07-09 20:51:07 +02001815
Bram Moolenaar1ec4dd42015-01-20 19:39:35 +01001816 if (*p != K_NUL)
Bram Moolenaar45500912014-07-09 20:51:07 +02001817 {
Bram Moolenaar1ec4dd42015-01-20 19:39:35 +01001818 char_u *e = typeahead + TYPEAHEADLEN;
1819
1820 while (*p && p < e)
Bram Moolenaar45500912014-07-09 20:51:07 +02001821 {
Bram Moolenaar1ec4dd42015-01-20 19:39:35 +01001822 if (*p == K_NUL)
1823 {
1824 ++p;
1825 mch_memmove(p + 1, p, ((size_t)(e - p)) - 1);
1826 *p = 3;
1827 ++n;
1828 }
Bram Moolenaar45500912014-07-09 20:51:07 +02001829 ++p;
Bram Moolenaar45500912014-07-09 20:51:07 +02001830 }
Bram Moolenaar45500912014-07-09 20:51:07 +02001831 }
1832 }
1833
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 /* Use the ALT key to set the 8th bit of the character
1835 * when it's one byte, the 8th bit isn't set yet and not
1836 * using a double-byte encoding (would become a lead
1837 * byte). */
1838 if ((modifiers & MOD_MASK_ALT)
1839 && n == 1
1840 && (typeahead[typeaheadlen] & 0x80) == 0
1841#ifdef FEAT_MBYTE
1842 && !enc_dbcs
1843#endif
1844 )
1845 {
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001846#ifdef FEAT_MBYTE
1847 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
1848 typeahead + typeaheadlen);
1849#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 typeahead[typeaheadlen] |= 0x80;
Bram Moolenaar85a3e5c2007-11-20 16:22:16 +00001851#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 modifiers &= ~MOD_MASK_ALT;
1853 }
1854
1855 if (modifiers != 0)
1856 {
1857 /* Prepend modifiers to the character. */
1858 mch_memmove(typeahead + typeaheadlen + 3,
1859 typeahead + typeaheadlen, n);
1860 typeahead[typeaheadlen++] = K_SPECIAL;
1861 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
1862 typeahead[typeaheadlen++] = modifiers;
1863 }
1864
1865 typeaheadlen += n;
1866
1867#ifdef MCH_WRITE_DUMP
1868 if (fdDump)
1869 fputc(c, fdDump);
1870#endif
1871 }
1872 }
1873 }
1874
1875#ifdef MCH_WRITE_DUMP
1876 if (fdDump)
1877 {
1878 fputs("]\n", fdDump);
1879 fflush(fdDump);
1880 }
1881#endif
1882
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883theend:
1884 /* Move typeahead to "buf", as much as fits. */
1885 len = 0;
1886 while (len < maxlen && typeaheadlen > 0)
1887 {
1888 buf[len++] = typeahead[0];
1889 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
1890 }
1891 return len;
1892
1893#else /* FEAT_GUI_W32 */
1894 return 0;
1895#endif /* FEAT_GUI_W32 */
1896}
1897
Bram Moolenaar82881492012-11-20 16:53:39 +01001898#ifndef PROTO
1899# ifndef __MINGW32__
1900# include <shellapi.h> /* required for FindExecutable() */
1901# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902#endif
1903
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001904/*
Bram Moolenaar43663192017-03-05 14:29:12 +01001905 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
1906 * If "use_path" is FALSE: Return TRUE if "name" exists.
1907 * When returning TRUE and "path" is not NULL save the path and set "*path" to
1908 * the allocated memory.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001909 * TODO: Should somehow check if it's really executable.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001910 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 static int
Bram Moolenaar43663192017-03-05 14:29:12 +01001912executable_exists(char *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913{
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001914 char *dum;
1915 char fname[_MAX_PATH];
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001916 char *curpath, *newpath;
1917 long n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918
Bram Moolenaar43663192017-03-05 14:29:12 +01001919 if (!use_path)
1920 {
1921 if (mch_getperm(name) != -1 && !mch_isdir(name))
1922 {
1923 if (path != NULL)
1924 *path = vim_strsave((char_u *)name);
1925 return TRUE;
1926 }
1927 return FALSE;
1928 }
1929
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001930#ifdef FEAT_MBYTE
1931 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001933 WCHAR *p = enc_to_utf16((char_u *)name, NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001934 WCHAR fnamew[_MAX_PATH];
1935 WCHAR *dumw;
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001936 WCHAR *wcurpath, *wnewpath;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001937
1938 if (p != NULL)
1939 {
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001940 wcurpath = _wgetenv(L"PATH");
1941 wnewpath = (WCHAR*)alloc((unsigned)(wcslen(wcurpath) + 3)
1942 * sizeof(WCHAR));
1943 if (wnewpath == NULL)
1944 return FALSE;
1945 wcscpy(wnewpath, L".;");
1946 wcscat(wnewpath, wcurpath);
1947 n = (long)SearchPathW(wnewpath, p, NULL, _MAX_PATH, fnamew, &dumw);
1948 vim_free(wnewpath);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001949 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001950 if (n == 0)
1951 return FALSE;
1952 if (GetFileAttributesW(fnamew) & FILE_ATTRIBUTE_DIRECTORY)
1953 return FALSE;
1954 if (path != NULL)
1955 *path = utf16_to_enc(fnamew, NULL);
1956 return TRUE;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001959#endif
Bram Moolenaarc40bdee2014-08-29 17:45:32 +02001960
1961 curpath = getenv("PATH");
1962 newpath = (char*)alloc((unsigned)(STRLEN(curpath) + 3));
1963 if (newpath == NULL)
1964 return FALSE;
1965 STRCPY(newpath, ".;");
1966 STRCAT(newpath, curpath);
1967 n = (long)SearchPath(newpath, name, NULL, _MAX_PATH, fname, &dum);
1968 vim_free(newpath);
1969 if (n == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001970 return FALSE;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001971 if (mch_isdir((char_u *)fname))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001972 return FALSE;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02001973 if (path != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001974 *path = vim_strsave((char_u *)fname);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001975 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976}
1977
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001978#if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02001979 __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400)
Bram Moolenaard32a99a2010-09-21 17:29:23 +02001980/*
1981 * Bad parameter handler.
1982 *
1983 * Certain MS CRT functions will intentionally crash when passed invalid
1984 * parameters to highlight possible security holes. Setting this function as
1985 * the bad parameter handler will prevent the crash.
1986 *
1987 * In debug builds the parameters contain CRT information that might help track
1988 * down the source of a problem, but in non-debug builds the arguments are all
1989 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
1990 * worth allowing these to make debugging of issues easier.
1991 */
1992 static void
1993bad_param_handler(const wchar_t *expression,
1994 const wchar_t *function,
1995 const wchar_t *file,
1996 unsigned int line,
1997 uintptr_t pReserved)
1998{
1999}
2000
2001# define SET_INVALID_PARAM_HANDLER \
2002 ((void)_set_invalid_parameter_handler(bad_param_handler))
2003#else
2004# define SET_INVALID_PARAM_HANDLER
2005#endif
2006
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007#ifdef FEAT_GUI_W32
2008
2009/*
2010 * GUI version of mch_init().
2011 */
2012 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002013mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014{
2015#ifndef __MINGW32__
2016 extern int _fmode;
2017#endif
2018
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002019 /* Silently handle invalid parameters to CRT functions */
2020 SET_INVALID_PARAM_HANDLER;
2021
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 /* Let critical errors result in a failure, not in a dialog box. Required
2023 * for the timestamp test to work on removed floppies. */
2024 SetErrorMode(SEM_FAILCRITICALERRORS);
2025
2026 _fmode = O_BINARY; /* we do our own CR-LF translation */
2027
2028 /* Specify window size. Is there a place to get the default from? */
2029 Rows = 25;
2030 Columns = 80;
2031
2032 /* Look for 'vimrun' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 {
2034 char_u vimrun_location[_MAX_PATH + 4];
2035
2036 /* First try in same directory as gvim.exe */
2037 STRCPY(vimrun_location, exe_name);
2038 STRCPY(gettail(vimrun_location), "vimrun.exe");
2039 if (mch_getperm(vimrun_location) >= 0)
2040 {
2041 if (*skiptowhite(vimrun_location) != NUL)
2042 {
2043 /* Enclose path with white space in double quotes. */
2044 mch_memmove(vimrun_location + 1, vimrun_location,
2045 STRLEN(vimrun_location) + 1);
2046 *vimrun_location = '"';
2047 STRCPY(gettail(vimrun_location), "vimrun\" ");
2048 }
2049 else
2050 STRCPY(gettail(vimrun_location), "vimrun ");
2051
2052 vimrun_path = (char *)vim_strsave(vimrun_location);
2053 s_dont_use_vimrun = FALSE;
2054 }
Bram Moolenaar43663192017-03-05 14:29:12 +01002055 else if (executable_exists("vimrun.exe", NULL, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 s_dont_use_vimrun = FALSE;
2057
2058 /* Don't give the warning for a missing vimrun.exe right now, but only
2059 * when vimrun was supposed to be used. Don't bother people that do
2060 * not need vimrun.exe. */
2061 if (s_dont_use_vimrun)
2062 need_vimrun_warning = TRUE;
2063 }
2064
2065 /*
2066 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
2067 * Otherwise the default "findstr /n" is used.
2068 */
Bram Moolenaar43663192017-03-05 14:29:12 +01002069 if (!executable_exists("findstr.exe", NULL, TRUE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
2071
2072#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002073 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074#endif
2075}
2076
2077
2078#else /* FEAT_GUI_W32 */
2079
2080#define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
2081#define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
2082
2083/*
2084 * ClearConsoleBuffer()
2085 * Description:
2086 * Clears the entire contents of the console screen buffer, using the
2087 * specified attribute.
2088 * Returns:
2089 * TRUE on success
2090 */
2091 static BOOL
2092ClearConsoleBuffer(WORD wAttribute)
2093{
2094 CONSOLE_SCREEN_BUFFER_INFO csbi;
2095 COORD coord;
2096 DWORD NumCells, dummy;
2097
2098 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2099 return FALSE;
2100
2101 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
2102 coord.X = 0;
2103 coord.Y = 0;
2104 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
2105 coord, &dummy))
2106 {
2107 return FALSE;
2108 }
2109 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
2110 coord, &dummy))
2111 {
2112 return FALSE;
2113 }
2114
2115 return TRUE;
2116}
2117
2118/*
2119 * FitConsoleWindow()
2120 * Description:
2121 * Checks if the console window will fit within given buffer dimensions.
2122 * Also, if requested, will shrink the window to fit.
2123 * Returns:
2124 * TRUE on success
2125 */
2126 static BOOL
2127FitConsoleWindow(
2128 COORD dwBufferSize,
2129 BOOL WantAdjust)
2130{
2131 CONSOLE_SCREEN_BUFFER_INFO csbi;
2132 COORD dwWindowSize;
2133 BOOL NeedAdjust = FALSE;
2134
2135 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
2136 {
2137 /*
2138 * A buffer resize will fail if the current console window does
2139 * not lie completely within that buffer. To avoid this, we might
2140 * have to move and possibly shrink the window.
2141 */
2142 if (csbi.srWindow.Right >= dwBufferSize.X)
2143 {
2144 dwWindowSize.X = SRWIDTH(csbi.srWindow);
2145 if (dwWindowSize.X > dwBufferSize.X)
2146 dwWindowSize.X = dwBufferSize.X;
2147 csbi.srWindow.Right = dwBufferSize.X - 1;
2148 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
2149 NeedAdjust = TRUE;
2150 }
2151 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
2152 {
2153 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
2154 if (dwWindowSize.Y > dwBufferSize.Y)
2155 dwWindowSize.Y = dwBufferSize.Y;
2156 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
2157 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
2158 NeedAdjust = TRUE;
2159 }
2160 if (NeedAdjust && WantAdjust)
2161 {
2162 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
2163 return FALSE;
2164 }
2165 return TRUE;
2166 }
2167
2168 return FALSE;
2169}
2170
2171typedef struct ConsoleBufferStruct
2172{
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002173 BOOL IsValid;
2174 CONSOLE_SCREEN_BUFFER_INFO Info;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002175 PCHAR_INFO Buffer;
2176 COORD BufferSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177} ConsoleBuffer;
2178
2179/*
2180 * SaveConsoleBuffer()
2181 * Description:
2182 * Saves important information about the console buffer, including the
2183 * actual buffer contents. The saved information is suitable for later
2184 * restoration by RestoreConsoleBuffer().
2185 * Returns:
2186 * TRUE if all information was saved; FALSE otherwise
2187 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
2188 */
2189 static BOOL
2190SaveConsoleBuffer(
2191 ConsoleBuffer *cb)
2192{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002193 DWORD NumCells;
2194 COORD BufferCoord;
2195 SMALL_RECT ReadRegion;
2196 WORD Y, Y_incr;
2197
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 if (cb == NULL)
2199 return FALSE;
2200
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002201 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 {
2203 cb->IsValid = FALSE;
2204 return FALSE;
2205 }
2206 cb->IsValid = TRUE;
2207
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002208 /*
2209 * Allocate a buffer large enough to hold the entire console screen
2210 * buffer. If this ConsoleBuffer structure has already been initialized
2211 * with a buffer of the correct size, then just use that one.
2212 */
2213 if (!cb->IsValid || cb->Buffer == NULL ||
2214 cb->BufferSize.X != cb->Info.dwSize.X ||
2215 cb->BufferSize.Y != cb->Info.dwSize.Y)
2216 {
2217 cb->BufferSize.X = cb->Info.dwSize.X;
2218 cb->BufferSize.Y = cb->Info.dwSize.Y;
2219 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
2220 vim_free(cb->Buffer);
2221 cb->Buffer = (PCHAR_INFO)alloc(NumCells * sizeof(CHAR_INFO));
2222 if (cb->Buffer == NULL)
2223 return FALSE;
2224 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225
2226 /*
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002227 * We will now copy the console screen buffer into our buffer.
2228 * ReadConsoleOutput() seems to be limited as far as how much you
2229 * can read at a time. Empirically, this number seems to be about
2230 * 12000 cells (rows * columns). Start at position (0, 0) and copy
2231 * in chunks until it is all copied. The chunks will all have the
2232 * same horizontal characteristics, so initialize them now. The
2233 * height of each chunk will be (12000 / width).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 */
Bram Moolenaar61594242015-09-01 20:23:37 +02002235 BufferCoord.X = 0;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002236 ReadRegion.Left = 0;
2237 ReadRegion.Right = cb->Info.dwSize.X - 1;
2238 Y_incr = 12000 / cb->Info.dwSize.X;
2239 for (Y = 0; Y < cb->BufferSize.Y; Y += Y_incr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 {
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002241 /*
2242 * Read into position (0, Y) in our buffer.
2243 */
2244 BufferCoord.Y = Y;
2245 /*
2246 * Read the region whose top left corner is (0, Y) and whose bottom
2247 * right corner is (width - 1, Y + Y_incr - 1). This should define
2248 * a region of size width by Y_incr. Don't worry if this region is
2249 * too large for the remaining buffer; it will be cropped.
2250 */
2251 ReadRegion.Top = Y;
2252 ReadRegion.Bottom = Y + Y_incr - 1;
2253 if (!ReadConsoleOutput(g_hConOut, /* output handle */
2254 cb->Buffer, /* our buffer */
2255 cb->BufferSize, /* dimensions of our buffer */
2256 BufferCoord, /* offset in our buffer */
2257 &ReadRegion)) /* region to save */
2258 {
2259 vim_free(cb->Buffer);
2260 cb->Buffer = NULL;
2261 return FALSE;
2262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 }
2264
2265 return TRUE;
2266}
2267
2268/*
2269 * RestoreConsoleBuffer()
2270 * Description:
2271 * Restores important information about the console buffer, including the
2272 * actual buffer contents, if desired. The information to restore is in
2273 * the same format used by SaveConsoleBuffer().
2274 * Returns:
2275 * TRUE on success
2276 */
2277 static BOOL
2278RestoreConsoleBuffer(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002279 ConsoleBuffer *cb,
2280 BOOL RestoreScreen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002282 COORD BufferCoord;
2283 SMALL_RECT WriteRegion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284
2285 if (cb == NULL || !cb->IsValid)
2286 return FALSE;
2287
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002288 /*
2289 * Before restoring the buffer contents, clear the current buffer, and
2290 * restore the cursor position and window information. Doing this now
2291 * prevents old buffer contents from "flashing" onto the screen.
2292 */
2293 if (RestoreScreen)
2294 ClearConsoleBuffer(cb->Info.wAttributes);
2295
2296 FitConsoleWindow(cb->Info.dwSize, TRUE);
2297 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
2298 return FALSE;
2299 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
2300 return FALSE;
2301
2302 if (!RestoreScreen)
2303 {
2304 /*
2305 * No need to restore the screen buffer contents, so we're done.
2306 */
2307 return TRUE;
2308 }
2309
2310 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
2311 return FALSE;
2312 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
2313 return FALSE;
2314
2315 /*
2316 * Restore the screen buffer contents.
2317 */
2318 if (cb->Buffer != NULL)
2319 {
2320 BufferCoord.X = 0;
2321 BufferCoord.Y = 0;
2322 WriteRegion.Left = 0;
2323 WriteRegion.Top = 0;
2324 WriteRegion.Right = cb->Info.dwSize.X - 1;
2325 WriteRegion.Bottom = cb->Info.dwSize.Y - 1;
2326 if (!WriteConsoleOutput(g_hConOut, /* output handle */
2327 cb->Buffer, /* our buffer */
2328 cb->BufferSize, /* dimensions of our buffer */
2329 BufferCoord, /* offset in our buffer */
2330 &WriteRegion)) /* region to restore */
2331 {
2332 return FALSE;
2333 }
2334 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335
2336 return TRUE;
2337}
2338
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002339#define FEAT_RESTORE_ORIG_SCREEN
2340#ifdef FEAT_RESTORE_ORIG_SCREEN
2341static ConsoleBuffer g_cbOrig = { 0 };
2342#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343static ConsoleBuffer g_cbNonTermcap = { 0 };
2344static ConsoleBuffer g_cbTermcap = { 0 };
2345
2346#ifdef FEAT_TITLE
2347#ifdef __BORLANDC__
2348typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID);
2349#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002350typedef HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351#endif
2352char g_szOrigTitle[256] = { 0 };
2353HWND g_hWnd = NULL; /* also used in os_mswin.c */
2354static HICON g_hOrigIconSmall = NULL;
2355static HICON g_hOrigIcon = NULL;
2356static HICON g_hVimIcon = NULL;
2357static BOOL g_fCanChangeIcon = FALSE;
2358
2359/* ICON* are not defined in VC++ 4.0 */
2360#ifndef ICON_SMALL
2361#define ICON_SMALL 0
2362#endif
2363#ifndef ICON_BIG
2364#define ICON_BIG 1
2365#endif
2366/*
2367 * GetConsoleIcon()
2368 * Description:
2369 * Attempts to retrieve the small icon and/or the big icon currently in
2370 * use by a given window.
2371 * Returns:
2372 * TRUE on success
2373 */
2374 static BOOL
2375GetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002376 HWND hWnd,
2377 HICON *phIconSmall,
2378 HICON *phIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379{
2380 if (hWnd == NULL)
2381 return FALSE;
2382
2383 if (phIconSmall != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002384 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
2385 (WPARAM)ICON_SMALL, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 if (phIcon != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002387 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
2388 (WPARAM)ICON_BIG, (LPARAM)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 return TRUE;
2390}
2391
2392/*
2393 * SetConsoleIcon()
2394 * Description:
2395 * Attempts to change the small icon and/or the big icon currently in
2396 * use by a given window.
2397 * Returns:
2398 * TRUE on success
2399 */
2400 static BOOL
2401SetConsoleIcon(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002402 HWND hWnd,
2403 HICON hIconSmall,
2404 HICON hIcon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 if (hWnd == NULL)
2407 return FALSE;
2408
2409 if (hIconSmall != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002410 SendMessage(hWnd, WM_SETICON,
2411 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 if (hIcon != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002413 SendMessage(hWnd, WM_SETICON,
2414 (WPARAM)ICON_BIG, (LPARAM) hIcon);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 return TRUE;
2416}
2417
2418/*
2419 * SaveConsoleTitleAndIcon()
2420 * Description:
2421 * Saves the current console window title in g_szOrigTitle, for later
2422 * restoration. Also, attempts to obtain a handle to the console window,
2423 * and use it to save the small and big icons currently in use by the
2424 * console window. This is not always possible on some versions of Windows;
2425 * nor is it possible when running Vim remotely using Telnet (since the
2426 * console window the user sees is owned by a remote process).
2427 */
2428 static void
2429SaveConsoleTitleAndIcon(void)
2430{
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 /* Save the original title. */
2432 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
2433 return;
2434
2435 /*
2436 * Obtain a handle to the console window using GetConsoleWindow() from
2437 * KERNEL32.DLL; we need to handle in order to change the window icon.
2438 * This function only exists on NT-based Windows, starting with Windows
2439 * 2000. On older operating systems, we can't change the window icon
2440 * anyway.
2441 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002442 g_hWnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 if (g_hWnd == NULL)
2444 return;
2445
2446 /* Save the original console window icon. */
2447 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
2448 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
2449 return;
2450
2451 /* Extract the first icon contained in the Vim executable. */
Bram Moolenaarcddc91c2014-09-23 21:53:41 +02002452 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002453 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 if (g_hVimIcon != NULL)
2455 g_fCanChangeIcon = TRUE;
2456}
2457#endif
2458
2459static int g_fWindInitCalled = FALSE;
2460static int g_fTermcapMode = FALSE;
2461static CONSOLE_CURSOR_INFO g_cci;
2462static DWORD g_cmodein = 0;
2463static DWORD g_cmodeout = 0;
2464
2465/*
2466 * non-GUI version of mch_init().
2467 */
2468 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002469mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470{
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002471#ifndef FEAT_RESTORE_ORIG_SCREEN
2472 CONSOLE_SCREEN_BUFFER_INFO csbi;
2473#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474#ifndef __MINGW32__
2475 extern int _fmode;
2476#endif
2477
Bram Moolenaard32a99a2010-09-21 17:29:23 +02002478 /* Silently handle invalid parameters to CRT functions */
2479 SET_INVALID_PARAM_HANDLER;
2480
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 /* Let critical errors result in a failure, not in a dialog box. Required
2482 * for the timestamp test to work on removed floppies. */
2483 SetErrorMode(SEM_FAILCRITICALERRORS);
2484
2485 _fmode = O_BINARY; /* we do our own CR-LF translation */
2486 out_flush();
2487
2488 /* Obtain handles for the standard Console I/O devices */
2489 if (read_cmd_fd == 0)
2490 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
2491 else
2492 create_conin();
2493 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
2494
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002495#ifdef FEAT_RESTORE_ORIG_SCREEN
2496 /* Save the initial console buffer for later restoration */
2497 SaveConsoleBuffer(&g_cbOrig);
2498 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
2499#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 /* Get current text attributes */
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01002501 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
2502 g_attrCurrent = g_attrDefault = csbi.wAttributes;
2503#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 if (cterm_normal_fg_color == 0)
2505 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
2506 if (cterm_normal_bg_color == 0)
2507 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
2508
2509 /* set termcap codes to current text attributes */
2510 update_tcap(g_attrCurrent);
2511
2512 GetConsoleCursorInfo(g_hConOut, &g_cci);
2513 GetConsoleMode(g_hConIn, &g_cmodein);
2514 GetConsoleMode(g_hConOut, &g_cmodeout);
2515
2516#ifdef FEAT_TITLE
2517 SaveConsoleTitleAndIcon();
2518 /*
2519 * Set both the small and big icons of the console window to Vim's icon.
2520 * Note that Vim presently only has one size of icon (32x32), but it
2521 * automatically gets scaled down to 16x16 when setting the small icon.
2522 */
2523 if (g_fCanChangeIcon)
2524 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
2525#endif
2526
2527 ui_get_shellsize();
2528
2529#ifdef MCH_WRITE_DUMP
2530 fdDump = fopen("dump", "wt");
2531
2532 if (fdDump)
2533 {
2534 time_t t;
2535
2536 time(&t);
2537 fputs(ctime(&t), fdDump);
2538 fflush(fdDump);
2539 }
2540#endif
2541
2542 g_fWindInitCalled = TRUE;
2543
2544#ifdef FEAT_MOUSE
2545 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
2546#endif
2547
2548#ifdef FEAT_CLIPBOARD
Bram Moolenaar693e40c2013-02-26 14:56:42 +01002549 win_clip_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551}
2552
2553/*
2554 * non-GUI version of mch_exit().
2555 * Shut down and exit with status `r'
2556 * Careful: mch_exit() may be called before mch_init()!
2557 */
2558 void
2559mch_exit(int r)
2560{
Bram Moolenaar955f1982017-02-05 15:10:51 +01002561 exiting = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562
Bram Moolenaar955f1982017-02-05 15:10:51 +01002563 stoptermcap();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 if (g_fWindInitCalled)
2565 settmode(TMODE_COOK);
2566
2567 ml_close_all(TRUE); /* remove all memfiles */
2568
2569 if (g_fWindInitCalled)
2570 {
2571#ifdef FEAT_TITLE
2572 mch_restore_title(3);
2573 /*
2574 * Restore both the small and big icons of the console window to
2575 * what they were at startup. Don't do this when the window is
2576 * closed, Vim would hang here.
2577 */
2578 if (g_fCanChangeIcon && !g_fForceExit)
2579 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
2580#endif
2581
2582#ifdef MCH_WRITE_DUMP
2583 if (fdDump)
2584 {
2585 time_t t;
2586
2587 time(&t);
2588 fputs(ctime(&t), fdDump);
2589 fclose(fdDump);
2590 }
2591 fdDump = NULL;
2592#endif
2593 }
2594
2595 SetConsoleCursorInfo(g_hConOut, &g_cci);
2596 SetConsoleMode(g_hConIn, g_cmodein);
2597 SetConsoleMode(g_hConOut, g_cmodeout);
2598
2599#ifdef DYNAMIC_GETTEXT
2600 dyn_libintl_end();
2601#endif
2602
2603 exit(r);
2604}
2605#endif /* !FEAT_GUI_W32 */
2606
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607/*
2608 * Do we have an interactive window?
2609 */
2610 int
2611mch_check_win(
Bram Moolenaar1266d672017-02-01 13:43:36 +01002612 int argc UNUSED,
2613 char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614{
2615 get_exe_name();
2616
2617#ifdef FEAT_GUI_W32
2618 return OK; /* GUI always has a tty */
2619#else
2620 if (isatty(1))
2621 return OK;
2622 return FAIL;
2623#endif
2624}
2625
2626
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002627#ifdef FEAT_MBYTE
2628/*
2629 * fname_casew(): Wide version of fname_case(). Set the case of the file name,
2630 * if it already exists. When "len" is > 0, also expand short to long
2631 * filenames.
2632 * Return FAIL if wide functions are not available, OK otherwise.
2633 * NOTE: much of this is identical to fname_case(), keep in sync!
2634 */
2635 static int
2636fname_casew(
2637 WCHAR *name,
2638 int len)
2639{
2640 WCHAR szTrueName[_MAX_PATH + 2];
2641 WCHAR szTrueNameTemp[_MAX_PATH + 2];
2642 WCHAR *ptrue, *ptruePrev;
2643 WCHAR *porig, *porigPrev;
2644 int flen;
2645 WIN32_FIND_DATAW fb;
Bram Moolenaar73c61632013-12-07 14:48:10 +01002646 HANDLE hFind = INVALID_HANDLE_VALUE;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002647 int c;
2648 int slen;
2649
2650 flen = (int)wcslen(name);
2651 if (flen > _MAX_PATH)
2652 return OK;
2653
2654 /* slash_adjust(name) not needed, already adjusted by fname_case(). */
2655
2656 /* Build the new name in szTrueName[] one component at a time. */
2657 porig = name;
2658 ptrue = szTrueName;
2659
2660 if (iswalpha(porig[0]) && porig[1] == L':')
2661 {
2662 /* copy leading drive letter */
2663 *ptrue++ = *porig++;
2664 *ptrue++ = *porig++;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002665 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002666 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002667
2668 while (*porig != NUL)
2669 {
2670 /* copy \ characters */
2671 while (*porig == psepc)
2672 *ptrue++ = *porig++;
2673
2674 ptruePrev = ptrue;
2675 porigPrev = porig;
2676 while (*porig != NUL && *porig != psepc)
2677 {
2678 *ptrue++ = *porig++;
2679 }
2680 *ptrue = NUL;
2681
2682 /* To avoid a slow failure append "\*" when searching a directory,
2683 * server or network share. */
2684 wcscpy(szTrueNameTemp, szTrueName);
2685 slen = (int)wcslen(szTrueNameTemp);
2686 if (*porig == psepc && slen + 2 < _MAX_PATH)
2687 wcscpy(szTrueNameTemp + slen, L"\\*");
2688
2689 /* Skip "", "." and "..". */
2690 if (ptrue > ptruePrev
2691 && (ptruePrev[0] != L'.'
2692 || (ptruePrev[1] != NUL
2693 && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL)))
2694 && (hFind = FindFirstFileW(szTrueNameTemp, &fb))
2695 != INVALID_HANDLE_VALUE)
2696 {
2697 c = *porig;
2698 *porig = NUL;
2699
2700 /* Only use the match when it's the same name (ignoring case) or
2701 * expansion is allowed and there is a match with the short name
2702 * and there is enough room. */
2703 if (_wcsicoll(porigPrev, fb.cFileName) == 0
2704 || (len > 0
2705 && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0
2706 && (int)(ptruePrev - szTrueName)
2707 + (int)wcslen(fb.cFileName) < len)))
2708 {
2709 wcscpy(ptruePrev, fb.cFileName);
2710
2711 /* Look for exact match and prefer it if found. Must be a
2712 * long name, otherwise there would be only one match. */
2713 while (FindNextFileW(hFind, &fb))
2714 {
2715 if (*fb.cAlternateFileName != NUL
2716 && (wcscoll(porigPrev, fb.cFileName) == 0
2717 || (len > 0
2718 && (_wcsicoll(porigPrev,
2719 fb.cAlternateFileName) == 0
2720 && (int)(ptruePrev - szTrueName)
2721 + (int)wcslen(fb.cFileName) < len))))
2722 {
2723 wcscpy(ptruePrev, fb.cFileName);
2724 break;
2725 }
2726 }
2727 }
2728 FindClose(hFind);
2729 *porig = c;
2730 ptrue = ptruePrev + wcslen(ptruePrev);
2731 }
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002732 }
2733
2734 wcscpy(name, szTrueName);
2735 return OK;
2736}
2737#endif
2738
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739/*
2740 * fname_case(): Set the case of the file name, if it already exists.
2741 * When "len" is > 0, also expand short to long filenames.
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002742 * NOTE: much of this is identical to fname_casew(), keep in sync!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 */
2744 void
2745fname_case(
2746 char_u *name,
2747 int len)
2748{
2749 char szTrueName[_MAX_PATH + 2];
Bram Moolenaar464c9252010-10-13 20:37:41 +02002750 char szTrueNameTemp[_MAX_PATH + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 char *ptrue, *ptruePrev;
2752 char *porig, *porigPrev;
2753 int flen;
2754 WIN32_FIND_DATA fb;
2755 HANDLE hFind;
2756 int c;
Bram Moolenaar464c9252010-10-13 20:37:41 +02002757 int slen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00002759 flen = (int)STRLEN(name);
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002760 if (flen == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 return;
2762
2763 slash_adjust(name);
2764
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002765#ifdef FEAT_MBYTE
2766 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2767 {
2768 WCHAR *p = enc_to_utf16(name, NULL);
2769
2770 if (p != NULL)
2771 {
2772 char_u *q;
Bram Moolenaar21d89b62014-10-07 10:38:40 +02002773 WCHAR buf[_MAX_PATH + 1];
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002774
Bram Moolenaar21d89b62014-10-07 10:38:40 +02002775 wcsncpy(buf, p, _MAX_PATH);
2776 buf[_MAX_PATH] = L'\0';
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002777 vim_free(p);
2778
2779 if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK)
2780 {
2781 q = utf16_to_enc(buf, NULL);
2782 if (q != NULL)
2783 {
2784 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
2785 vim_free(q);
2786 return;
2787 }
2788 }
2789 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002790 return;
Bram Moolenaar65f04f62013-08-30 17:29:16 +02002791 }
2792#endif
2793
2794 /* If 'enc' is utf-8, flen can be larger than _MAX_PATH.
2795 * So we should check this after calling wide function. */
2796 if (flen > _MAX_PATH)
2797 return;
2798
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 /* Build the new name in szTrueName[] one component at a time. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002800 porig = (char *)name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 ptrue = szTrueName;
2802
2803 if (isalpha(porig[0]) && porig[1] == ':')
2804 {
2805 /* copy leading drive letter */
2806 *ptrue++ = *porig++;
2807 *ptrue++ = *porig++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808 }
Bram Moolenaar73c61632013-12-07 14:48:10 +01002809 *ptrue = NUL; /* in case nothing follows */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002810
2811 while (*porig != NUL)
2812 {
2813 /* copy \ characters */
2814 while (*porig == psepc)
2815 *ptrue++ = *porig++;
2816
2817 ptruePrev = ptrue;
2818 porigPrev = porig;
2819 while (*porig != NUL && *porig != psepc)
2820 {
2821#ifdef FEAT_MBYTE
2822 int l;
2823
2824 if (enc_dbcs)
2825 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002826 l = (*mb_ptr2len)((char_u *)porig);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 while (--l >= 0)
2828 *ptrue++ = *porig++;
2829 }
2830 else
2831#endif
2832 *ptrue++ = *porig++;
2833 }
2834 *ptrue = NUL;
2835
Bram Moolenaar464c9252010-10-13 20:37:41 +02002836 /* To avoid a slow failure append "\*" when searching a directory,
2837 * server or network share. */
2838 STRCPY(szTrueNameTemp, szTrueName);
Bram Moolenaar6b5ef062010-10-27 12:18:00 +02002839 slen = (int)strlen(szTrueNameTemp);
Bram Moolenaar464c9252010-10-13 20:37:41 +02002840 if (*porig == psepc && slen + 2 < _MAX_PATH)
2841 STRCPY(szTrueNameTemp + slen, "\\*");
2842
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 /* Skip "", "." and "..". */
2844 if (ptrue > ptruePrev
2845 && (ptruePrev[0] != '.'
2846 || (ptruePrev[1] != NUL
2847 && (ptruePrev[1] != '.' || ptruePrev[2] != NUL)))
Bram Moolenaar464c9252010-10-13 20:37:41 +02002848 && (hFind = FindFirstFile(szTrueNameTemp, &fb))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002849 != INVALID_HANDLE_VALUE)
2850 {
2851 c = *porig;
2852 *porig = NUL;
2853
2854 /* Only use the match when it's the same name (ignoring case) or
2855 * expansion is allowed and there is a match with the short name
2856 * and there is enough room. */
2857 if (_stricoll(porigPrev, fb.cFileName) == 0
2858 || (len > 0
2859 && (_stricoll(porigPrev, fb.cAlternateFileName) == 0
2860 && (int)(ptruePrev - szTrueName)
2861 + (int)strlen(fb.cFileName) < len)))
2862 {
2863 STRCPY(ptruePrev, fb.cFileName);
2864
2865 /* Look for exact match and prefer it if found. Must be a
2866 * long name, otherwise there would be only one match. */
2867 while (FindNextFile(hFind, &fb))
2868 {
2869 if (*fb.cAlternateFileName != NUL
2870 && (strcoll(porigPrev, fb.cFileName) == 0
2871 || (len > 0
2872 && (_stricoll(porigPrev,
2873 fb.cAlternateFileName) == 0
2874 && (int)(ptruePrev - szTrueName)
2875 + (int)strlen(fb.cFileName) < len))))
2876 {
2877 STRCPY(ptruePrev, fb.cFileName);
2878 break;
2879 }
2880 }
2881 }
2882 FindClose(hFind);
2883 *porig = c;
2884 ptrue = ptruePrev + strlen(ptruePrev);
2885 }
2886 }
2887
2888 STRCPY(name, szTrueName);
2889}
2890
2891
2892/*
2893 * Insert user name in s[len].
2894 */
2895 int
2896mch_get_user_name(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002897 char_u *s,
2898 int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899{
Bram Moolenaar41a09032007-10-01 18:34:34 +00002900 char szUserName[256 + 1]; /* UNLEN is 256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 DWORD cch = sizeof szUserName;
2902
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002903#ifdef FEAT_MBYTE
2904 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2905 {
2906 WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */
2907 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
2908
2909 if (GetUserNameW(wszUserName, &wcch))
2910 {
2911 char_u *p = utf16_to_enc(wszUserName, NULL);
2912
2913 if (p != NULL)
2914 {
2915 vim_strncpy(s, p, len - 1);
2916 vim_free(p);
2917 return OK;
2918 }
2919 }
Bram Moolenaarc8020ee2013-12-11 18:18:06 +01002920 }
2921#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 if (GetUserName(szUserName, &cch))
2923 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002924 vim_strncpy(s, (char_u *)szUserName, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002925 return OK;
2926 }
2927 s[0] = NUL;
2928 return FAIL;
2929}
2930
2931
2932/*
2933 * Insert host name in s[len].
2934 */
2935 void
2936mch_get_host_name(
2937 char_u *s,
2938 int len)
2939{
2940 DWORD cch = len;
2941
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002942#ifdef FEAT_MBYTE
2943 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2944 {
2945 WCHAR wszHostName[256 + 1];
2946 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
2947
2948 if (GetComputerNameW(wszHostName, &wcch))
2949 {
2950 char_u *p = utf16_to_enc(wszHostName, NULL);
2951
2952 if (p != NULL)
2953 {
2954 vim_strncpy(s, p, len - 1);
2955 vim_free(p);
2956 return;
2957 }
2958 }
Bram Moolenaar2cc87382013-12-11 18:21:45 +01002959 }
2960#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002961 if (!GetComputerName((LPSTR)s, &cch))
2962 vim_strncpy(s, (char_u *)"PC (Win32 Vim)", len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963}
2964
2965
2966/*
2967 * return process ID
2968 */
2969 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00002970mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971{
2972 return (long)GetCurrentProcessId();
2973}
2974
2975
2976/*
2977 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2978 * Return OK for success, FAIL for failure.
2979 */
2980 int
2981mch_dirname(
2982 char_u *buf,
2983 int len)
2984{
2985 /*
2986 * Originally this was:
2987 * return (getcwd(buf, len) != NULL ? OK : FAIL);
2988 * But the Win32s known bug list says that getcwd() doesn't work
2989 * so use the Win32 system call instead. <Negri>
2990 */
2991#ifdef FEAT_MBYTE
2992 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2993 {
2994 WCHAR wbuf[_MAX_PATH + 1];
2995
2996 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
2997 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00002998 char_u *p = utf16_to_enc(wbuf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999
3000 if (p != NULL)
3001 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003002 vim_strncpy(buf, p, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 vim_free(p);
3004 return OK;
3005 }
3006 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003007 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 }
3009#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003010 return (GetCurrentDirectory(len, (LPSTR)buf) != 0 ? OK : FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011}
3012
3013/*
Bram Moolenaarffa22202013-11-21 12:34:11 +01003014 * Get file permissions for "name".
3015 * Return mode_t or -1 for error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 */
3017 long
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003018mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019{
Bram Moolenaar8767f522016-07-01 17:17:39 +02003020 stat_T st;
Bram Moolenaarffa22202013-11-21 12:34:11 +01003021 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003023 n = mch_stat((char *)name, &st);
Bram Moolenaar78cf3f02014-01-10 18:16:07 +01003024 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025}
3026
3027
3028/*
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003029 * Set file permission for "name" to "perm".
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003030 *
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003031 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 */
3033 int
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003034mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035{
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003036 long n = -1;
3037
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038#ifdef FEAT_MBYTE
3039 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3040 {
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003041 WCHAR *p = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042
3043 if (p != NULL)
3044 {
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003045 n = _wchmod(p, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003047 if (n == -1)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003048 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 }
3050 }
Bram Moolenaare24a9c02013-07-24 13:49:22 +02003051 if (n == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003053 n = _chmod((const char *)name, perm);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003054 if (n == -1)
3055 return FAIL;
3056
3057 win32_set_archive(name);
3058
3059 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060}
3061
3062/*
3063 * Set hidden flag for "name".
3064 */
3065 void
3066mch_hide(char_u *name)
3067{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003068 int attrs = win32_getattrs(name);
3069 if (attrs == -1)
3070 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003072 attrs |= FILE_ATTRIBUTE_HIDDEN;
3073 win32_setattrs(name, attrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074}
3075
3076/*
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01003077 * Return TRUE if file "name" exists and is hidden.
3078 */
3079 int
3080mch_ishidden(char_u *name)
3081{
3082 int f = win32_getattrs(name);
3083
3084 if (f == -1)
3085 return FALSE; /* file does not exist at all */
3086
3087 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
3088}
3089
3090/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091 * return TRUE if "name" is a directory
3092 * return FALSE if "name" is not a directory or upon error
3093 */
3094 int
3095mch_isdir(char_u *name)
3096{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003097 int f = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098
3099 if (f == -1)
3100 return FALSE; /* file does not exist at all */
3101
3102 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3103}
3104
3105/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003106 * return TRUE if "name" is a directory, NOT a symlink to a directory
3107 * return FALSE if "name" is not a directory
3108 * return FALSE for error
3109 */
3110 int
3111mch_isrealdir(char_u *name)
3112{
3113 return mch_isdir(name) && !mch_is_symbolic_link(name);
3114}
3115
3116/*
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003117 * Create directory "name".
3118 * Return 0 on success, -1 on error.
3119 */
3120 int
3121mch_mkdir(char_u *name)
3122{
3123#ifdef FEAT_MBYTE
3124 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3125 {
3126 WCHAR *p;
3127 int retval;
3128
3129 p = enc_to_utf16(name, NULL);
3130 if (p == NULL)
3131 return -1;
3132 retval = _wmkdir(p);
3133 vim_free(p);
3134 return retval;
3135 }
3136#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003137 return _mkdir((const char *)name);
Bram Moolenaar3c9c99c2011-05-05 18:31:59 +02003138}
3139
3140/*
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003141 * Delete directory "name".
3142 * Return 0 on success, -1 on error.
3143 */
3144 int
3145mch_rmdir(char_u *name)
3146{
3147#ifdef FEAT_MBYTE
3148 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3149 {
3150 WCHAR *p;
3151 int retval;
3152
3153 p = enc_to_utf16(name, NULL);
3154 if (p == NULL)
3155 return -1;
3156 retval = _wrmdir(p);
3157 vim_free(p);
3158 return retval;
3159 }
3160#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003161 return _rmdir((const char *)name);
Bram Moolenaar4cf76792016-01-16 22:02:57 +01003162}
3163
3164/*
Bram Moolenaar03f48552006-02-28 23:52:23 +00003165 * Return TRUE if file "fname" has more than one link.
3166 */
3167 int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003168mch_is_hard_link(char_u *fname)
Bram Moolenaar03f48552006-02-28 23:52:23 +00003169{
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003170 BY_HANDLE_FILE_INFORMATION info;
3171
3172 return win32_fileinfo(fname, &info) == FILEINFO_OK
3173 && info.nNumberOfLinks > 1;
3174}
3175
3176/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01003177 * Return TRUE if "name" is a symbolic link (or a junction).
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003178 */
3179 int
Bram Moolenaar203258c2016-01-17 22:15:16 +01003180mch_is_symbolic_link(char_u *name)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003181{
3182 HANDLE hFind;
3183 int res = FALSE;
3184 WIN32_FIND_DATAA findDataA;
3185 DWORD fileFlags = 0, reparseTag = 0;
3186#ifdef FEAT_MBYTE
3187 WCHAR *wn = NULL;
3188 WIN32_FIND_DATAW findDataW;
3189
3190 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003191 wn = enc_to_utf16(name, NULL);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003192 if (wn != NULL)
3193 {
3194 hFind = FindFirstFileW(wn, &findDataW);
3195 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003196 if (hFind != INVALID_HANDLE_VALUE)
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003197 {
3198 fileFlags = findDataW.dwFileAttributes;
3199 reparseTag = findDataW.dwReserved0;
3200 }
3201 }
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003202 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003203#endif
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003204 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003205 hFind = FindFirstFile((LPCSTR)name, &findDataA);
Bram Moolenaar03e114b2013-06-16 16:34:56 +02003206 if (hFind != INVALID_HANDLE_VALUE)
3207 {
3208 fileFlags = findDataA.dwFileAttributes;
3209 reparseTag = findDataA.dwReserved0;
3210 }
3211 }
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003212
3213 if (hFind != INVALID_HANDLE_VALUE)
3214 FindClose(hFind);
3215
3216 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
Bram Moolenaar203258c2016-01-17 22:15:16 +01003217 && (reparseTag == IO_REPARSE_TAG_SYMLINK
3218 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003219 res = TRUE;
3220
3221 return res;
3222}
3223
3224/*
3225 * Return TRUE if file "fname" has more than one link or if it is a symbolic
3226 * link.
3227 */
3228 int
3229mch_is_linked(char_u *fname)
3230{
3231 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
3232 return TRUE;
3233 return FALSE;
3234}
3235
3236/*
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003237 * Get the by-handle-file-information for "fname".
3238 * Returns FILEINFO_OK when OK.
3239 * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
3240 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
3241 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
3242 */
3243 int
3244win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
3245{
Bram Moolenaar03f48552006-02-28 23:52:23 +00003246 HANDLE hFile;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003247 int res = FILEINFO_READ_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003248#ifdef FEAT_MBYTE
3249 WCHAR *wn = NULL;
3250
3251 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003252 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00003253 wn = enc_to_utf16(fname, NULL);
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003254 if (wn == NULL)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003255 return FILEINFO_ENC_FAIL;
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003256 }
Bram Moolenaar03f48552006-02-28 23:52:23 +00003257 if (wn != NULL)
3258 {
3259 hFile = CreateFileW(wn, /* file name */
3260 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003261 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003262 NULL, /* security descriptor */
3263 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003264 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003265 NULL); /* handle to template file */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003266 vim_free(wn);
Bram Moolenaar03f48552006-02-28 23:52:23 +00003267 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003268 else
Bram Moolenaar03f48552006-02-28 23:52:23 +00003269#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003270 hFile = CreateFile((LPCSTR)fname, /* file name */
3271 GENERIC_READ, /* access mode */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003272 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003273 NULL, /* security descriptor */
3274 OPEN_EXISTING, /* creation disposition */
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003275 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
Bram Moolenaar03f48552006-02-28 23:52:23 +00003276 NULL); /* handle to template file */
3277
3278 if (hFile != INVALID_HANDLE_VALUE)
3279 {
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02003280 if (GetFileInformationByHandle(hFile, info) != 0)
3281 res = FILEINFO_OK;
3282 else
3283 res = FILEINFO_INFO_FAIL;
Bram Moolenaar03f48552006-02-28 23:52:23 +00003284 CloseHandle(hFile);
3285 }
3286
Bram Moolenaar03f48552006-02-28 23:52:23 +00003287 return res;
3288}
3289
3290/*
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003291 * get file attributes for `name'
3292 * -1 : error
3293 * else FILE_ATTRIBUTE_* defined in winnt.h
3294 */
Bram Moolenaarffa22202013-11-21 12:34:11 +01003295 static int
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003296win32_getattrs(char_u *name)
3297{
3298 int attr;
3299#ifdef FEAT_MBYTE
3300 WCHAR *p = NULL;
3301
3302 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3303 p = enc_to_utf16(name, NULL);
3304
3305 if (p != NULL)
3306 {
3307 attr = GetFileAttributesW(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003308 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003309 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003310 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003311#endif
3312 attr = GetFileAttributes((char *)name);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003313
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003314 return attr;
3315}
3316
3317/*
3318 * set file attributes for `name' to `attrs'
3319 *
3320 * return -1 for failure, 0 otherwise
3321 */
3322 static
3323 int
3324win32_setattrs(char_u *name, int attrs)
3325{
3326 int res;
3327#ifdef FEAT_MBYTE
3328 WCHAR *p = NULL;
3329
3330 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3331 p = enc_to_utf16(name, NULL);
3332
3333 if (p != NULL)
3334 {
3335 res = SetFileAttributesW(p, attrs);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003336 vim_free(p);
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003337 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003338 else
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003339#endif
3340 res = SetFileAttributes((char *)name, attrs);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003341
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003342 return res ? 0 : -1;
3343}
3344
3345/*
3346 * Set archive flag for "name".
3347 */
3348 static
3349 int
3350win32_set_archive(char_u *name)
3351{
3352 int attrs = win32_getattrs(name);
3353 if (attrs == -1)
3354 return -1;
3355
3356 attrs |= FILE_ATTRIBUTE_ARCHIVE;
3357 return win32_setattrs(name, attrs);
3358}
3359
3360/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 * Return TRUE if file or directory "name" is writable (not readonly).
3362 * Strange semantics of Win32: a readonly directory is writable, but you can't
3363 * delete a file. Let's say this means it is writable.
3364 */
3365 int
3366mch_writable(char_u *name)
3367{
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003368 int attrs = win32_getattrs(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003370 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
3371 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372}
3373
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374/*
Bram Moolenaar43663192017-03-05 14:29:12 +01003375 * Return TRUE if "name" can be executed, FALSE if not.
Bram Moolenaar77b77102015-03-21 22:18:41 +01003376 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar43663192017-03-05 14:29:12 +01003377 * When returning TRUE and "path" is not NULL save the path and set "*path" to
3378 * the allocated memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 */
3380 int
Bram Moolenaar77b77102015-03-21 22:18:41 +01003381mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382{
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003383 char_u buf[_MAX_PATH];
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003384 int len = (int)STRLEN(name);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003385 char_u *p;
3386
3387 if (len >= _MAX_PATH) /* safety check */
3388 return FALSE;
3389
3390 /* If there already is an extension try using the name directly. Also do
3391 * this with a Unix-shell like 'shell'. */
3392 if (vim_strchr(gettail(name), '.') != NULL
3393 || strstr((char *)gettail(p_sh), "sh") != NULL)
Bram Moolenaar43663192017-03-05 14:29:12 +01003394 if (executable_exists((char *)name, path, use_path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003395 return TRUE;
3396
3397 /*
3398 * Loop over all extensions in $PATHEXT.
3399 */
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +00003400 vim_strncpy(buf, name, _MAX_PATH - 1);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003401 p = mch_getenv("PATHEXT");
3402 if (p == NULL)
3403 p = (char_u *)".com;.exe;.bat;.cmd";
3404 while (*p)
3405 {
3406 if (p[0] == '.' && (p[1] == NUL || p[1] == ';'))
3407 {
3408 /* A single "." means no extension is added. */
3409 buf[len] = NUL;
3410 ++p;
3411 if (*p)
3412 ++p;
3413 }
3414 else
3415 copy_option_part(&p, buf + len, _MAX_PATH - len, ";");
Bram Moolenaar43663192017-03-05 14:29:12 +01003416 if (executable_exists((char *)buf, path, use_path))
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00003417 return TRUE;
3418 }
3419 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421
3422/*
3423 * Check what "name" is:
3424 * NODE_NORMAL: file or directory (or doesn't exist)
3425 * NODE_WRITABLE: writable device, socket, fifo, etc.
3426 * NODE_OTHER: non-writable things
3427 */
3428 int
3429mch_nodetype(char_u *name)
3430{
3431 HANDLE hFile;
3432 int type;
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003433#ifdef FEAT_MBYTE
3434 WCHAR *wn = NULL;
3435#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436
Bram Moolenaar043545e2006-10-10 16:44:07 +00003437 /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
3438 * read from it later will cause Vim to hang. Thus return NODE_WRITABLE
3439 * here. */
3440 if (STRNCMP(name, "\\\\.\\", 4) == 0)
3441 return NODE_WRITABLE;
3442
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003443#ifdef FEAT_MBYTE
3444 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003445 wn = enc_to_utf16(name, NULL);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003446
3447 if (wn != NULL)
3448 {
3449 hFile = CreateFileW(wn, /* file name */
3450 GENERIC_WRITE, /* access mode */
3451 0, /* share mode */
3452 NULL, /* security descriptor */
3453 OPEN_EXISTING, /* creation disposition */
3454 0, /* file attributes */
3455 NULL); /* handle to template file */
3456 vim_free(wn);
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003457 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003458 else
Bram Moolenaar4dee1bb2013-08-30 17:11:33 +02003459#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003460 hFile = CreateFile((LPCSTR)name, /* file name */
3461 GENERIC_WRITE, /* access mode */
3462 0, /* share mode */
3463 NULL, /* security descriptor */
3464 OPEN_EXISTING, /* creation disposition */
3465 0, /* file attributes */
3466 NULL); /* handle to template file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467
3468 if (hFile == INVALID_HANDLE_VALUE)
3469 return NODE_NORMAL;
3470
3471 type = GetFileType(hFile);
3472 CloseHandle(hFile);
3473 if (type == FILE_TYPE_CHAR)
3474 return NODE_WRITABLE;
3475 if (type == FILE_TYPE_DISK)
3476 return NODE_NORMAL;
3477 return NODE_OTHER;
3478}
3479
3480#ifdef HAVE_ACL
3481struct my_acl
3482{
3483 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3484 PSID pSidOwner;
3485 PSID pSidGroup;
3486 PACL pDacl;
3487 PACL pSacl;
3488};
3489#endif
3490
3491/*
3492 * Return a pointer to the ACL of file "fname" in allocated memory.
3493 * Return NULL if the ACL is not available for whatever reason.
3494 */
3495 vim_acl_T
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003496mch_get_acl(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497{
3498#ifndef HAVE_ACL
3499 return (vim_acl_T)NULL;
3500#else
3501 struct my_acl *p = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003502 DWORD err;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003504 p = (struct my_acl *)alloc_clear((unsigned)sizeof(struct my_acl));
3505 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 {
Bram Moolenaar27515922013-06-29 15:36:26 +02003507# ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003508 WCHAR *wn = NULL;
Bram Moolenaar27515922013-06-29 15:36:26 +02003509
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003510 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3511 wn = enc_to_utf16(fname, NULL);
3512 if (wn != NULL)
3513 {
3514 /* Try to retrieve the entire security descriptor. */
3515 err = GetNamedSecurityInfoW(
3516 wn, // Abstract filename
3517 SE_FILE_OBJECT, // File Object
3518 OWNER_SECURITY_INFORMATION |
3519 GROUP_SECURITY_INFORMATION |
3520 DACL_SECURITY_INFORMATION |
3521 SACL_SECURITY_INFORMATION,
3522 &p->pSidOwner, // Ownership information.
3523 &p->pSidGroup, // Group membership.
3524 &p->pDacl, // Discretionary information.
3525 &p->pSacl, // For auditing purposes.
3526 &p->pSecurityDescriptor);
3527 if (err == ERROR_ACCESS_DENIED ||
3528 err == ERROR_PRIVILEGE_NOT_HELD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003530 /* Retrieve only DACL. */
3531 (void)GetNamedSecurityInfoW(
3532 wn,
3533 SE_FILE_OBJECT,
3534 DACL_SECURITY_INFORMATION,
3535 NULL,
3536 NULL,
3537 &p->pDacl,
3538 NULL,
3539 &p->pSecurityDescriptor);
Bram Moolenaar27515922013-06-29 15:36:26 +02003540 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003541 if (p->pSecurityDescriptor == NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003542 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003543 mch_free_acl((vim_acl_T)p);
3544 p = NULL;
3545 }
3546 vim_free(wn);
3547 }
3548 else
3549# endif
3550 {
3551 /* Try to retrieve the entire security descriptor. */
3552 err = GetNamedSecurityInfo(
3553 (LPSTR)fname, // Abstract filename
3554 SE_FILE_OBJECT, // File Object
3555 OWNER_SECURITY_INFORMATION |
3556 GROUP_SECURITY_INFORMATION |
3557 DACL_SECURITY_INFORMATION |
3558 SACL_SECURITY_INFORMATION,
3559 &p->pSidOwner, // Ownership information.
3560 &p->pSidGroup, // Group membership.
3561 &p->pDacl, // Discretionary information.
3562 &p->pSacl, // For auditing purposes.
3563 &p->pSecurityDescriptor);
3564 if (err == ERROR_ACCESS_DENIED ||
3565 err == ERROR_PRIVILEGE_NOT_HELD)
3566 {
3567 /* Retrieve only DACL. */
3568 (void)GetNamedSecurityInfo(
3569 (LPSTR)fname,
3570 SE_FILE_OBJECT,
3571 DACL_SECURITY_INFORMATION,
3572 NULL,
3573 NULL,
3574 &p->pDacl,
3575 NULL,
3576 &p->pSecurityDescriptor);
3577 }
3578 if (p->pSecurityDescriptor == NULL)
3579 {
3580 mch_free_acl((vim_acl_T)p);
3581 p = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 }
3583 }
3584 }
3585
3586 return (vim_acl_T)p;
3587#endif
3588}
3589
Bram Moolenaar27515922013-06-29 15:36:26 +02003590#ifdef HAVE_ACL
3591/*
3592 * Check if "acl" contains inherited ACE.
3593 */
3594 static BOOL
3595is_acl_inherited(PACL acl)
3596{
3597 DWORD i;
3598 ACL_SIZE_INFORMATION acl_info;
3599 PACCESS_ALLOWED_ACE ace;
3600
3601 acl_info.AceCount = 0;
3602 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
3603 for (i = 0; i < acl_info.AceCount; i++)
3604 {
3605 GetAce(acl, i, (LPVOID *)&ace);
3606 if (ace->Header.AceFlags & INHERITED_ACE)
3607 return TRUE;
3608 }
3609 return FALSE;
3610}
3611#endif
3612
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613/*
3614 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3615 * Errors are ignored.
3616 * This must only be called with "acl" equal to what mch_get_acl() returned.
3617 */
3618 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003619mch_set_acl(char_u *fname, vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620{
3621#ifdef HAVE_ACL
3622 struct my_acl *p = (struct my_acl *)acl;
Bram Moolenaar27515922013-06-29 15:36:26 +02003623 SECURITY_INFORMATION sec_info = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003625 if (p != NULL)
Bram Moolenaar27515922013-06-29 15:36:26 +02003626 {
3627# ifdef FEAT_MBYTE
3628 WCHAR *wn = NULL;
3629# endif
3630
3631 /* Set security flags */
3632 if (p->pSidOwner)
3633 sec_info |= OWNER_SECURITY_INFORMATION;
3634 if (p->pSidGroup)
3635 sec_info |= GROUP_SECURITY_INFORMATION;
3636 if (p->pDacl)
3637 {
3638 sec_info |= DACL_SECURITY_INFORMATION;
3639 /* Do not inherit its parent's DACL.
3640 * If the DACL is inherited, Cygwin permissions would be changed.
3641 */
3642 if (!is_acl_inherited(p->pDacl))
3643 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
3644 }
3645 if (p->pSacl)
3646 sec_info |= SACL_SECURITY_INFORMATION;
3647
3648# ifdef FEAT_MBYTE
3649 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3650 wn = enc_to_utf16(fname, NULL);
3651 if (wn != NULL)
3652 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003653 (void)SetNamedSecurityInfoW(
Bram Moolenaar27515922013-06-29 15:36:26 +02003654 wn, // Abstract filename
3655 SE_FILE_OBJECT, // File Object
3656 sec_info,
3657 p->pSidOwner, // Ownership information.
3658 p->pSidGroup, // Group membership.
3659 p->pDacl, // Discretionary information.
3660 p->pSacl // For auditing purposes.
3661 );
3662 vim_free(wn);
3663 }
3664 else
3665# endif
3666 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003667 (void)SetNamedSecurityInfo(
Bram Moolenaar27515922013-06-29 15:36:26 +02003668 (LPSTR)fname, // Abstract filename
3669 SE_FILE_OBJECT, // File Object
3670 sec_info,
3671 p->pSidOwner, // Ownership information.
3672 p->pSidGroup, // Group membership.
3673 p->pDacl, // Discretionary information.
3674 p->pSacl // For auditing purposes.
3675 );
3676 }
3677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678#endif
3679}
3680
3681 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003682mch_free_acl(vim_acl_T acl)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683{
3684#ifdef HAVE_ACL
3685 struct my_acl *p = (struct my_acl *)acl;
3686
3687 if (p != NULL)
3688 {
3689 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3690 vim_free(p);
3691 }
3692#endif
3693}
3694
3695#ifndef FEAT_GUI_W32
3696
3697/*
3698 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3699 */
3700 static BOOL WINAPI
3701handler_routine(
3702 DWORD dwCtrlType)
3703{
3704 switch (dwCtrlType)
3705 {
3706 case CTRL_C_EVENT:
3707 if (ctrl_c_interrupts)
3708 g_fCtrlCPressed = TRUE;
3709 return TRUE;
3710
3711 case CTRL_BREAK_EVENT:
3712 g_fCBrkPressed = TRUE;
3713 return TRUE;
3714
3715 /* fatal events: shut down gracefully */
3716 case CTRL_CLOSE_EVENT:
3717 case CTRL_LOGOFF_EVENT:
3718 case CTRL_SHUTDOWN_EVENT:
3719 windgoto((int)Rows - 1, 0);
3720 g_fForceExit = TRUE;
3721
Bram Moolenaar0fde2902008-03-16 13:54:13 +00003722 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 (dwCtrlType == CTRL_CLOSE_EVENT
3724 ? _("close")
3725 : dwCtrlType == CTRL_LOGOFF_EVENT
3726 ? _("logoff")
3727 : _("shutdown")));
3728#ifdef DEBUG
3729 OutputDebugString(IObuff);
3730#endif
3731
3732 preserve_exit(); /* output IObuff, preserve files and exit */
3733
3734 return TRUE; /* not reached */
3735
3736 default:
3737 return FALSE;
3738 }
3739}
3740
3741
3742/*
3743 * set the tty in (raw) ? "raw" : "cooked" mode
3744 */
3745 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003746mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747{
3748 DWORD cmodein;
3749 DWORD cmodeout;
3750 BOOL bEnableHandler;
3751
3752 GetConsoleMode(g_hConIn, &cmodein);
3753 GetConsoleMode(g_hConOut, &cmodeout);
3754 if (tmode == TMODE_RAW)
3755 {
3756 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3757 ENABLE_ECHO_INPUT);
3758#ifdef FEAT_MOUSE
3759 if (g_fMouseActive)
3760 cmodein |= ENABLE_MOUSE_INPUT;
3761#endif
3762 cmodeout &= ~(ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3763 bEnableHandler = TRUE;
3764 }
3765 else /* cooked */
3766 {
3767 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3768 ENABLE_ECHO_INPUT);
3769 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3770 bEnableHandler = FALSE;
3771 }
3772 SetConsoleMode(g_hConIn, cmodein);
3773 SetConsoleMode(g_hConOut, cmodeout);
3774 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3775
3776#ifdef MCH_WRITE_DUMP
3777 if (fdDump)
3778 {
3779 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3780 tmode == TMODE_RAW ? "raw" :
3781 tmode == TMODE_COOK ? "cooked" : "normal",
3782 cmodein, cmodeout);
3783 fflush(fdDump);
3784 }
3785#endif
3786}
3787
3788
3789/*
3790 * Get the size of the current window in `Rows' and `Columns'
3791 * Return OK when size could be determined, FAIL otherwise.
3792 */
3793 int
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003794mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795{
3796 CONSOLE_SCREEN_BUFFER_INFO csbi;
3797
3798 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3799 {
3800 /*
3801 * For some reason, we are trying to get the screen dimensions
3802 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3803 * variables are really intended to mean the size of Vim screen
3804 * while in termcap mode.
3805 */
3806 Rows = g_cbTermcap.Info.dwSize.Y;
3807 Columns = g_cbTermcap.Info.dwSize.X;
3808 }
3809 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3810 {
3811 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3812 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3813 }
3814 else
3815 {
3816 Rows = 25;
3817 Columns = 80;
3818 }
3819 return OK;
3820}
3821
3822/*
3823 * Set a console window to `xSize' * `ySize'
3824 */
3825 static void
3826ResizeConBufAndWindow(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003827 HANDLE hConsole,
3828 int xSize,
3829 int ySize)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830{
3831 CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */
3832 SMALL_RECT srWindowRect; /* hold the new console size */
3833 COORD coordScreen;
3834
3835#ifdef MCH_WRITE_DUMP
3836 if (fdDump)
3837 {
3838 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3839 fflush(fdDump);
3840 }
3841#endif
3842
3843 /* get the largest size we can size the console window to */
3844 coordScreen = GetLargestConsoleWindowSize(hConsole);
3845
3846 /* define the new console window size and scroll position */
3847 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3848 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3849 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3850
3851 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3852 {
3853 int sx, sy;
3854
3855 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3856 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3857 if (sy < ySize || sx < xSize)
3858 {
3859 /*
3860 * Increasing number of lines/columns, do buffer first.
3861 * Use the maximal size in x and y direction.
3862 */
3863 if (sy < ySize)
3864 coordScreen.Y = ySize;
3865 else
3866 coordScreen.Y = sy;
3867 if (sx < xSize)
3868 coordScreen.X = xSize;
3869 else
3870 coordScreen.X = sx;
3871 SetConsoleScreenBufferSize(hConsole, coordScreen);
3872 }
3873 }
3874
3875 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &srWindowRect))
3876 {
3877#ifdef MCH_WRITE_DUMP
3878 if (fdDump)
3879 {
3880 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
3881 GetLastError());
3882 fflush(fdDump);
3883 }
3884#endif
3885 }
3886
3887 /* define the new console buffer size */
3888 coordScreen.X = xSize;
3889 coordScreen.Y = ySize;
3890
3891 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
3892 {
3893#ifdef MCH_WRITE_DUMP
3894 if (fdDump)
3895 {
3896 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
3897 GetLastError());
3898 fflush(fdDump);
3899 }
3900#endif
3901 }
3902}
3903
3904
3905/*
3906 * Set the console window to `Rows' * `Columns'
3907 */
3908 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003909mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910{
3911 COORD coordScreen;
3912
3913 /* Don't change window size while still starting up */
3914 if (suppress_winsize != 0)
3915 {
3916 suppress_winsize = 2;
3917 return;
3918 }
3919
3920 if (term_console)
3921 {
3922 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3923
3924 /* Clamp Rows and Columns to reasonable values */
3925 if (Rows > coordScreen.Y)
3926 Rows = coordScreen.Y;
3927 if (Columns > coordScreen.X)
3928 Columns = coordScreen.X;
3929
3930 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3931 }
3932}
3933
3934/*
3935 * Rows and/or Columns has changed.
3936 */
3937 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003938mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939{
3940 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3941}
3942
3943
3944/*
3945 * Called when started up, to set the winsize that was delayed.
3946 */
3947 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00003948mch_set_winsize_now(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003949{
3950 if (suppress_winsize == 2)
3951 {
3952 suppress_winsize = 0;
3953 mch_set_shellsize();
3954 shell_resized();
3955 }
3956 suppress_winsize = 0;
3957}
3958#endif /* FEAT_GUI_W32 */
3959
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003960 static BOOL
3961vim_create_process(
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003962 char *cmd,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003963 BOOL inherit_handles,
Bram Moolenaar3f1138e2014-01-05 13:29:26 +01003964 DWORD flags,
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003965 STARTUPINFO *si,
3966 PROCESS_INFORMATION *pi)
3967{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02003968#ifdef FEAT_MBYTE
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003969 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3970 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01003971 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003972
3973 if (wcmd != NULL)
3974 {
3975 BOOL ret;
3976 ret = CreateProcessW(
3977 NULL, /* Executable name */
3978 wcmd, /* Command to execute */
3979 NULL, /* Process security attributes */
3980 NULL, /* Thread security attributes */
3981 inherit_handles, /* Inherit handles */
3982 flags, /* Creation flags */
3983 NULL, /* Environment */
3984 NULL, /* Current directory */
Bram Moolenaar36c85b22013-12-12 20:25:44 +01003985 (LPSTARTUPINFOW)si, /* Startup information */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01003986 pi); /* Process information */
3987 vim_free(wcmd);
3988 return ret;
3989 }
3990 }
3991#endif
3992 return CreateProcess(
3993 NULL, /* Executable name */
3994 cmd, /* Command to execute */
3995 NULL, /* Process security attributes */
3996 NULL, /* Thread security attributes */
3997 inherit_handles, /* Inherit handles */
3998 flags, /* Creation flags */
3999 NULL, /* Environment */
4000 NULL, /* Current directory */
4001 si, /* Startup information */
4002 pi); /* Process information */
4003}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004
4005
4006#if defined(FEAT_GUI_W32) || defined(PROTO)
4007
4008/*
4009 * Specialised version of system() for Win32 GUI mode.
4010 * This version proceeds as follows:
4011 * 1. Create a console window for use by the subprocess
4012 * 2. Run the subprocess (it gets the allocated console by default)
4013 * 3. Wait for the subprocess to terminate and get its exit code
4014 * 4. Prompt the user to press a key to close the console window
4015 */
4016 static int
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004017mch_system_classic(char *cmd, int options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018{
4019 STARTUPINFO si;
4020 PROCESS_INFORMATION pi;
4021 DWORD ret = 0;
4022 HWND hwnd = GetFocus();
4023
4024 si.cb = sizeof(si);
4025 si.lpReserved = NULL;
4026 si.lpDesktop = NULL;
4027 si.lpTitle = NULL;
4028 si.dwFlags = STARTF_USESHOWWINDOW;
4029 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004030 * It's nicer to run a filter command in a minimized window.
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004031 * Don't activate the window to keep focus on Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004033 if (options & SHELL_DOOUT)
Bram Moolenaar96e5cee2010-11-24 12:35:21 +01004034 si.wShowWindow = SW_SHOWMINNOACTIVE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 else
4036 si.wShowWindow = SW_SHOWNORMAL;
4037 si.cbReserved2 = 0;
4038 si.lpReserved2 = NULL;
4039
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 /* Now, run the command */
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004041 vim_create_process(cmd, FALSE,
4042 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE, &si, &pi);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043
4044 /* Wait for the command to terminate before continuing */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 {
4046#ifdef FEAT_GUI
4047 int delay = 1;
4048
4049 /* Keep updating the window while waiting for the shell to finish. */
4050 for (;;)
4051 {
4052 MSG msg;
4053
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004054 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 {
4056 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02004057 pDispatchMessage(&msg);
Bram Moolenaare4195c52012-08-02 12:31:44 +02004058 delay = 1;
4059 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 }
4061 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4062 break;
4063
4064 /* We start waiting for a very short time and then increase it, so
4065 * that we respond quickly when the process is quick, and don't
4066 * consume too much overhead when it's slow. */
4067 if (delay < 50)
4068 delay += 10;
4069 }
4070#else
4071 WaitForSingleObject(pi.hProcess, INFINITE);
4072#endif
4073
4074 /* Get the command exit code */
4075 GetExitCodeProcess(pi.hProcess, &ret);
4076 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077
4078 /* Close the handles to the subprocess, so that it goes away */
4079 CloseHandle(pi.hThread);
4080 CloseHandle(pi.hProcess);
4081
4082 /* Try to get input focus back. Doesn't always work though. */
4083 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
4084
4085 return ret;
4086}
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004087
4088/*
4089 * Thread launched by the gui to send the current buffer data to the
4090 * process. This way avoid to hang up vim totally if the children
4091 * process take a long time to process the lines.
4092 */
Bram Moolenaar4c38d662016-08-03 20:54:57 +02004093 static unsigned int __stdcall
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004094sub_process_writer(LPVOID param)
4095{
4096 HANDLE g_hChildStd_IN_Wr = param;
4097 linenr_T lnum = curbuf->b_op_start.lnum;
4098 DWORD len = 0;
4099 DWORD l;
4100 char_u *lp = ml_get(lnum);
4101 char_u *s;
4102 int written = 0;
4103
4104 for (;;)
4105 {
4106 l = (DWORD)STRLEN(lp + written);
4107 if (l == 0)
4108 len = 0;
4109 else if (lp[written] == NL)
4110 {
4111 /* NL -> NUL translation */
4112 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
4113 }
4114 else
4115 {
4116 s = vim_strchr(lp + written, NL);
4117 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
4118 s == NULL ? l : (DWORD)(s - (lp + written)),
4119 &len, NULL);
4120 }
4121 if (len == (int)l)
4122 {
4123 /* Finished a line, add a NL, unless this line should not have
4124 * one. */
4125 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004126 || (!curbuf->b_p_bin
4127 && curbuf->b_p_fixeol)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004128 || (lnum != curbuf->b_no_eol_lnum
4129 && (lnum != curbuf->b_ml.ml_line_count
4130 || curbuf->b_p_eol)))
4131 {
Bram Moolenaaraf62ff32013-03-19 14:48:29 +01004132 WriteFile(g_hChildStd_IN_Wr, "\n", 1, (LPDWORD)&ignored, NULL);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004133 }
4134
4135 ++lnum;
4136 if (lnum > curbuf->b_op_end.lnum)
4137 break;
4138
4139 lp = ml_get(lnum);
4140 written = 0;
4141 }
4142 else if (len > 0)
4143 written += len;
4144 }
4145
4146 /* finished all the lines, close pipe */
4147 CloseHandle(g_hChildStd_IN_Wr);
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004148 return 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004149}
4150
4151
4152# define BUFLEN 100 /* length for buffer, stolen from unix version */
4153
4154/*
4155 * This function read from the children's stdout and write the
4156 * data on screen or in the buffer accordingly.
4157 */
4158 static void
4159dump_pipe(int options,
4160 HANDLE g_hChildStd_OUT_Rd,
4161 garray_T *ga,
4162 char_u buffer[],
4163 DWORD *buffer_off)
4164{
4165 DWORD availableBytes = 0;
4166 DWORD i;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004167 int ret;
4168 DWORD len;
4169 DWORD toRead;
4170 int repeatCount;
4171
4172 /* we query the pipe to see if there is any data to read
4173 * to avoid to perform a blocking read */
4174 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */
4175 NULL, /* optional buffer */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004176 0, /* buffer size */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004177 NULL, /* number of read bytes */
4178 &availableBytes, /* available bytes total */
4179 NULL); /* byteLeft */
4180
4181 repeatCount = 0;
4182 /* We got real data in the pipe, read it */
Bram Moolenaarf6a2b082012-06-29 13:14:03 +02004183 while (ret != 0 && availableBytes > 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004184 {
4185 repeatCount++;
4186 toRead =
4187# ifdef FEAT_MBYTE
4188 (DWORD)(BUFLEN - *buffer_off);
4189# else
4190 (DWORD)BUFLEN;
4191# endif
4192 toRead = availableBytes < toRead ? availableBytes : toRead;
4193 ReadFile(g_hChildStd_OUT_Rd, buffer
4194# ifdef FEAT_MBYTE
4195 + *buffer_off, toRead
4196# else
4197 , toRead
4198# endif
4199 , &len, NULL);
4200
4201 /* If we haven't read anything, there is a problem */
4202 if (len == 0)
4203 break;
4204
4205 availableBytes -= len;
4206
4207 if (options & SHELL_READ)
4208 {
4209 /* Do NUL -> NL translation, append NL separated
4210 * lines to the current buffer. */
4211 for (i = 0; i < len; ++i)
4212 {
4213 if (buffer[i] == NL)
4214 append_ga_line(ga);
4215 else if (buffer[i] == NUL)
4216 ga_append(ga, NL);
4217 else
4218 ga_append(ga, buffer[i]);
4219 }
4220 }
4221# ifdef FEAT_MBYTE
4222 else if (has_mbyte)
4223 {
4224 int l;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004225 int c;
4226 char_u *p;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004227
4228 len += *buffer_off;
4229 buffer[len] = NUL;
4230
4231 /* Check if the last character in buffer[] is
4232 * incomplete, keep these bytes for the next
4233 * round. */
4234 for (p = buffer; p < buffer + len; p += l)
4235 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004236 l = MB_CPTR2LEN(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004237 if (l == 0)
4238 l = 1; /* NUL byte? */
4239 else if (MB_BYTE2LEN(*p) != l)
4240 break;
4241 }
4242 if (p == buffer) /* no complete character */
4243 {
4244 /* avoid getting stuck at an illegal byte */
4245 if (len >= 12)
4246 ++p;
4247 else
4248 {
4249 *buffer_off = len;
4250 return;
4251 }
4252 }
4253 c = *p;
4254 *p = NUL;
4255 msg_puts(buffer);
4256 if (p < buffer + len)
4257 {
4258 *p = c;
4259 *buffer_off = (DWORD)((buffer + len) - p);
4260 mch_memmove(buffer, p, *buffer_off);
4261 return;
4262 }
4263 *buffer_off = 0;
4264 }
4265# endif /* FEAT_MBYTE */
4266 else
4267 {
4268 buffer[len] = NUL;
4269 msg_puts(buffer);
4270 }
4271
4272 windgoto(msg_row, msg_col);
4273 cursor_on();
4274 out_flush();
4275 }
4276}
4277
4278/*
4279 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
4280 * for communication and doesn't open any new window.
4281 */
4282 static int
4283mch_system_piped(char *cmd, int options)
4284{
4285 STARTUPINFO si;
4286 PROCESS_INFORMATION pi;
4287 DWORD ret = 0;
4288
4289 HANDLE g_hChildStd_IN_Rd = NULL;
4290 HANDLE g_hChildStd_IN_Wr = NULL;
4291 HANDLE g_hChildStd_OUT_Rd = NULL;
4292 HANDLE g_hChildStd_OUT_Wr = NULL;
4293
4294 char_u buffer[BUFLEN + 1]; /* reading buffer + size */
4295 DWORD len;
4296
4297 /* buffer used to receive keys */
4298 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4299 int ta_len = 0; /* valid bytes in ta_buf[] */
4300
4301 DWORD i;
4302 int c;
4303 int noread_cnt = 0;
4304 garray_T ga;
4305 int delay = 1;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004306 DWORD buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004307 char *p = NULL;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004308
4309 SECURITY_ATTRIBUTES saAttr;
4310
4311 /* Set the bInheritHandle flag so pipe handles are inherited. */
4312 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4313 saAttr.bInheritHandle = TRUE;
4314 saAttr.lpSecurityDescriptor = NULL;
4315
4316 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
4317 /* Ensure the read handle to the pipe for STDOUT is not inherited. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004318 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004319 /* Create a pipe for the child process's STDIN. */
4320 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
4321 /* Ensure the write handle to the pipe for STDIN is not inherited. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004322 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004323 {
4324 CloseHandle(g_hChildStd_IN_Rd);
4325 CloseHandle(g_hChildStd_IN_Wr);
4326 CloseHandle(g_hChildStd_OUT_Rd);
4327 CloseHandle(g_hChildStd_OUT_Wr);
4328 MSG_PUTS(_("\nCannot create pipes\n"));
4329 }
4330
4331 si.cb = sizeof(si);
4332 si.lpReserved = NULL;
4333 si.lpDesktop = NULL;
4334 si.lpTitle = NULL;
4335 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
4336
4337 /* set-up our file redirection */
4338 si.hStdError = g_hChildStd_OUT_Wr;
4339 si.hStdOutput = g_hChildStd_OUT_Wr;
4340 si.hStdInput = g_hChildStd_IN_Rd;
4341 si.wShowWindow = SW_HIDE;
4342 si.cbReserved2 = 0;
4343 si.lpReserved2 = NULL;
4344
4345 if (options & SHELL_READ)
4346 ga_init2(&ga, 1, BUFLEN);
4347
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004348 if (cmd != NULL)
4349 {
4350 p = (char *)vim_strsave((char_u *)cmd);
4351 if (p != NULL)
4352 unescape_shellxquote((char_u *)p, p_sxe);
4353 else
4354 p = cmd;
4355 }
4356
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004357 /* Now, run the command.
4358 * About "Inherit handles" being TRUE: this command can be litigious,
4359 * handle inheritance was deactivated for pending temp file, but, if we
4360 * deactivate it, the pipes don't work for some reason. */
4361 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE, &si, &pi);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004362
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004363 if (p != cmd)
4364 vim_free(p);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004365
4366 /* Close our unused side of the pipes */
4367 CloseHandle(g_hChildStd_IN_Rd);
4368 CloseHandle(g_hChildStd_OUT_Wr);
4369
4370 if (options & SHELL_WRITE)
4371 {
Bram Moolenaar86f2cd52016-08-02 21:55:17 +02004372 HANDLE thread = (HANDLE)
4373 _beginthreadex(NULL, /* security attributes */
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004374 0, /* default stack size */
4375 sub_process_writer, /* function to be executed */
4376 g_hChildStd_IN_Wr, /* parameter */
4377 0, /* creation flag, start immediately */
4378 NULL); /* we don't care about thread id */
4379 CloseHandle(thread);
4380 g_hChildStd_IN_Wr = NULL;
4381 }
4382
4383 /* Keep updating the window while waiting for the shell to finish. */
4384 for (;;)
4385 {
4386 MSG msg;
4387
Bram Moolenaar175d0702013-12-11 18:36:33 +01004388 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004389 {
4390 TranslateMessage(&msg);
Bram Moolenaar175d0702013-12-11 18:36:33 +01004391 pDispatchMessage(&msg);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004392 }
4393
4394 /* write pipe information in the window */
4395 if ((options & (SHELL_READ|SHELL_WRITE))
4396# ifdef FEAT_GUI
4397 || gui.in_use
4398# endif
4399 )
4400 {
4401 len = 0;
4402 if (!(options & SHELL_EXPAND)
4403 && ((options &
4404 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4405 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4406# ifdef FEAT_GUI
4407 || gui.in_use
4408# endif
4409 )
4410 && (ta_len > 0 || noread_cnt > 4))
4411 {
4412 if (ta_len == 0)
4413 {
4414 /* Get extra characters when we don't have any. Reset the
4415 * counter and timer. */
4416 noread_cnt = 0;
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004417 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4418 }
4419 if (ta_len > 0 || len > 0)
4420 {
4421 /*
4422 * For pipes: Check for CTRL-C: send interrupt signal to
4423 * child. Check for CTRL-D: EOF, close pipe to child.
4424 */
4425 if (len == 1 && cmd != NULL)
4426 {
4427 if (ta_buf[ta_len] == Ctrl_C)
4428 {
4429 /* Learn what exit code is expected, for
4430 * now put 9 as SIGKILL */
4431 TerminateProcess(pi.hProcess, 9);
4432 }
4433 if (ta_buf[ta_len] == Ctrl_D)
4434 {
4435 CloseHandle(g_hChildStd_IN_Wr);
4436 g_hChildStd_IN_Wr = NULL;
4437 }
4438 }
4439
4440 /* replace K_BS by <BS> and K_DEL by <DEL> */
4441 for (i = ta_len; i < ta_len + len; ++i)
4442 {
4443 if (ta_buf[i] == CSI && len - i > 2)
4444 {
4445 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4446 if (c == K_DEL || c == K_KDEL || c == K_BS)
4447 {
4448 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4449 (size_t)(len - i - 2));
4450 if (c == K_DEL || c == K_KDEL)
4451 ta_buf[i] = DEL;
4452 else
4453 ta_buf[i] = Ctrl_H;
4454 len -= 2;
4455 }
4456 }
4457 else if (ta_buf[i] == '\r')
4458 ta_buf[i] = '\n';
4459# ifdef FEAT_MBYTE
4460 if (has_mbyte)
4461 i += (*mb_ptr2len_len)(ta_buf + i,
4462 ta_len + len - i) - 1;
4463# endif
4464 }
4465
4466 /*
4467 * For pipes: echo the typed characters. For a pty this
4468 * does not seem to work.
4469 */
4470 for (i = ta_len; i < ta_len + len; ++i)
4471 {
4472 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4473 msg_putchar(ta_buf[i]);
4474# ifdef FEAT_MBYTE
4475 else if (has_mbyte)
4476 {
4477 int l = (*mb_ptr2len)(ta_buf + i);
4478
4479 msg_outtrans_len(ta_buf + i, l);
4480 i += l - 1;
4481 }
4482# endif
4483 else
4484 msg_outtrans_len(ta_buf + i, 1);
4485 }
4486 windgoto(msg_row, msg_col);
4487 out_flush();
4488
4489 ta_len += len;
4490
4491 /*
4492 * Write the characters to the child, unless EOF has been
4493 * typed for pipes. Write one character at a time, to
4494 * avoid losing too much typeahead. When writing buffer
4495 * lines, drop the typed characters (only check for
4496 * CTRL-C).
4497 */
4498 if (options & SHELL_WRITE)
4499 ta_len = 0;
4500 else if (g_hChildStd_IN_Wr != NULL)
4501 {
4502 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
4503 1, &len, NULL);
4504 // if we are typing in, we want to keep things reactive
4505 delay = 1;
4506 if (len > 0)
4507 {
4508 ta_len -= len;
4509 mch_memmove(ta_buf, ta_buf + len, ta_len);
4510 }
4511 }
4512 }
4513 }
4514 }
4515
4516 if (ta_len)
4517 ui_inchar_undo(ta_buf, ta_len);
4518
4519 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
4520 {
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004521 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004522 break;
4523 }
4524
4525 ++noread_cnt;
Bram Moolenaar2eba1822011-08-27 15:10:04 +02004526 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004527
4528 /* We start waiting for a very short time and then increase it, so
4529 * that we respond quickly when the process is quick, and don't
4530 * consume too much overhead when it's slow. */
4531 if (delay < 50)
4532 delay += 10;
4533 }
4534
4535 /* Close the pipe */
4536 CloseHandle(g_hChildStd_OUT_Rd);
4537 if (g_hChildStd_IN_Wr != NULL)
4538 CloseHandle(g_hChildStd_IN_Wr);
4539
4540 WaitForSingleObject(pi.hProcess, INFINITE);
4541
4542 /* Get the command exit code */
4543 GetExitCodeProcess(pi.hProcess, &ret);
4544
4545 if (options & SHELL_READ)
4546 {
4547 if (ga.ga_len > 0)
4548 {
4549 append_ga_line(&ga);
4550 /* remember that the NL was missing */
4551 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
4552 }
4553 else
4554 curbuf->b_no_eol_lnum = 0;
4555 ga_clear(&ga);
4556 }
4557
4558 /* Close the handles to the subprocess, so that it goes away */
4559 CloseHandle(pi.hThread);
4560 CloseHandle(pi.hProcess);
4561
4562 return ret;
4563}
4564
4565 static int
4566mch_system(char *cmd, int options)
4567{
4568 /* if we can pipe and the shelltemp option is off */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004569 if (!p_stmp)
Bram Moolenaar4b9669f2011-07-07 16:20:52 +02004570 return mch_system_piped(cmd, options);
4571 else
4572 return mch_system_classic(cmd, options);
4573}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574#else
4575
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004576# ifdef FEAT_MBYTE
4577 static int
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01004578mch_system(char *cmd, int options)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004579{
4580 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4581 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004582 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004583 if (wcmd != NULL)
4584 {
4585 int ret = _wsystem(wcmd);
4586 vim_free(wcmd);
4587 return ret;
4588 }
4589 }
4590 return system(cmd);
4591}
4592# else
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01004593# define mch_system(c, o) system(c)
Bram Moolenaar910cffb2013-12-11 17:58:35 +01004594# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595
4596#endif
4597
4598/*
4599 * Either execute a command by calling the shell or start a new shell
4600 */
4601 int
4602mch_call_shell(
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004603 char_u *cmd,
4604 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605{
4606 int x = 0;
4607 int tmode = cur_tmode;
4608#ifdef FEAT_TITLE
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004609 char szShellTitle[512];
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004610# ifdef FEAT_MBYTE
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004611 int did_set_title = FALSE;
4612
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004613 /* Change the title to reflect that we are in a subshell. */
4614 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4615 {
4616 WCHAR szShellTitle[512];
4617
4618 if (GetConsoleTitleW(szShellTitle,
4619 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0)
4620 {
4621 if (cmd == NULL)
4622 wcscat(szShellTitle, L" :sh");
4623 else
4624 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004625 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004626
4627 if (wn != NULL)
4628 {
4629 wcscat(szShellTitle, L" - !");
4630 if ((wcslen(szShellTitle) + wcslen(wn) <
4631 sizeof(szShellTitle)/sizeof(WCHAR)))
4632 wcscat(szShellTitle, wn);
4633 SetConsoleTitleW(szShellTitle);
4634 vim_free(wn);
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004635 did_set_title = TRUE;
Bram Moolenaar1df52d72014-10-15 22:50:10 +02004636 }
4637 }
4638 }
4639 }
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004640 if (!did_set_title)
4641# endif
4642 /* Change the title to reflect that we are in a subshell. */
4643 if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 {
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004645 if (cmd == NULL)
4646 strcat(szShellTitle, " :sh");
4647 else
4648 {
4649 strcat(szShellTitle, " - !");
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004650 if ((strlen(szShellTitle) + strlen((char *)cmd)
4651 < sizeof(szShellTitle)))
4652 strcat(szShellTitle, (char *)cmd);
Bram Moolenaar799d6ab2014-10-16 16:16:37 +02004653 }
4654 SetConsoleTitle(szShellTitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656#endif
4657
4658 out_flush();
4659
4660#ifdef MCH_WRITE_DUMP
4661 if (fdDump)
4662 {
4663 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
4664 fflush(fdDump);
4665 }
4666#endif
4667
4668 /*
4669 * Catch all deadly signals while running the external command, because a
4670 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
4671 */
4672 signal(SIGINT, SIG_IGN);
4673#if defined(__GNUC__) && !defined(__MINGW32__)
4674 signal(SIGKILL, SIG_IGN);
4675#else
4676 signal(SIGBREAK, SIG_IGN);
4677#endif
4678 signal(SIGILL, SIG_IGN);
4679 signal(SIGFPE, SIG_IGN);
4680 signal(SIGSEGV, SIG_IGN);
4681 signal(SIGTERM, SIG_IGN);
4682 signal(SIGABRT, SIG_IGN);
4683
4684 if (options & SHELL_COOKED)
4685 settmode(TMODE_COOK); /* set to normal mode */
4686
4687 if (cmd == NULL)
4688 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004689 x = mch_system((char *)p_sh, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 }
4691 else
4692 {
4693 /* we use "command" or "cmd" to start the shell; slow but easy */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004694 char_u *newcmd = NULL;
4695 char_u *cmdbase = cmd;
4696 long_u cmdlen;
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004697
4698 /* Skip a leading ", ( and "(. */
4699 if (*cmdbase == '"' )
4700 ++cmdbase;
4701 if (*cmdbase == '(')
4702 ++cmdbase;
4703
4704 if ((STRNICMP(cmdbase, "start", 5) == 0) && vim_iswhite(cmdbase[5]))
4705 {
4706 STARTUPINFO si;
4707 PROCESS_INFORMATION pi;
4708 DWORD flags = CREATE_NEW_CONSOLE;
4709 char_u *p;
4710
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004711 ZeroMemory(&si, sizeof(si));
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004712 si.cb = sizeof(si);
4713 si.lpReserved = NULL;
4714 si.lpDesktop = NULL;
4715 si.lpTitle = NULL;
4716 si.dwFlags = 0;
4717 si.cbReserved2 = 0;
4718 si.lpReserved2 = NULL;
4719
4720 cmdbase = skipwhite(cmdbase + 5);
4721 if ((STRNICMP(cmdbase, "/min", 4) == 0)
4722 && vim_iswhite(cmdbase[4]))
4723 {
4724 cmdbase = skipwhite(cmdbase + 4);
4725 si.dwFlags = STARTF_USESHOWWINDOW;
4726 si.wShowWindow = SW_SHOWMINNOACTIVE;
4727 }
4728 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
4729 && vim_iswhite(cmdbase[2]))
4730 {
4731 cmdbase = skipwhite(cmdbase + 2);
4732 flags = CREATE_NO_WINDOW;
4733 si.dwFlags = STARTF_USESTDHANDLES;
4734 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004735 GENERIC_READ, // Access flags
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004736 0, // Share flags
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004737 NULL, // Security att.
4738 OPEN_EXISTING, // Open flags
4739 FILE_ATTRIBUTE_NORMAL, // File att.
4740 NULL); // Temp file
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004741 si.hStdOutput = si.hStdInput;
4742 si.hStdError = si.hStdInput;
4743 }
4744
4745 /* Remove a trailing ", ) and )" if they have a match
4746 * at the start of the command. */
4747 if (cmdbase > cmd)
4748 {
4749 p = cmdbase + STRLEN(cmdbase);
4750 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
4751 *--p = NUL;
4752 if (p > cmdbase && p[-1] == ')'
4753 && (*cmd =='(' || cmd[1] == '('))
4754 *--p = NUL;
4755 }
4756
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004757 newcmd = cmdbase;
4758 unescape_shellxquote(cmdbase, p_sxe);
4759
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004760 /*
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004761 * If creating new console, arguments are passed to the
4762 * 'cmd.exe' as-is. If it's not, arguments are not treated
4763 * correctly for current 'cmd.exe'. So unescape characters in
4764 * shellxescape except '|' for avoiding to be treated as
4765 * argument to them. Pass the arguments to sub-shell.
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004766 */
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004767 if (flags != CREATE_NEW_CONSOLE)
4768 {
4769 char_u *subcmd;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004770 char_u *cmd_shell = mch_getenv("COMSPEC");
4771
4772 if (cmd_shell == NULL || *cmd_shell == NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004773 cmd_shell = (char_u *)default_shell();
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004774
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004775 subcmd = vim_strsave_escaped_ext(cmdbase,
4776 (char_u *)"|", '^', FALSE);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004777 if (subcmd != NULL)
4778 {
4779 /* make "cmd.exe /c arguments" */
4780 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004781 newcmd = lalloc(cmdlen, TRUE);
4782 if (newcmd != NULL)
4783 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004784 cmd_shell, subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004785 else
4786 newcmd = cmdbase;
Bram Moolenaaree7d1002012-02-22 15:34:08 +01004787 vim_free(subcmd);
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004788 }
4789 }
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004790
4791 /*
4792 * Now, start the command as a process, so that it doesn't
4793 * inherit our handles which causes unpleasant dangling swap
4794 * files if we exit before the spawned process
4795 */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004796 if (vim_create_process((char *)newcmd, FALSE, flags, &si, &pi))
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004797 x = 0;
4798 else
4799 {
4800 x = -1;
4801#ifdef FEAT_GUI_W32
4802 EMSG(_("E371: Command not found"));
4803#endif
4804 }
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004805
4806 if (newcmd != cmdbase)
4807 vim_free(newcmd);
4808
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004809 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004810 {
Bram Moolenaarfcc3f462014-01-24 19:55:37 +01004811 /* Close the handle to \\.\NUL created above. */
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004812 CloseHandle(si.hStdInput);
4813 }
4814 /* Close the handles to the subprocess, so that it goes away */
4815 CloseHandle(pi.hThread);
4816 CloseHandle(pi.hProcess);
4817 }
4818 else
4819 {
Bram Moolenaarfb7df7b2012-02-22 13:07:05 +01004820 cmdlen = (
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821#ifdef FEAT_GUI_W32
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004822 (!p_stmp ? 0 : STRLEN(vimrun_path)) +
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823#endif
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004824 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10);
4825
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004826 newcmd = lalloc(cmdlen, TRUE);
4827 if (newcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 {
4829#if defined(FEAT_GUI_W32)
4830 if (need_vimrun_warning)
4831 {
Bram Moolenaar63e43442016-11-19 17:28:44 +01004832 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
4833 "External commands will not pause after completion.\n"
4834 "See :help win32-vimrun for more information.");
4835 char *title = _("Vim Warning");
4836# ifdef FEAT_MBYTE
4837 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4838 {
4839 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
4840 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
4841
4842 if (wmsg != NULL && wtitle != NULL)
4843 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
4844 vim_free(wmsg);
4845 vim_free(wtitle);
4846 }
4847 else
4848# endif
4849 MessageBox(NULL, msg, title, MB_ICONWARNING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 need_vimrun_warning = FALSE;
4851 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004852 if (!s_dont_use_vimrun && p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 /* Use vimrun to execute the command. It opens a console
4854 * window, which can be closed without killing Vim. */
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004855 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 vimrun_path,
4857 (msg_silent != 0 || (options & SHELL_DOOUT))
4858 ? "-s " : "",
4859 p_sh, p_shcf, cmd);
4860 else
4861#endif
Bram Moolenaarcc448b32010-07-14 16:52:17 +02004862 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
Bram Moolenaar0fde2902008-03-16 13:54:13 +00004863 p_sh, p_shcf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 x = mch_system((char *)newcmd, options);
Bram Moolenaar6b707b42012-02-21 21:22:44 +01004865 vim_free(newcmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 }
4868 }
4869
4870 if (tmode == TMODE_RAW)
4871 settmode(TMODE_RAW); /* set to raw mode */
4872
4873 /* Print the return value, unless "vimrun" was used. */
4874 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
4875#if defined(FEAT_GUI_W32)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004876 && ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877#endif
4878 )
4879 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01004880 smsg((char_u *)_("shell returned %d"), x);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 msg_putchar('\n');
4882 }
4883#ifdef FEAT_TITLE
4884 resettitle();
4885#endif
4886
4887 signal(SIGINT, SIG_DFL);
4888#if defined(__GNUC__) && !defined(__MINGW32__)
4889 signal(SIGKILL, SIG_DFL);
4890#else
4891 signal(SIGBREAK, SIG_DFL);
4892#endif
4893 signal(SIGILL, SIG_DFL);
4894 signal(SIGFPE, SIG_DFL);
4895 signal(SIGSEGV, SIG_DFL);
4896 signal(SIGTERM, SIG_DFL);
4897 signal(SIGABRT, SIG_DFL);
4898
4899 return x;
4900}
4901
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004902#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004903 static HANDLE
4904job_io_file_open(
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004905 char_u *fname,
4906 DWORD dwDesiredAccess,
4907 DWORD dwShareMode,
4908 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
4909 DWORD dwCreationDisposition,
4910 DWORD dwFlagsAndAttributes)
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004911{
4912 HANDLE h;
4913# ifdef FEAT_MBYTE
4914 WCHAR *wn = NULL;
4915 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
4916 {
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004917 wn = enc_to_utf16(fname, NULL);
4918 if (wn != NULL)
4919 {
4920 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
4921 lpSecurityAttributes, dwCreationDisposition,
4922 dwFlagsAndAttributes, NULL);
4923 vim_free(wn);
4924 }
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004925 }
4926 if (wn == NULL)
4927# endif
Bram Moolenaar972c3b82017-01-12 21:44:49 +01004928 h = CreateFile((LPCSTR)fname, dwDesiredAccess, dwShareMode,
4929 lpSecurityAttributes, dwCreationDisposition,
4930 dwFlagsAndAttributes, NULL);
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004931 return h;
4932}
4933
Bram Moolenaar942d6b22016-02-07 19:57:16 +01004934 void
Bram Moolenaar9a6e33a2016-02-16 19:25:12 +01004935mch_start_job(char *cmd, job_T *job, jobopt_T *options)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01004936{
4937 STARTUPINFO si;
4938 PROCESS_INFORMATION pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02004939 HANDLE jo;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01004940 SECURITY_ATTRIBUTES saAttr;
4941 channel_T *channel = NULL;
Bram Moolenaard8070362016-02-15 21:56:54 +01004942 HANDLE ifd[2];
4943 HANDLE ofd[2];
4944 HANDLE efd[2];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01004945
4946 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
4947 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
4948 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
4949 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
4950 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
4951 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
4952 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
4953
4954 if (use_out_for_err && use_null_for_out)
4955 use_null_for_err = TRUE;
Bram Moolenaard8070362016-02-15 21:56:54 +01004956
4957 ifd[0] = INVALID_HANDLE_VALUE;
4958 ifd[1] = INVALID_HANDLE_VALUE;
4959 ofd[0] = INVALID_HANDLE_VALUE;
4960 ofd[1] = INVALID_HANDLE_VALUE;
4961 efd[0] = INVALID_HANDLE_VALUE;
4962 efd[1] = INVALID_HANDLE_VALUE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01004963
Bram Moolenaar14207f42016-10-27 21:13:10 +02004964 jo = CreateJobObject(NULL, NULL);
4965 if (jo == NULL)
4966 {
4967 job->jv_status = JOB_FAILED;
4968 goto failed;
4969 }
4970
Bram Moolenaar76467df2016-02-12 19:30:26 +01004971 ZeroMemory(&pi, sizeof(pi));
Bram Moolenaar942d6b22016-02-07 19:57:16 +01004972 ZeroMemory(&si, sizeof(si));
4973 si.cb = sizeof(si);
Bram Moolenaard8070362016-02-15 21:56:54 +01004974 si.dwFlags |= STARTF_USESHOWWINDOW;
Bram Moolenaar76467df2016-02-12 19:30:26 +01004975 si.wShowWindow = SW_HIDE;
Bram Moolenaar942d6b22016-02-07 19:57:16 +01004976
Bram Moolenaard8070362016-02-15 21:56:54 +01004977 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
4978 saAttr.bInheritHandle = TRUE;
4979 saAttr.lpSecurityDescriptor = NULL;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01004980
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01004981 if (use_file_for_in)
4982 {
4983 char_u *fname = options->jo_io_name[PART_IN];
4984
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01004985 ifd[0] = job_io_file_open(fname, GENERIC_READ,
4986 FILE_SHARE_READ | FILE_SHARE_WRITE,
4987 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
4988 if (ifd[0] == INVALID_HANDLE_VALUE)
Bram Moolenaar94d01912016-03-08 13:48:51 +01004989 {
4990 EMSG2(_(e_notopen), fname);
4991 goto failed;
4992 }
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01004993 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01004994 else if (!use_null_for_in &&
4995 (!CreatePipe(&ifd[0], &ifd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02004996 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01004997 goto failed;
4998
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01004999 if (use_file_for_out)
5000 {
5001 char_u *fname = options->jo_io_name[PART_OUT];
5002
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005003 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
5004 FILE_SHARE_READ | FILE_SHARE_WRITE,
5005 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5006 if (ofd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005007 {
5008 EMSG2(_(e_notopen), fname);
5009 goto failed;
5010 }
5011 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005012 else if (!use_null_for_out &&
5013 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005014 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005015 goto failed;
5016
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005017 if (use_file_for_err)
5018 {
5019 char_u *fname = options->jo_io_name[PART_ERR];
5020
Bram Moolenaar7bffaa92016-03-10 21:46:03 +01005021 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
5022 FILE_SHARE_READ | FILE_SHARE_WRITE,
5023 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
5024 if (efd[1] == INVALID_HANDLE_VALUE)
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005025 {
5026 EMSG2(_(e_notopen), fname);
5027 goto failed;
5028 }
5029 }
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005030 else if (!use_out_for_err && !use_null_for_err &&
5031 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005032 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
Bram Moolenaard8070362016-02-15 21:56:54 +01005033 goto failed;
Bram Moolenaar13d6fb12016-03-08 18:40:52 +01005034
Bram Moolenaard8070362016-02-15 21:56:54 +01005035 si.dwFlags |= STARTF_USESTDHANDLES;
5036 si.hStdInput = ifd[0];
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005037 si.hStdOutput = ofd[1];
5038 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
5039
5040 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5041 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005042 if (options->jo_set & JO_CHANNEL)
5043 {
5044 channel = options->jo_channel;
5045 if (channel != NULL)
5046 ++channel->ch_refcount;
5047 }
5048 else
5049 channel = add_channel();
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005050 if (channel == NULL)
5051 goto failed;
5052 }
Bram Moolenaard8070362016-02-15 21:56:54 +01005053
5054 if (!vim_create_process(cmd, TRUE,
Bram Moolenaar14207f42016-10-27 21:13:10 +02005055 CREATE_SUSPENDED |
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005056 CREATE_DEFAULT_ERROR_MODE |
5057 CREATE_NEW_PROCESS_GROUP |
Bram Moolenaar76467df2016-02-12 19:30:26 +01005058 CREATE_NEW_CONSOLE,
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005059 &si, &pi))
Bram Moolenaar76467df2016-02-12 19:30:26 +01005060 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005061 CloseHandle(jo);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005062 job->jv_status = JOB_FAILED;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005063 goto failed;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005064 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005065
Bram Moolenaar14207f42016-10-27 21:13:10 +02005066 if (!AssignProcessToJobObject(jo, pi.hProcess))
5067 {
5068 /* if failing, switch the way to terminate
5069 * process with TerminateProcess. */
5070 CloseHandle(jo);
5071 jo = NULL;
5072 }
5073 ResumeThread(pi.hThread);
Bram Moolenaar75578a32016-03-10 16:33:31 +01005074 CloseHandle(pi.hThread);
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005075 job->jv_proc_info = pi;
Bram Moolenaar14207f42016-10-27 21:13:10 +02005076 job->jv_job_object = jo;
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005077 job->jv_status = JOB_STARTED;
5078
Bram Moolenaar641ad6c2016-09-01 18:32:11 +02005079 CloseHandle(ifd[0]);
5080 CloseHandle(ofd[1]);
5081 if (!use_out_for_err && !use_null_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005082 CloseHandle(efd[1]);
Bram Moolenaard8070362016-02-15 21:56:54 +01005083
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005084 job->jv_channel = channel;
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005085 if (channel != NULL)
5086 {
5087 channel_set_pipes(channel,
5088 use_file_for_in || use_null_for_in
5089 ? INVALID_FD : (sock_T)ifd[1],
5090 use_file_for_out || use_null_for_out
5091 ? INVALID_FD : (sock_T)ofd[0],
5092 use_out_for_err || use_file_for_err || use_null_for_err
5093 ? INVALID_FD : (sock_T)efd[0]);
5094 channel_set_job(channel, job, options);
Bram Moolenaard5d3d302016-03-09 20:54:51 +01005095 }
Bram Moolenaar7b3ca762016-02-14 19:13:43 +01005096 return;
5097
5098failed:
Bram Moolenaard8070362016-02-15 21:56:54 +01005099 CloseHandle(ifd[0]);
5100 CloseHandle(ofd[0]);
5101 CloseHandle(efd[0]);
5102 CloseHandle(ifd[1]);
5103 CloseHandle(ofd[1]);
5104 CloseHandle(efd[1]);
Bram Moolenaarde279892016-03-11 22:19:44 +01005105 channel_unref(channel);
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005106}
5107
5108 char *
5109mch_job_status(job_T *job)
5110{
5111 DWORD dwExitCode = 0;
5112
Bram Moolenaar76467df2016-02-12 19:30:26 +01005113 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
5114 || dwExitCode != STILL_ACTIVE)
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005115 {
Bram Moolenaareab089d2016-02-21 19:32:02 +01005116 job->jv_exitval = (int)dwExitCode;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005117 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005118 {
5119 ch_log(job->jv_channel, "Job ended");
5120 job->jv_status = JOB_ENDED;
5121 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005122 return "dead";
5123 }
5124 return "run";
5125}
5126
Bram Moolenaar97792de2016-10-15 18:36:49 +02005127 job_T *
5128mch_detect_ended_job(job_T *job_list)
5129{
5130 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
5131 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
5132 job_T *job = job_list;
5133
5134 while (job != NULL)
5135 {
5136 DWORD n;
5137 DWORD result;
5138
5139 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
5140 && job != NULL; job = job->jv_next)
5141 {
5142 if (job->jv_status == JOB_STARTED)
5143 {
5144 jobHandles[n] = job->jv_proc_info.hProcess;
5145 jobArray[n] = job;
5146 ++n;
5147 }
5148 }
5149 if (n == 0)
5150 continue;
5151 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
5152 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
5153 {
5154 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
5155
5156 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
5157 return wait_job;
5158 }
5159 }
5160 return NULL;
5161}
5162
Bram Moolenaarfb630902016-10-29 14:55:00 +02005163 static BOOL
5164terminate_all(HANDLE process, int code)
5165{
5166 PROCESSENTRY32 pe;
5167 HANDLE h = INVALID_HANDLE_VALUE;
5168 DWORD pid = GetProcessId(process);
5169
5170 if (pid != 0)
5171 {
5172 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5173 if (h != INVALID_HANDLE_VALUE)
5174 {
5175 pe.dwSize = sizeof(PROCESSENTRY32);
5176 if (!Process32First(h, &pe))
5177 goto theend;
5178
5179 do
5180 {
5181 if (pe.th32ParentProcessID == pid)
5182 {
5183 HANDLE ph = OpenProcess(
5184 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
5185 if (ph != NULL)
5186 {
5187 terminate_all(ph, code);
5188 CloseHandle(ph);
5189 }
5190 }
5191 } while (Process32Next(h, &pe));
5192
5193 CloseHandle(h);
5194 }
5195 }
5196
5197theend:
5198 return TerminateProcess(process, code);
5199}
5200
5201/*
5202 * Send a (deadly) signal to "job".
5203 * Return FAIL if it didn't work.
5204 */
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005205 int
5206mch_stop_job(job_T *job, char_u *how)
5207{
Bram Moolenaar923d9262016-02-25 20:56:01 +01005208 int ret;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005209
Bram Moolenaar923d9262016-02-25 20:56:01 +01005210 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
Bram Moolenaar76467df2016-02-12 19:30:26 +01005211 {
Bram Moolenaarfb630902016-10-29 14:55:00 +02005212 /* deadly signal */
Bram Moolenaar14207f42016-10-27 21:13:10 +02005213 if (job->jv_job_object != NULL)
5214 return TerminateJobObject(job->jv_job_object, 0) ? OK : FAIL;
Bram Moolenaarfb630902016-10-29 14:55:00 +02005215 return terminate_all(job->jv_proc_info.hProcess, 0) ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005216 }
5217
5218 if (!AttachConsole(job->jv_proc_info.dwProcessId))
5219 return FAIL;
5220 ret = GenerateConsoleCtrlEvent(
Bram Moolenaar923d9262016-02-25 20:56:01 +01005221 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
5222 job->jv_proc_info.dwProcessId)
5223 ? OK : FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005224 FreeConsole();
5225 return ret;
5226}
5227
5228/*
5229 * Clear the data related to "job".
5230 */
5231 void
5232mch_clear_job(job_T *job)
5233{
5234 if (job->jv_status != JOB_FAILED)
5235 {
Bram Moolenaar14207f42016-10-27 21:13:10 +02005236 if (job->jv_job_object != NULL)
5237 CloseHandle(job->jv_job_object);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005238 CloseHandle(job->jv_proc_info.hProcess);
5239 }
Bram Moolenaar942d6b22016-02-07 19:57:16 +01005240}
5241#endif
5242
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243
5244#ifndef FEAT_GUI_W32
5245
5246/*
5247 * Start termcap mode
5248 */
5249 static void
5250termcap_mode_start(void)
5251{
5252 DWORD cmodein;
5253
5254 if (g_fTermcapMode)
5255 return;
5256
5257 SaveConsoleBuffer(&g_cbNonTermcap);
5258
5259 if (g_cbTermcap.IsValid)
5260 {
5261 /*
5262 * We've been in termcap mode before. Restore certain screen
5263 * characteristics, including the buffer size and the window
5264 * size. Since we will be redrawing the screen, we don't need
5265 * to restore the actual contents of the buffer.
5266 */
5267 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
5268 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
5269 Rows = g_cbTermcap.Info.dwSize.Y;
5270 Columns = g_cbTermcap.Info.dwSize.X;
5271 }
5272 else
5273 {
5274 /*
5275 * This is our first time entering termcap mode. Clear the console
5276 * screen buffer, and resize the buffer to match the current window
5277 * size. We will use this as the size of our editing environment.
5278 */
5279 ClearConsoleBuffer(g_attrCurrent);
5280 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
5281 }
5282
5283#ifdef FEAT_TITLE
5284 resettitle();
5285#endif
5286
5287 GetConsoleMode(g_hConIn, &cmodein);
5288#ifdef FEAT_MOUSE
5289 if (g_fMouseActive)
5290 cmodein |= ENABLE_MOUSE_INPUT;
5291 else
5292 cmodein &= ~ENABLE_MOUSE_INPUT;
5293#endif
5294 cmodein |= ENABLE_WINDOW_INPUT;
5295 SetConsoleMode(g_hConIn, cmodein);
5296
5297 redraw_later_clear();
5298 g_fTermcapMode = TRUE;
5299}
5300
5301
5302/*
5303 * End termcap mode
5304 */
5305 static void
5306termcap_mode_end(void)
5307{
5308 DWORD cmodein;
5309 ConsoleBuffer *cb;
5310 COORD coord;
5311 DWORD dwDummy;
5312
5313 if (!g_fTermcapMode)
5314 return;
5315
5316 SaveConsoleBuffer(&g_cbTermcap);
5317
5318 GetConsoleMode(g_hConIn, &cmodein);
5319 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
5320 SetConsoleMode(g_hConIn, cmodein);
5321
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005322#ifdef FEAT_RESTORE_ORIG_SCREEN
5323 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
5324#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325 cb = &g_cbNonTermcap;
Bram Moolenaar4c0aac52015-10-30 16:46:55 +01005326#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 RestoreConsoleBuffer(cb, p_rs);
5328 SetConsoleCursorInfo(g_hConOut, &g_cci);
5329
5330 if (p_rs || exiting)
5331 {
5332 /*
5333 * Clear anything that happens to be on the current line.
5334 */
5335 coord.X = 0;
5336 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
5337 FillConsoleOutputCharacter(g_hConOut, ' ',
5338 cb->Info.dwSize.X, coord, &dwDummy);
5339 /*
5340 * The following is just for aesthetics. If we are exiting without
5341 * restoring the screen, then we want to have a prompt string
5342 * appear at the bottom line. However, the command interpreter
5343 * seems to always advance the cursor one line before displaying
5344 * the prompt string, which causes the screen to scroll. To
5345 * counter this, move the cursor up one line before exiting.
5346 */
5347 if (exiting && !p_rs)
5348 coord.Y--;
5349 /*
5350 * Position the cursor at the leftmost column of the desired row.
5351 */
5352 SetConsoleCursorPosition(g_hConOut, coord);
5353 }
5354
5355 g_fTermcapMode = FALSE;
5356}
5357#endif /* FEAT_GUI_W32 */
5358
5359
5360#ifdef FEAT_GUI_W32
5361 void
5362mch_write(
Bram Moolenaar1266d672017-02-01 13:43:36 +01005363 char_u *s UNUSED,
5364 int len UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365{
5366 /* never used */
5367}
5368
5369#else
5370
5371/*
5372 * clear `n' chars, starting from `coord'
5373 */
5374 static void
5375clear_chars(
5376 COORD coord,
5377 DWORD n)
5378{
5379 DWORD dwDummy;
5380
5381 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
5382 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy);
5383}
5384
5385
5386/*
5387 * Clear the screen
5388 */
5389 static void
5390clear_screen(void)
5391{
5392 g_coord.X = g_coord.Y = 0;
5393 clear_chars(g_coord, Rows * Columns);
5394}
5395
5396
5397/*
5398 * Clear to end of display
5399 */
5400 static void
5401clear_to_end_of_display(void)
5402{
5403 clear_chars(g_coord, (Rows - g_coord.Y - 1)
5404 * Columns + (Columns - g_coord.X));
5405}
5406
5407
5408/*
5409 * Clear to end of line
5410 */
5411 static void
5412clear_to_end_of_line(void)
5413{
5414 clear_chars(g_coord, Columns - g_coord.X);
5415}
5416
5417
5418/*
5419 * Scroll the scroll region up by `cLines' lines
5420 */
5421 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005422scroll(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423{
5424 COORD oldcoord = g_coord;
5425
5426 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
5427 delete_lines(cLines);
5428
5429 g_coord = oldcoord;
5430}
5431
5432
5433/*
5434 * Set the scroll region
5435 */
5436 static void
5437set_scroll_region(
5438 unsigned left,
5439 unsigned top,
5440 unsigned right,
5441 unsigned bottom)
5442{
5443 if (left >= right
5444 || top >= bottom
5445 || right > (unsigned) Columns - 1
5446 || bottom > (unsigned) Rows - 1)
5447 return;
5448
5449 g_srScrollRegion.Left = left;
5450 g_srScrollRegion.Top = top;
5451 g_srScrollRegion.Right = right;
5452 g_srScrollRegion.Bottom = bottom;
5453}
5454
5455
5456/*
5457 * Insert `cLines' lines at the current cursor position
5458 */
5459 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005460insert_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461{
5462 SMALL_RECT source;
5463 COORD dest;
5464 CHAR_INFO fill;
5465
5466 dest.X = 0;
5467 dest.Y = g_coord.Y + cLines;
5468
5469 source.Left = 0;
5470 source.Top = g_coord.Y;
5471 source.Right = g_srScrollRegion.Right;
5472 source.Bottom = g_srScrollRegion.Bottom - cLines;
5473
5474 fill.Char.AsciiChar = ' ';
5475 fill.Attributes = g_attrCurrent;
5476
5477 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5478
5479 /* Here we have to deal with a win32 console flake: If the scroll
5480 * region looks like abc and we scroll c to a and fill with d we get
5481 * cbd... if we scroll block c one line at a time to a, we get cdd...
5482 * vim expects cdd consistently... So we have to deal with that
5483 * here... (this also occurs scrolling the same way in the other
5484 * direction). */
5485
5486 if (source.Bottom < dest.Y)
5487 {
5488 COORD coord;
5489
5490 coord.X = 0;
5491 coord.Y = source.Bottom;
5492 clear_chars(coord, Columns * (dest.Y - source.Bottom));
5493 }
5494}
5495
5496
5497/*
5498 * Delete `cLines' lines at the current cursor position
5499 */
5500 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005501delete_lines(unsigned cLines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502{
5503 SMALL_RECT source;
5504 COORD dest;
5505 CHAR_INFO fill;
5506 int nb;
5507
5508 dest.X = 0;
5509 dest.Y = g_coord.Y;
5510
5511 source.Left = 0;
5512 source.Top = g_coord.Y + cLines;
5513 source.Right = g_srScrollRegion.Right;
5514 source.Bottom = g_srScrollRegion.Bottom;
5515
5516 fill.Char.AsciiChar = ' ';
5517 fill.Attributes = g_attrCurrent;
5518
5519 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
5520
5521 /* Here we have to deal with a win32 console flake: If the scroll
5522 * region looks like abc and we scroll c to a and fill with d we get
5523 * cbd... if we scroll block c one line at a time to a, we get cdd...
5524 * vim expects cdd consistently... So we have to deal with that
5525 * here... (this also occurs scrolling the same way in the other
5526 * direction). */
5527
5528 nb = dest.Y + (source.Bottom - source.Top) + 1;
5529
5530 if (nb < source.Top)
5531 {
5532 COORD coord;
5533
5534 coord.X = 0;
5535 coord.Y = nb;
5536 clear_chars(coord, Columns * (source.Top - nb));
5537 }
5538}
5539
5540
5541/*
5542 * Set the cursor position
5543 */
5544 static void
5545gotoxy(
5546 unsigned x,
5547 unsigned y)
5548{
5549 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
5550 return;
5551
5552 /* external cursor coords are 1-based; internal are 0-based */
5553 g_coord.X = x - 1;
5554 g_coord.Y = y - 1;
5555 SetConsoleCursorPosition(g_hConOut, g_coord);
5556}
5557
5558
5559/*
5560 * Set the current text attribute = (foreground | background)
5561 * See ../doc/os_win32.txt for the numbers.
5562 */
5563 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005564textattr(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005566 g_attrCurrent = wAttr & 0xff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567
5568 SetConsoleTextAttribute(g_hConOut, wAttr);
5569}
5570
5571
5572 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005573textcolor(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005575 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576
5577 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5578}
5579
5580
5581 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005582textbackground(WORD wAttr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583{
Bram Moolenaar6383b922015-03-24 17:12:19 +01005584 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585
5586 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
5587}
5588
5589
5590/*
5591 * restore the default text attribute (whatever we started with)
5592 */
5593 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005594normvideo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595{
5596 textattr(g_attrDefault);
5597}
5598
5599
5600static WORD g_attrPreStandout = 0;
5601
5602/*
5603 * Make the text standout, by brightening it
5604 */
5605 static void
5606standout(void)
5607{
5608 g_attrPreStandout = g_attrCurrent;
5609 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
5610}
5611
5612
5613/*
5614 * Turn off standout mode
5615 */
5616 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005617standend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618{
5619 if (g_attrPreStandout)
5620 {
5621 textattr(g_attrPreStandout);
5622 g_attrPreStandout = 0;
5623 }
5624}
5625
5626
5627/*
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00005628 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 */
5630 void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005631mch_set_normal_colors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632{
5633 char_u *p;
5634 int n;
5635
5636 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
5637 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
5638 if (T_ME[0] == ESC && T_ME[1] == '|')
5639 {
5640 p = T_ME + 2;
5641 n = getdigits(&p);
5642 if (*p == 'm' && n > 0)
5643 {
5644 cterm_normal_fg_color = (n & 0xf) + 1;
5645 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
5646 }
5647 }
5648}
5649
5650
5651/*
5652 * visual bell: flash the screen
5653 */
5654 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005655visual_bell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656{
5657 COORD coordOrigin = {0, 0};
5658 WORD attrFlash = ~g_attrCurrent & 0xff;
5659
5660 DWORD dwDummy;
5661 LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD));
5662
5663 if (oldattrs == NULL)
5664 return;
5665 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5666 coordOrigin, &dwDummy);
5667 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
5668 coordOrigin, &dwDummy);
5669
5670 Sleep(15); /* wait for 15 msec */
5671 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
5672 coordOrigin, &dwDummy);
5673 vim_free(oldattrs);
5674}
5675
5676
5677/*
5678 * Make the cursor visible or invisible
5679 */
5680 static void
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00005681cursor_visible(BOOL fVisible)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682{
5683 s_cursor_visible = fVisible;
5684#ifdef MCH_CURSOR_SHAPE
5685 mch_update_cursor();
5686#endif
5687}
5688
5689
5690/*
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005691 * write `cbToWrite' bytes in `pchBuf' to the screen
5692 * Returns the number of bytes actually written (at least one).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 */
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005694 static DWORD
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695write_chars(
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005696 char_u *pchBuf,
5697 DWORD cbToWrite)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698{
5699 COORD coord = g_coord;
5700 DWORD written;
5701
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005702#ifdef FEAT_MBYTE
5703 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
5704 {
5705 static WCHAR *unicodebuf = NULL;
5706 static int unibuflen = 0;
5707 int length;
5708 DWORD n, cchwritten, cells;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709
Bram Moolenaarac360bf2015-09-01 20:31:20 +02005710 length = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite, 0, 0);
5711 if (unicodebuf == NULL || length > unibuflen)
5712 {
5713 vim_free(unicodebuf);
5714 unicodebuf = (WCHAR *)lalloc(length * sizeof(WCHAR), FALSE);
5715 unibuflen = length;
5716 }
5717 MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite,
5718 unicodebuf, unibuflen);
5719
5720 cells = mb_string2cells(pchBuf, cbToWrite);
5721 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
5722 coord, &written);
5723 /* When writing fails or didn't write a single character, pretend one
5724 * character was written, otherwise we get stuck. */
5725 if (WriteConsoleOutputCharacterW(g_hConOut, unicodebuf, length,
5726 coord, &cchwritten) == 0
5727 || cchwritten == 0)
5728 cchwritten = 1;
5729
5730 if (cchwritten == length)
5731 {
5732 written = cbToWrite;
5733 g_coord.X += (SHORT)cells;
5734 }
5735 else
5736 {
5737 char_u *p = pchBuf;
5738 for (n = 0; n < cchwritten; n++)
5739 mb_cptr_adv(p);
5740 written = p - pchBuf;
5741 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
5742 }
5743 }
5744 else
5745#endif
5746 {
5747 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cbToWrite,
5748 coord, &written);
5749 /* When writing fails or didn't write a single character, pretend one
5750 * character was written, otherwise we get stuck. */
5751 if (WriteConsoleOutputCharacter(g_hConOut, (LPCSTR)pchBuf, cbToWrite,
5752 coord, &written) == 0
5753 || written == 0)
5754 written = 1;
5755
5756 g_coord.X += (SHORT) written;
5757 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758
5759 while (g_coord.X > g_srScrollRegion.Right)
5760 {
5761 g_coord.X -= (SHORT) Columns;
5762 if (g_coord.Y < g_srScrollRegion.Bottom)
5763 g_coord.Y++;
5764 }
5765
5766 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5767
5768 return written;
5769}
5770
5771
5772/*
5773 * mch_write(): write the output buffer to the screen, translating ESC
5774 * sequences into calls to console output routines.
5775 */
5776 void
5777mch_write(
5778 char_u *s,
5779 int len)
5780{
5781 s[len] = NUL;
5782
5783 if (!term_console)
5784 {
5785 write(1, s, (unsigned)len);
5786 return;
5787 }
5788
5789 /* translate ESC | sequences into faked bios calls */
5790 while (len--)
5791 {
5792 /* optimization: use one single write_chars for runs of text,
5793 * rather than once per character It ain't curses, but it helps. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01005794 DWORD prefix = (DWORD)strcspn((char *)s, "\n\r\b\a\033");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795
5796 if (p_wd)
5797 {
5798 WaitForChar(p_wd);
5799 if (prefix != 0)
5800 prefix = 1;
5801 }
5802
5803 if (prefix != 0)
5804 {
5805 DWORD nWritten;
5806
5807 nWritten = write_chars(s, prefix);
5808#ifdef MCH_WRITE_DUMP
5809 if (fdDump)
5810 {
5811 fputc('>', fdDump);
5812 fwrite(s, sizeof(char_u), nWritten, fdDump);
5813 fputs("<\n", fdDump);
5814 }
5815#endif
5816 len -= (nWritten - 1);
5817 s += nWritten;
5818 }
5819 else if (s[0] == '\n')
5820 {
5821 /* \n, newline: go to the beginning of the next line or scroll */
5822 if (g_coord.Y == g_srScrollRegion.Bottom)
5823 {
5824 scroll(1);
5825 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
5826 }
5827 else
5828 {
5829 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
5830 }
5831#ifdef MCH_WRITE_DUMP
5832 if (fdDump)
5833 fputs("\\n\n", fdDump);
5834#endif
5835 s++;
5836 }
5837 else if (s[0] == '\r')
5838 {
5839 /* \r, carriage return: go to beginning of line */
5840 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
5841#ifdef MCH_WRITE_DUMP
5842 if (fdDump)
5843 fputs("\\r\n", fdDump);
5844#endif
5845 s++;
5846 }
5847 else if (s[0] == '\b')
5848 {
5849 /* \b, backspace: move cursor one position left */
5850 if (g_coord.X > g_srScrollRegion.Left)
5851 g_coord.X--;
5852 else if (g_coord.Y > g_srScrollRegion.Top)
5853 {
5854 g_coord.X = g_srScrollRegion.Right;
5855 g_coord.Y--;
5856 }
5857 gotoxy(g_coord.X + 1, g_coord.Y + 1);
5858#ifdef MCH_WRITE_DUMP
5859 if (fdDump)
5860 fputs("\\b\n", fdDump);
5861#endif
5862 s++;
5863 }
5864 else if (s[0] == '\a')
5865 {
5866 /* \a, bell */
5867 MessageBeep(0xFFFFFFFF);
5868#ifdef MCH_WRITE_DUMP
5869 if (fdDump)
5870 fputs("\\a\n", fdDump);
5871#endif
5872 s++;
5873 }
5874 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
5875 {
5876#ifdef MCH_WRITE_DUMP
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005877 char_u *old_s = s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +00005879 char_u *p;
5880 int arg1 = 0, arg2 = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881
5882 switch (s[2])
5883 {
5884 /* one or two numeric arguments, separated by ';' */
5885
5886 case '0': case '1': case '2': case '3': case '4':
5887 case '5': case '6': case '7': case '8': case '9':
5888 p = s + 2;
5889 arg1 = getdigits(&p); /* no check for length! */
5890 if (p > s + len)
5891 break;
5892
5893 if (*p == ';')
5894 {
5895 ++p;
5896 arg2 = getdigits(&p); /* no check for length! */
5897 if (p > s + len)
5898 break;
5899
5900 if (*p == 'H')
5901 gotoxy(arg2, arg1);
5902 else if (*p == 'r')
5903 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
5904 }
5905 else if (*p == 'A')
5906 {
5907 /* move cursor up arg1 lines in same column */
5908 gotoxy(g_coord.X + 1,
5909 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
5910 }
5911 else if (*p == 'C')
5912 {
5913 /* move cursor right arg1 columns in same line */
5914 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
5915 g_coord.Y + 1);
5916 }
5917 else if (*p == 'H')
5918 {
5919 gotoxy(1, arg1);
5920 }
5921 else if (*p == 'L')
5922 {
5923 insert_lines(arg1);
5924 }
5925 else if (*p == 'm')
5926 {
5927 if (arg1 == 0)
5928 normvideo();
5929 else
5930 textattr((WORD) arg1);
5931 }
5932 else if (*p == 'f')
5933 {
5934 textcolor((WORD) arg1);
5935 }
5936 else if (*p == 'b')
5937 {
5938 textbackground((WORD) arg1);
5939 }
5940 else if (*p == 'M')
5941 {
5942 delete_lines(arg1);
5943 }
5944
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005945 len -= (int)(p - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946 s = p + 1;
5947 break;
5948
5949
5950 /* Three-character escape sequences */
5951
5952 case 'A':
5953 /* move cursor up one line in same column */
5954 gotoxy(g_coord.X + 1,
5955 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
5956 goto got3;
5957
5958 case 'B':
5959 visual_bell();
5960 goto got3;
5961
5962 case 'C':
5963 /* move cursor right one column in same line */
5964 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
5965 g_coord.Y + 1);
5966 goto got3;
5967
5968 case 'E':
5969 termcap_mode_end();
5970 goto got3;
5971
5972 case 'F':
5973 standout();
5974 goto got3;
5975
5976 case 'f':
5977 standend();
5978 goto got3;
5979
5980 case 'H':
5981 gotoxy(1, 1);
5982 goto got3;
5983
5984 case 'j':
5985 clear_to_end_of_display();
5986 goto got3;
5987
5988 case 'J':
5989 clear_screen();
5990 goto got3;
5991
5992 case 'K':
5993 clear_to_end_of_line();
5994 goto got3;
5995
5996 case 'L':
5997 insert_lines(1);
5998 goto got3;
5999
6000 case 'M':
6001 delete_lines(1);
6002 goto got3;
6003
6004 case 'S':
6005 termcap_mode_start();
6006 goto got3;
6007
6008 case 'V':
6009 cursor_visible(TRUE);
6010 goto got3;
6011
6012 case 'v':
6013 cursor_visible(FALSE);
6014 goto got3;
6015
6016 got3:
6017 s += 3;
6018 len -= 2;
6019 }
6020
6021#ifdef MCH_WRITE_DUMP
6022 if (fdDump)
6023 {
6024 fputs("ESC | ", fdDump);
6025 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
6026 fputc('\n', fdDump);
6027 }
6028#endif
6029 }
6030 else
6031 {
6032 /* Write a single character */
6033 DWORD nWritten;
6034
6035 nWritten = write_chars(s, 1);
6036#ifdef MCH_WRITE_DUMP
6037 if (fdDump)
6038 {
6039 fputc('>', fdDump);
6040 fwrite(s, sizeof(char_u), nWritten, fdDump);
6041 fputs("<\n", fdDump);
6042 }
6043#endif
6044
6045 len -= (nWritten - 1);
6046 s += nWritten;
6047 }
6048 }
6049
6050#ifdef MCH_WRITE_DUMP
6051 if (fdDump)
6052 fflush(fdDump);
6053#endif
6054}
6055
6056#endif /* FEAT_GUI_W32 */
6057
6058
6059/*
Bram Moolenaar0e0b3dd2016-03-17 17:58:56 +01006060 * Delay for "msec" milliseconds.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 */
6062 void
6063mch_delay(
6064 long msec,
Bram Moolenaar1266d672017-02-01 13:43:36 +01006065 int ignoreinput UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066{
6067#ifdef FEAT_GUI_W32
6068 Sleep((int)msec); /* never wait for input */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006069#else /* Console */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070 if (ignoreinput)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006071# ifdef FEAT_MZSCHEME
6072 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
6073 {
6074 int towait = p_mzq;
6075
6076 /* if msec is large enough, wait by portions in p_mzq */
6077 while (msec > 0)
6078 {
6079 mzvim_check_threads();
6080 if (msec < towait)
6081 towait = msec;
6082 Sleep(towait);
6083 msec -= towait;
6084 }
6085 }
6086 else
6087# endif
6088 Sleep((int)msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 else
6090 WaitForChar(msec);
6091#endif
6092}
6093
6094
6095/*
Bram Moolenaar203258c2016-01-17 22:15:16 +01006096 * This version of remove is not scared by a readonly (backup) file.
6097 * This can also remove a symbolic link like Unix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006098 * Return 0 for success, -1 for failure.
6099 */
6100 int
6101mch_remove(char_u *name)
6102{
6103#ifdef FEAT_MBYTE
6104 WCHAR *wn = NULL;
6105 int n;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006106#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107
Bram Moolenaar203258c2016-01-17 22:15:16 +01006108 /*
6109 * On Windows, deleting a directory's symbolic link is done by
6110 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
6111 */
6112 if (mch_isdir(name) && mch_is_symbolic_link(name))
6113 return mch_rmdir(name);
6114
Bram Moolenaar12b559e2013-06-12 22:41:37 +02006115 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
6116
6117#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6119 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006120 wn = enc_to_utf16(name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121 if (wn != NULL)
6122 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 n = DeleteFileW(wn) ? 0 : -1;
6124 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006125 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006126 }
6127 }
6128#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006129 return DeleteFile((LPCSTR)name) ? 0 : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006130}
6131
6132
6133/*
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006134 * Check for an "interrupt signal": CTRL-break or CTRL-C.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006135 */
6136 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006137mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138{
6139#ifndef FEAT_GUI_W32 /* never used */
6140 if (g_fCtrlCPressed || g_fCBrkPressed)
6141 {
6142 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
6143 got_int = TRUE;
6144 }
6145#endif
6146}
6147
Bram Moolenaaree273972016-01-02 21:11:51 +01006148/* physical RAM to leave for the OS */
6149#define WINNT_RESERVE_BYTES (256*1024*1024)
Bram Moolenaaree273972016-01-02 21:11:51 +01006150
6151/*
6152 * How much main memory in KiB that can be used by VIM.
6153 */
Bram Moolenaaree273972016-01-02 21:11:51 +01006154 long_u
Bram Moolenaar1266d672017-02-01 13:43:36 +01006155mch_total_mem(int special UNUSED)
Bram Moolenaaree273972016-01-02 21:11:51 +01006156{
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006157 MEMORYSTATUSEX ms;
6158
Bram Moolenaaree273972016-01-02 21:11:51 +01006159 PlatformId();
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006160 /* Need to use GlobalMemoryStatusEx() when there is more memory than
6161 * what fits in 32 bits. But it's not always available. */
6162 ms.dwLength = sizeof(MEMORYSTATUSEX);
6163 GlobalMemoryStatusEx(&ms);
6164 if (ms.ullAvailVirtual < ms.ullTotalPhys)
Bram Moolenaaree273972016-01-02 21:11:51 +01006165 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006166 /* Process address space fits in physical RAM, use all of it. */
6167 return (long_u)(ms.ullAvailVirtual / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006168 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006169 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
Bram Moolenaaree273972016-01-02 21:11:51 +01006170 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006171 /* Catch old NT box or perverse hardware setup. */
6172 return (long_u)((ms.ullTotalPhys / 2) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006173 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006174 /* Use physical RAM less reserve for OS + data. */
6175 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
Bram Moolenaaree273972016-01-02 21:11:51 +01006176}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178#ifdef FEAT_MBYTE
6179/*
6180 * Same code as below, but with wide functions and no comments.
6181 * Return 0 for success, non-zero for failure.
6182 */
6183 int
6184mch_wrename(WCHAR *wold, WCHAR *wnew)
6185{
6186 WCHAR *p;
6187 int i;
6188 WCHAR szTempFile[_MAX_PATH + 1];
6189 WCHAR szNewPath[_MAX_PATH + 1];
6190 HANDLE hf;
6191
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006192 p = wold;
6193 for (i = 0; wold[i] != NUL; ++i)
6194 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
6195 && wold[i + 1] != 0)
6196 p = wold + i + 1;
6197 if ((int)(wold + i - p) < 8 || p[6] != '~')
6198 return (MoveFileW(wold, wnew) == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199
6200 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
6201 return -1;
6202 *p = NUL;
6203
6204 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
6205 return -2;
6206
6207 if (!DeleteFileW(szTempFile))
6208 return -3;
6209
6210 if (!MoveFileW(wold, szTempFile))
6211 return -4;
6212
6213 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
6214 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6215 return -5;
6216 if (!CloseHandle(hf))
6217 return -6;
6218
6219 if (!MoveFileW(szTempFile, wnew))
6220 {
6221 (void)MoveFileW(szTempFile, wold);
6222 return -7;
6223 }
6224
6225 DeleteFileW(szTempFile);
6226
6227 if (!DeleteFileW(wold))
6228 return -8;
6229
6230 return 0;
6231}
6232#endif
6233
6234
6235/*
6236 * mch_rename() works around a bug in rename (aka MoveFile) in
6237 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
6238 * file whose short file name is "FOO.BAR" (its long file name will
6239 * be correct: "foo.bar~"). Because a file can be accessed by
6240 * either its SFN or its LFN, "foo.bar" has effectively been
6241 * renamed to "foo.bar", which is not at all what was wanted. This
6242 * seems to happen only when renaming files with three-character
6243 * extensions by appending a suffix that does not include ".".
6244 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
6245 *
6246 * There is another problem, which isn't really a bug but isn't right either:
6247 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
6248 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
6249 * service pack 6. Doesn't seem to happen on Windows 98.
6250 *
6251 * Like rename(), returns 0 upon success, non-zero upon failure.
6252 * Should probably set errno appropriately when errors occur.
6253 */
6254 int
6255mch_rename(
6256 const char *pszOldFile,
6257 const char *pszNewFile)
6258{
6259 char szTempFile[_MAX_PATH+1];
6260 char szNewPath[_MAX_PATH+1];
6261 char *pszFilePart;
6262 HANDLE hf;
6263#ifdef FEAT_MBYTE
6264 WCHAR *wold = NULL;
6265 WCHAR *wnew = NULL;
6266 int retval = -1;
6267
6268 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6269 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006270 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
6271 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 if (wold != NULL && wnew != NULL)
6273 retval = mch_wrename(wold, wnew);
6274 vim_free(wold);
6275 vim_free(wnew);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006276 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277 }
6278#endif
6279
6280 /*
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006281 * No need to play tricks unless the file name contains a "~" as the
6282 * seventh character.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006284 pszFilePart = (char *)gettail((char_u *)pszOldFile);
6285 if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~')
6286 return rename(pszOldFile, pszNewFile);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287
6288 /* Get base path of new file name. Undocumented feature: If pszNewFile is
6289 * a directory, no error is returned and pszFilePart will be NULL. */
6290 if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0
6291 || pszFilePart == NULL)
6292 return -1;
6293 *pszFilePart = NUL;
6294
6295 /* Get (and create) a unique temporary file name in directory of new file */
6296 if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0)
6297 return -2;
6298
6299 /* blow the temp file away */
6300 if (!DeleteFile(szTempFile))
6301 return -3;
6302
6303 /* rename old file to the temp file */
6304 if (!MoveFile(pszOldFile, szTempFile))
6305 return -4;
6306
6307 /* now create an empty file called pszOldFile; this prevents the operating
6308 * system using pszOldFile as an alias (SFN) if we're renaming within the
6309 * same directory. For example, we're editing a file called
6310 * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
6311 * to filena~1.txt~ (i.e., we're making a backup while writing it), the
6312 * SFN for filena~1.txt~ will be filena~1.txt, by default, which will
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006313 * cause all sorts of problems later in buf_write(). So, we create an
6314 * empty file called filena~1.txt and the system will have to find some
6315 * other SFN for filena~1.txt~, such as filena~2.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316 */
6317 if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW,
6318 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
6319 return -5;
6320 if (!CloseHandle(hf))
6321 return -6;
6322
6323 /* rename the temp file to the new file */
6324 if (!MoveFile(szTempFile, pszNewFile))
6325 {
6326 /* Renaming failed. Rename the file back to its old name, so that it
6327 * looks like nothing happened. */
6328 (void)MoveFile(szTempFile, pszOldFile);
6329
6330 return -7;
6331 }
6332
6333 /* Seems to be left around on Novell filesystems */
6334 DeleteFile(szTempFile);
6335
6336 /* finally, remove the empty old file */
6337 if (!DeleteFile(pszOldFile))
6338 return -8;
6339
6340 return 0; /* success */
6341}
6342
6343/*
6344 * Get the default shell for the current hardware platform
6345 */
6346 char *
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006347default_shell(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006348{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349 PlatformId();
6350
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006351 return "cmd.exe";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352}
6353
6354/*
6355 * mch_access() extends access() to do more detailed check on network drives.
6356 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
6357 */
6358 int
6359mch_access(char *n, int p)
6360{
6361 HANDLE hFile;
6362 DWORD am;
6363 int retval = -1; /* default: fail */
6364#ifdef FEAT_MBYTE
6365 WCHAR *wn = NULL;
6366
6367 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006368 wn = enc_to_utf16((char_u *)n, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369#endif
6370
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006371 if (mch_isdir((char_u *)n))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 {
6373 char TempName[_MAX_PATH + 16] = "";
6374#ifdef FEAT_MBYTE
6375 WCHAR TempNameW[_MAX_PATH + 16] = L"";
6376#endif
6377
6378 if (p & R_OK)
6379 {
6380 /* Read check is performed by seeing if we can do a find file on
6381 * the directory for any file. */
6382#ifdef FEAT_MBYTE
6383 if (wn != NULL)
6384 {
6385 int i;
6386 WIN32_FIND_DATAW d;
6387
6388 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
6389 TempNameW[i] = wn[i];
6390 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
6391 TempNameW[i++] = '\\';
6392 TempNameW[i++] = '*';
6393 TempNameW[i++] = 0;
6394
6395 hFile = FindFirstFileW(TempNameW, &d);
6396 if (hFile == INVALID_HANDLE_VALUE)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006397 goto getout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006398 else
6399 (void)FindClose(hFile);
6400 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006401 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402#endif
6403 {
6404 char *pch;
6405 WIN32_FIND_DATA d;
6406
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006407 vim_strncpy((char_u *)TempName, (char_u *)n, _MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 pch = TempName + STRLEN(TempName) - 1;
6409 if (*pch != '\\' && *pch != '/')
6410 *++pch = '\\';
6411 *++pch = '*';
6412 *++pch = NUL;
6413
6414 hFile = FindFirstFile(TempName, &d);
6415 if (hFile == INVALID_HANDLE_VALUE)
6416 goto getout;
6417 (void)FindClose(hFile);
6418 }
6419 }
6420
6421 if (p & W_OK)
6422 {
6423 /* Trying to create a temporary file in the directory should catch
6424 * directories on read-only network shares. However, in
6425 * directories whose ACL allows writes but denies deletes will end
6426 * up keeping the temporary file :-(. */
6427#ifdef FEAT_MBYTE
6428 if (wn != NULL)
6429 {
6430 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006431 goto getout;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006432 else
6433 DeleteFileW(TempNameW);
6434 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006435 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006436#endif
6437 {
6438 if (!GetTempFileName(n, "VIM", 0, TempName))
6439 goto getout;
6440 mch_remove((char_u *)TempName);
6441 }
6442 }
6443 }
6444 else
6445 {
6446 /* Trying to open the file for the required access does ACL, read-only
6447 * network share, and file attribute checks. */
6448 am = ((p & W_OK) ? GENERIC_WRITE : 0)
6449 | ((p & R_OK) ? GENERIC_READ : 0);
6450#ifdef FEAT_MBYTE
6451 if (wn != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452 hFile = CreateFileW(wn, am, 0, NULL, OPEN_EXISTING, 0, NULL);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006453 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454#endif
6455 hFile = CreateFile(n, am, 0, NULL, OPEN_EXISTING, 0, NULL);
6456 if (hFile == INVALID_HANDLE_VALUE)
6457 goto getout;
6458 CloseHandle(hFile);
6459 }
6460
6461 retval = 0; /* success */
6462getout:
6463#ifdef FEAT_MBYTE
6464 vim_free(wn);
6465#endif
6466 return retval;
6467}
6468
6469#if defined(FEAT_MBYTE) || defined(PROTO)
6470/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006471 * Version of open() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 */
6473 int
6474mch_open(char *name, int flags, int mode)
6475{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006476 /* _wopen() does not work with Borland C 5.5: creates a read-only file. */
6477# ifndef __BORLANDC__
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478 WCHAR *wn;
6479 int f;
6480
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006481 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006483 wn = enc_to_utf16((char_u *)name, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 if (wn != NULL)
6485 {
6486 f = _wopen(wn, flags, mode);
6487 vim_free(wn);
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006488 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 }
6490 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006491# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006492
Bram Moolenaarf9e6c3b2014-11-05 18:36:03 +01006493 /* open() can open a file which name is longer than _MAX_PATH bytes
6494 * and shorter than _MAX_PATH characters successfully, but sometimes it
6495 * causes unexpected error in another part. We make it an error explicitly
6496 * here. */
6497 if (strlen(name) >= _MAX_PATH)
6498 return -1;
6499
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500 return open(name, flags, mode);
6501}
6502
6503/*
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006504 * Version of fopen() that may use UTF-16 file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006505 */
6506 FILE *
6507mch_fopen(char *name, char *mode)
6508{
6509 WCHAR *wn, *wm;
6510 FILE *f = NULL;
6511
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006512 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 {
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006514# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006515 /* Work around an annoying assertion in the Microsoft debug CRT
6516 * when mode's text/binary setting doesn't match _get_fmode(). */
6517 char newMode = mode[strlen(mode) - 1];
6518 int oldMode = 0;
6519
6520 _get_fmode(&oldMode);
6521 if (newMode == 't')
6522 _set_fmode(_O_TEXT);
6523 else if (newMode == 'b')
6524 _set_fmode(_O_BINARY);
6525# endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01006526 wn = enc_to_utf16((char_u *)name, NULL);
6527 wm = enc_to_utf16((char_u *)mode, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528 if (wn != NULL && wm != NULL)
6529 f = _wfopen(wn, wm);
6530 vim_free(wn);
6531 vim_free(wm);
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006532
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00006533# if defined(DEBUG) && _MSC_VER >= 1400
Bram Moolenaar0fde2902008-03-16 13:54:13 +00006534 _set_fmode(oldMode);
6535# endif
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006536 return f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006537 }
6538
Bram Moolenaarf9e6c3b2014-11-05 18:36:03 +01006539 /* fopen() can open a file which name is longer than _MAX_PATH bytes
6540 * and shorter than _MAX_PATH characters successfully, but sometimes it
6541 * causes unexpected error in another part. We make it an error explicitly
6542 * here. */
6543 if (strlen(name) >= _MAX_PATH)
6544 return NULL;
6545
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546 return fopen(name, mode);
6547}
6548#endif
6549
6550#ifdef FEAT_MBYTE
6551/*
6552 * SUB STREAM (aka info stream) handling:
6553 *
6554 * NTFS can have sub streams for each file. Normal contents of file is
6555 * stored in the main stream, and extra contents (author information and
6556 * title and so on) can be stored in sub stream. After Windows 2000, user
6557 * can access and store those informations in sub streams via explorer's
6558 * property menuitem in right click menu. Those informations in sub streams
6559 * were lost when copying only the main stream. So we have to copy sub
6560 * streams.
6561 *
6562 * Incomplete explanation:
6563 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
6564 * More useful info and an example:
6565 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
6566 */
6567
6568/*
6569 * Copy info stream data "substream". Read from the file with BackupRead(sh)
6570 * and write to stream "substream" of file "to".
6571 * Errors are ignored.
6572 */
6573 static void
6574copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
6575{
6576 HANDLE hTo;
6577 WCHAR *to_name;
6578
6579 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
6580 wcscpy(to_name, to);
6581 wcscat(to_name, substream);
6582
6583 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
6584 FILE_ATTRIBUTE_NORMAL, NULL);
6585 if (hTo != INVALID_HANDLE_VALUE)
6586 {
6587 long done;
6588 DWORD todo;
6589 DWORD readcnt, written;
6590 char buf[4096];
6591
6592 /* Copy block of bytes at a time. Abort when something goes wrong. */
6593 for (done = 0; done < len; done += written)
6594 {
6595 /* (size_t) cast for Borland C 5.5 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006596 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
6597 : (size_t)(len - done));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
6599 FALSE, FALSE, context)
6600 || readcnt != todo
6601 || !WriteFile(hTo, buf, todo, &written, NULL)
6602 || written != todo)
6603 break;
6604 }
6605 CloseHandle(hTo);
6606 }
6607
6608 free(to_name);
6609}
6610
6611/*
6612 * Copy info streams from file "from" to file "to".
6613 */
6614 static void
6615copy_infostreams(char_u *from, char_u *to)
6616{
6617 WCHAR *fromw;
6618 WCHAR *tow;
6619 HANDLE sh;
6620 WIN32_STREAM_ID sid;
6621 int headersize;
6622 WCHAR streamname[_MAX_PATH];
6623 DWORD readcount;
6624 void *context = NULL;
6625 DWORD lo, hi;
6626 int len;
6627
6628 /* Convert the file names to wide characters. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006629 fromw = enc_to_utf16(from, NULL);
6630 tow = enc_to_utf16(to, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006631 if (fromw != NULL && tow != NULL)
6632 {
6633 /* Open the file for reading. */
6634 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
6635 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
6636 if (sh != INVALID_HANDLE_VALUE)
6637 {
6638 /* Use BackupRead() to find the info streams. Repeat until we
6639 * have done them all.*/
6640 for (;;)
6641 {
6642 /* Get the header to find the length of the stream name. If
6643 * the "readcount" is zero we have done all info streams. */
6644 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006645 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006646 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
6647 &readcount, FALSE, FALSE, &context)
6648 || readcount == 0)
6649 break;
6650
6651 /* We only deal with streams that have a name. The normal
6652 * file data appears to be without a name, even though docs
6653 * suggest it is called "::$DATA". */
6654 if (sid.dwStreamNameSize > 0)
6655 {
6656 /* Read the stream name. */
6657 if (!BackupRead(sh, (LPBYTE)streamname,
6658 sid.dwStreamNameSize,
6659 &readcount, FALSE, FALSE, &context))
6660 break;
6661
6662 /* Copy an info stream with a name ":anything:$DATA".
6663 * Skip "::$DATA", it has no stream name (examples suggest
6664 * it might be used for the normal file contents).
6665 * Note that BackupRead() counts bytes, but the name is in
6666 * wide characters. */
6667 len = readcount / sizeof(WCHAR);
6668 streamname[len] = 0;
6669 if (len > 7 && wcsicmp(streamname + len - 6,
6670 L":$DATA") == 0)
6671 {
6672 streamname[len - 6] = 0;
6673 copy_substream(sh, &context, tow, streamname,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00006674 (long)sid.Size.u.LowPart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006675 }
6676 }
6677
6678 /* Advance to the next stream. We might try seeking too far,
6679 * but BackupSeek() doesn't skip over stream borders, thus
6680 * that's OK. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006681 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006682 &lo, &hi, &context);
6683 }
6684
6685 /* Clear the context. */
6686 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
6687
6688 CloseHandle(sh);
6689 }
6690 }
6691 vim_free(fromw);
6692 vim_free(tow);
6693}
6694#endif
6695
6696/*
6697 * Copy file attributes from file "from" to file "to".
6698 * For Windows NT and later we copy info streams.
6699 * Always returns zero, errors are ignored.
6700 */
6701 int
6702mch_copy_file_attribute(char_u *from, char_u *to)
6703{
6704#ifdef FEAT_MBYTE
6705 /* File streams only work on Windows NT and later. */
6706 PlatformId();
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006707 copy_infostreams(from, to);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708#endif
6709 return 0;
6710}
6711
6712#if defined(MYRESETSTKOFLW) || defined(PROTO)
6713/*
6714 * Recreate a destroyed stack guard page in win32.
6715 * Written by Benjamin Peterson.
6716 */
6717
6718/* These magic numbers are from the MS header files */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006719#define MIN_STACK_WINNT 2
6720
6721/*
6722 * This function does the same thing as _resetstkoflw(), which is only
6723 * available in DevStudio .net and later.
6724 * Returns 0 for failure, 1 for success.
6725 */
6726 int
6727myresetstkoflw(void)
6728{
6729 BYTE *pStackPtr;
6730 BYTE *pGuardPage;
6731 BYTE *pStackBase;
6732 BYTE *pLowestPossiblePage;
6733 MEMORY_BASIC_INFORMATION mbi;
6734 SYSTEM_INFO si;
6735 DWORD nPageSize;
6736 DWORD dummy;
6737
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738 PlatformId();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006739
6740 /* We need to know the system page size. */
6741 GetSystemInfo(&si);
6742 nPageSize = si.dwPageSize;
6743
6744 /* ...and the current stack pointer */
6745 pStackPtr = (BYTE*)_alloca(1);
6746
6747 /* ...and the base of the stack. */
6748 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
6749 return 0;
6750 pStackBase = (BYTE*)mbi.AllocationBase;
6751
6752 /* ...and the page thats min_stack_req pages away from stack base; this is
6753 * the lowest page we could use. */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006754 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006755
Bram Moolenaar071d4272004-06-13 20:20:40 +00006756 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006757 /* We want the first committed page in the stack Start at the stack
6758 * base and move forward through memory until we find a committed block.
6759 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760 BYTE *pBlock = pStackBase;
6761
Bram Moolenaara466c992005-07-09 21:03:22 +00006762 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006763 {
6764 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
6765 return 0;
6766
6767 pBlock += mbi.RegionSize;
6768
6769 if (mbi.State & MEM_COMMIT)
6770 break;
6771 }
6772
6773 /* mbi now describes the first committed block in the stack. */
6774 if (mbi.Protect & PAGE_GUARD)
6775 return 1;
6776
6777 /* decide where the guard page should start */
6778 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
6779 pGuardPage = pLowestPossiblePage;
6780 else
6781 pGuardPage = (BYTE*)mbi.BaseAddress;
6782
6783 /* allocate the guard page */
6784 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
6785 return 0;
6786
6787 /* apply the guard attribute to the page */
6788 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
6789 &dummy))
6790 return 0;
6791 }
6792
6793 return 1;
6794}
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006795#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006797
6798#if defined(FEAT_MBYTE) || defined(PROTO)
6799/*
6800 * The command line arguments in UCS2
6801 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006802static int nArgsW = 0;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006803static LPWSTR *ArglistW = NULL;
6804static int global_argc = 0;
6805static char **global_argv;
6806
6807static int used_file_argc = 0; /* last argument in global_argv[] used
6808 for the argument list. */
6809static int *used_file_indexes = NULL; /* indexes in global_argv[] for
6810 command line arguments added to
6811 the argument list */
6812static int used_file_count = 0; /* nr of entries in used_file_indexes */
6813static int used_file_literal = FALSE; /* take file names literally */
6814static int used_file_full_path = FALSE; /* file name was full path */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006815static int used_file_diff_mode = FALSE; /* file name was with diff mode */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006816static int used_alist_count = 0;
6817
6818
6819/*
6820 * Get the command line arguments. Unicode version.
6821 * Returns argc. Zero when something fails.
6822 */
6823 int
6824get_cmd_argsW(char ***argvp)
6825{
6826 char **argv = NULL;
6827 int argc = 0;
6828 int i;
6829
Bram Moolenaar14993322014-09-09 12:25:33 +02006830 free_cmd_argsW();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006831 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
6832 if (ArglistW != NULL)
6833 {
6834 argv = malloc((nArgsW + 1) * sizeof(char *));
6835 if (argv != NULL)
6836 {
6837 argc = nArgsW;
6838 argv[argc] = NULL;
6839 for (i = 0; i < argc; ++i)
6840 {
6841 int len;
6842
6843 /* Convert each Unicode argument to the current codepage. */
6844 WideCharToMultiByte_alloc(GetACP(), 0,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006845 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006846 (LPSTR *)&argv[i], &len, 0, 0);
6847 if (argv[i] == NULL)
6848 {
6849 /* Out of memory, clear everything. */
6850 while (i > 0)
6851 free(argv[--i]);
6852 free(argv);
Bram Moolenaar73c61632013-12-07 14:48:10 +01006853 argv = NULL;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006854 argc = 0;
6855 }
6856 }
6857 }
6858 }
6859
6860 global_argc = argc;
6861 global_argv = argv;
6862 if (argc > 0)
Bram Moolenaar14993322014-09-09 12:25:33 +02006863 {
6864 if (used_file_indexes != NULL)
6865 free(used_file_indexes);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006866 used_file_indexes = malloc(argc * sizeof(int));
Bram Moolenaar14993322014-09-09 12:25:33 +02006867 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006868
6869 if (argvp != NULL)
6870 *argvp = argv;
6871 return argc;
6872}
6873
6874 void
6875free_cmd_argsW(void)
6876{
6877 if (ArglistW != NULL)
6878 {
6879 GlobalFree(ArglistW);
6880 ArglistW = NULL;
6881 }
6882}
6883
6884/*
6885 * Remember "name" is an argument that was added to the argument list.
6886 * This avoids that we have to re-parse the argument list when fix_arg_enc()
6887 * is called.
6888 */
6889 void
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006890used_file_arg(char *name, int literal, int full_path, int diff_mode)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006891{
6892 int i;
6893
6894 if (used_file_indexes == NULL)
6895 return;
6896 for (i = used_file_argc + 1; i < global_argc; ++i)
6897 if (STRCMP(global_argv[i], name) == 0)
6898 {
6899 used_file_argc = i;
6900 used_file_indexes[used_file_count++] = i;
6901 break;
6902 }
6903 used_file_literal = literal;
6904 used_file_full_path = full_path;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006905 used_file_diff_mode = diff_mode;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006906}
6907
6908/*
6909 * Remember the length of the argument list as it was. If it changes then we
6910 * leave it alone when 'encoding' is set.
6911 */
6912 void
6913set_alist_count(void)
6914{
6915 used_alist_count = GARGCOUNT;
6916}
6917
6918/*
6919 * Fix the encoding of the command line arguments. Invoked when 'encoding'
6920 * has been changed while starting up. Use the UCS-2 command line arguments
6921 * and convert them to 'encoding'.
6922 */
6923 void
6924fix_arg_enc(void)
6925{
6926 int i;
6927 int idx;
6928 char_u *str;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006929 int *fnum_list;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006930
6931 /* Safety checks:
6932 * - if argument count differs between the wide and non-wide argument
6933 * list, something must be wrong.
6934 * - the file name arguments must have been located.
6935 * - the length of the argument list wasn't changed by the user.
6936 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006937 if (global_argc != nArgsW
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006938 || ArglistW == NULL
6939 || used_file_indexes == NULL
6940 || used_file_count == 0
6941 || used_alist_count != GARGCOUNT)
6942 return;
6943
Bram Moolenaar86b68352004-12-27 21:59:20 +00006944 /* Remember the buffer numbers for the arguments. */
6945 fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT);
6946 if (fnum_list == NULL)
6947 return; /* out of memory */
6948 for (i = 0; i < GARGCOUNT; ++i)
6949 fnum_list[i] = GARGLIST[i].ae_fnum;
6950
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006951 /* Clear the argument list. Make room for the new arguments. */
6952 alist_clear(&global_alist);
6953 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006954 return; /* out of memory */
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006955
6956 for (i = 0; i < used_file_count; ++i)
6957 {
6958 idx = used_file_indexes[i];
Bram Moolenaar36f692d2008-11-20 16:10:17 +00006959 str = utf16_to_enc(ArglistW[idx], NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006960 if (str != NULL)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006961 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006962#ifdef FEAT_DIFF
6963 /* When using diff mode may need to concatenate file name to
6964 * directory name. Just like it's done in main(). */
6965 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
6966 && !mch_isdir(alist_name(&GARGLIST[0])))
6967 {
6968 char_u *r;
6969
6970 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
6971 if (r != NULL)
6972 {
6973 vim_free(str);
6974 str = r;
6975 }
6976 }
6977#endif
Bram Moolenaar86b68352004-12-27 21:59:20 +00006978 /* Re-use the old buffer by renaming it. When not using literal
6979 * names it's done by alist_expand() below. */
6980 if (used_file_literal)
6981 buf_set_name(fnum_list[i], str);
6982
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006983 alist_add(&global_alist, str, used_file_literal ? 2 : 0);
Bram Moolenaar86b68352004-12-27 21:59:20 +00006984 }
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006985 }
6986
6987 if (!used_file_literal)
6988 {
6989 /* Now expand wildcards in the arguments. */
6990 /* Temporarily add '(' and ')' to 'isfname'. These are valid
6991 * filename characters but are excluded from 'isfname' to make
6992 * "gf" work on a file name in parenthesis (e.g.: see vim.h). */
6993 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
Bram Moolenaar86b68352004-12-27 21:59:20 +00006994 alist_expand(fnum_list, used_alist_count);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00006995 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
6996 }
6997
6998 /* If wildcard expansion failed, we are editing the first file of the
6999 * arglist and there is no file name: Edit the first argument now. */
7000 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
7001 {
7002 do_cmdline_cmd((char_u *)":rewind");
7003 if (GARGCOUNT == 1 && used_file_full_path)
7004 (void)vim_chdirfile(alist_name(&GARGLIST[0]));
7005 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007006
7007 set_alist_count();
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00007008}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009#endif
Bram Moolenaar7c23d1d2017-02-01 13:14:16 +01007010
7011 int
7012mch_setenv(char *var, char *value, int x)
7013{
7014 char_u *envbuf;
7015
7016 envbuf = alloc((unsigned)(STRLEN(var) + STRLEN(value) + 2));
7017 if (envbuf == NULL)
7018 return -1;
7019
7020 sprintf((char *)envbuf, "%s=%s", var, value);
7021
7022#ifdef FEAT_MBYTE
7023 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
7024 {
7025 WCHAR *p = enc_to_utf16(envbuf, NULL);
7026
7027 vim_free(envbuf);
7028 if (p == NULL)
7029 return -1;
7030 _wputenv(p);
7031# ifdef libintl_wputenv
7032 libintl_wputenv(p);
7033# endif
7034 /* Unlike Un*x systems, we can free the string for _wputenv(). */
7035 vim_free(p);
7036 }
7037 else
7038#endif
7039 {
7040 _putenv((char *)envbuf);
7041# ifdef libintl_putenv
7042 libintl_putenv((char *)envbuf);
7043# endif
7044 /* Unlike Un*x systems, we can free the string for _putenv(). */
7045 vim_free(envbuf);
7046 }
7047
7048 return 0;
7049}