Bram Moolenaar | edf3f97 | 2016-08-29 22:49:24 +0200 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | * |
| 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 23 | #include "vim.h" |
| 24 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 25 | #ifdef FEAT_MZSCHEME |
| 26 | # include "if_mzsch.h" |
| 27 | #endif |
| 28 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 29 | #include <sys/types.h> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 30 | #include <signal.h> |
| 31 | #include <limits.h> |
Bram Moolenaar | 8288149 | 2012-11-20 16:53:39 +0100 | [diff] [blame] | 32 | |
| 33 | /* cproto fails on missing include files */ |
| 34 | #ifndef PROTO |
| 35 | # include <process.h> |
| 36 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 37 | |
| 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 Moolenaar | 8288149 | 2012-11-20 16:53:39 +0100 | [diff] [blame] | 47 | #ifndef PROTO |
| 48 | # if defined(FEAT_TITLE) && !defined(FEAT_GUI_W32) |
| 49 | # include <shellapi.h> |
| 50 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 51 | #endif |
| 52 | |
Bram Moolenaar | fb63090 | 2016-10-29 14:55:00 +0200 | [diff] [blame] | 53 | #ifdef FEAT_JOB_CHANNEL |
| 54 | # include <tlhelp32.h> |
| 55 | #endif |
| 56 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 57 | #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 |
| 89 | FILE* 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 Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 98 | typedef char * LPCSTR; |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 99 | typedef char * LPWSTR; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 100 | typedef int ACCESS_MASK; |
| 101 | typedef int BOOL; |
| 102 | typedef int COLORREF; |
| 103 | typedef int CONSOLE_CURSOR_INFO; |
| 104 | typedef int COORD; |
| 105 | typedef int DWORD; |
| 106 | typedef int HANDLE; |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 107 | typedef int LPHANDLE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 108 | typedef int HDC; |
| 109 | typedef int HFONT; |
| 110 | typedef int HICON; |
| 111 | typedef int HINSTANCE; |
| 112 | typedef int HWND; |
| 113 | typedef int INPUT_RECORD; |
Bram Moolenaar | e0ab979 | 2017-08-02 23:18:25 +0200 | [diff] [blame] | 114 | typedef int INT; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 115 | typedef int KEY_EVENT_RECORD; |
| 116 | typedef int LOGFONT; |
| 117 | typedef int LPBOOL; |
| 118 | typedef int LPCTSTR; |
| 119 | typedef int LPDWORD; |
| 120 | typedef int LPSTR; |
| 121 | typedef int LPTSTR; |
| 122 | typedef int LPVOID; |
| 123 | typedef int MOUSE_EVENT_RECORD; |
| 124 | typedef int PACL; |
| 125 | typedef int PDWORD; |
| 126 | typedef int PHANDLE; |
| 127 | typedef int PRINTDLG; |
| 128 | typedef int PSECURITY_DESCRIPTOR; |
| 129 | typedef int PSID; |
| 130 | typedef int SECURITY_INFORMATION; |
| 131 | typedef int SHORT; |
| 132 | typedef int SMALL_RECT; |
| 133 | typedef int TEXTMETRIC; |
| 134 | typedef int TOKEN_INFORMATION_CLASS; |
| 135 | typedef int TRUSTEE; |
| 136 | typedef int WORD; |
| 137 | typedef int WCHAR; |
| 138 | typedef void VOID; |
Bram Moolenaar | 8288149 | 2012-11-20 16:53:39 +0100 | [diff] [blame] | 139 | typedef int BY_HANDLE_FILE_INFORMATION; |
Bram Moolenaar | 32ac8cd | 2013-07-03 18:49:17 +0200 | [diff] [blame] | 140 | typedef int SE_OBJECT_TYPE; |
| 141 | typedef int PSNSECINFO; |
| 142 | typedef int PSNSECINFOW; |
Bram Moolenaar | b8e0bdb | 2014-11-12 16:10:48 +0100 | [diff] [blame] | 143 | typedef int STARTUPINFO; |
| 144 | typedef int PROCESS_INFORMATION; |
Bram Moolenaar | d90b6c0 | 2016-08-28 18:10:45 +0200 | [diff] [blame] | 145 | typedef int LPSECURITY_ATTRIBUTES; |
| 146 | # define __stdcall /* empty */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 147 | #endif |
| 148 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 149 | #if defined(__BORLANDC__) |
| 150 | /* Strangely Borland uses a non-standard name. */ |
| 151 | # define wcsicmp(a, b) wcscmpi((a), (b)) |
| 152 | #endif |
| 153 | |
| 154 | #ifndef FEAT_GUI_W32 |
| 155 | /* Win32 Console handles for input and output */ |
| 156 | static HANDLE g_hConIn = INVALID_HANDLE_VALUE; |
| 157 | static HANDLE g_hConOut = INVALID_HANDLE_VALUE; |
| 158 | |
| 159 | /* Win32 Screen buffer,coordinate,console I/O information */ |
| 160 | static SMALL_RECT g_srScrollRegion; |
| 161 | static COORD g_coord; /* 0-based, but external coords are 1-based */ |
| 162 | |
| 163 | /* The attribute of the screen when the editor was started */ |
| 164 | static WORD g_attrDefault = 7; /* lightgray text on black background */ |
| 165 | static WORD g_attrCurrent; |
| 166 | |
| 167 | static int g_fCBrkPressed = FALSE; /* set by ctrl-break interrupt */ |
| 168 | static int g_fCtrlCPressed = FALSE; /* set when ctrl-C or ctrl-break detected */ |
| 169 | static int g_fForceExit = FALSE; /* set when forcefully exiting */ |
| 170 | |
| 171 | static void termcap_mode_start(void); |
| 172 | static void termcap_mode_end(void); |
| 173 | static void clear_chars(COORD coord, DWORD n); |
| 174 | static void clear_screen(void); |
| 175 | static void clear_to_end_of_display(void); |
| 176 | static void clear_to_end_of_line(void); |
| 177 | static void scroll(unsigned cLines); |
| 178 | static void set_scroll_region(unsigned left, unsigned top, |
| 179 | unsigned right, unsigned bottom); |
| 180 | static void insert_lines(unsigned cLines); |
| 181 | static void delete_lines(unsigned cLines); |
| 182 | static void gotoxy(unsigned x, unsigned y); |
| 183 | static void normvideo(void); |
| 184 | static void textattr(WORD wAttr); |
| 185 | static void textcolor(WORD wAttr); |
| 186 | static void textbackground(WORD wAttr); |
| 187 | static void standout(void); |
| 188 | static void standend(void); |
| 189 | static void visual_bell(void); |
| 190 | static void cursor_visible(BOOL fVisible); |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 191 | static DWORD write_chars(char_u *pchBuf, DWORD cbToWrite); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 192 | static void create_conin(void); |
| 193 | static int s_cursor_visible = TRUE; |
| 194 | static int did_create_conin = FALSE; |
| 195 | #else |
| 196 | static int s_dont_use_vimrun = TRUE; |
| 197 | static int need_vimrun_warning = FALSE; |
| 198 | static char *vimrun_path = "vimrun "; |
| 199 | #endif |
| 200 | |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 201 | static int win32_getattrs(char_u *name); |
| 202 | static int win32_setattrs(char_u *name, int attrs); |
| 203 | static int win32_set_archive(char_u *name); |
| 204 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 205 | #ifndef FEAT_GUI_W32 |
| 206 | static int suppress_winsize = 1; /* don't fiddle with console */ |
| 207 | #endif |
| 208 | |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 209 | static char_u *exe_path = NULL; |
| 210 | |
Bram Moolenaar | f50eb78 | 2014-02-05 13:36:54 +0100 | [diff] [blame] | 211 | static BOOL win8_or_later = FALSE; |
| 212 | |
Bram Moolenaar | 418f81b | 2016-02-16 20:12:02 +0100 | [diff] [blame] | 213 | #ifndef FEAT_GUI_W32 |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 214 | /* |
| 215 | * Version of ReadConsoleInput() that works with IME. |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 216 | * Works around problems on Windows 8. |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 217 | */ |
| 218 | static BOOL |
| 219 | read_console_input( |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 220 | HANDLE hInput, |
| 221 | INPUT_RECORD *lpBuffer, |
| 222 | DWORD nLength, |
| 223 | LPDWORD lpEvents) |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 224 | { |
| 225 | enum |
| 226 | { |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 227 | IRSIZE = 10 |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 228 | }; |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 229 | static INPUT_RECORD s_irCache[IRSIZE]; |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 230 | static DWORD s_dwIndex = 0; |
| 231 | static DWORD s_dwMax = 0; |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 232 | DWORD dwEvents; |
Bram Moolenaar | dd415a6 | 2014-02-05 14:02:27 +0100 | [diff] [blame] | 233 | int head; |
| 234 | int tail; |
| 235 | int i; |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 236 | |
Bram Moolenaar | bb86ebb | 2015-08-04 19:27:05 +0200 | [diff] [blame] | 237 | if (nLength == -2) |
| 238 | return (s_dwMax > 0) ? TRUE : FALSE; |
| 239 | |
Bram Moolenaar | f50eb78 | 2014-02-05 13:36:54 +0100 | [diff] [blame] | 240 | if (!win8_or_later) |
| 241 | { |
| 242 | if (nLength == -1) |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 243 | return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents); |
| 244 | return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents); |
Bram Moolenaar | f50eb78 | 2014-02-05 13:36:54 +0100 | [diff] [blame] | 245 | } |
| 246 | |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 247 | if (s_dwMax == 0) |
| 248 | { |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 249 | if (nLength == -1) |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 250 | return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents); |
| 251 | if (!ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents)) |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 252 | return FALSE; |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 253 | s_dwIndex = 0; |
| 254 | s_dwMax = dwEvents; |
| 255 | if (dwEvents == 0) |
| 256 | { |
| 257 | *lpEvents = 0; |
| 258 | return TRUE; |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 259 | } |
Bram Moolenaar | dd415a6 | 2014-02-05 14:02:27 +0100 | [diff] [blame] | 260 | |
| 261 | if (s_dwMax > 1) |
| 262 | { |
| 263 | head = 0; |
| 264 | tail = s_dwMax - 1; |
| 265 | while (head != tail) |
| 266 | { |
| 267 | if (s_irCache[head].EventType == WINDOW_BUFFER_SIZE_EVENT |
| 268 | && s_irCache[head + 1].EventType |
| 269 | == WINDOW_BUFFER_SIZE_EVENT) |
| 270 | { |
| 271 | /* Remove duplicate event to avoid flicker. */ |
| 272 | for (i = head; i < tail; ++i) |
| 273 | s_irCache[i] = s_irCache[i + 1]; |
| 274 | --tail; |
| 275 | continue; |
| 276 | } |
| 277 | head++; |
| 278 | } |
| 279 | s_dwMax = tail + 1; |
| 280 | } |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 281 | } |
Bram Moolenaar | dd415a6 | 2014-02-05 14:02:27 +0100 | [diff] [blame] | 282 | |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 283 | *lpBuffer = s_irCache[s_dwIndex]; |
Bram Moolenaar | bb86ebb | 2015-08-04 19:27:05 +0200 | [diff] [blame] | 284 | if (!(nLength == -1 || nLength == -2) && ++s_dwIndex >= s_dwMax) |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 285 | s_dwMax = 0; |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 286 | *lpEvents = 1; |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 287 | return TRUE; |
| 288 | } |
| 289 | |
| 290 | /* |
| 291 | * Version of PeekConsoleInput() that works with IME. |
| 292 | */ |
| 293 | static BOOL |
| 294 | peek_console_input( |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 295 | HANDLE hInput, |
| 296 | INPUT_RECORD *lpBuffer, |
| 297 | DWORD nLength, |
| 298 | LPDWORD lpEvents) |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 299 | { |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 300 | return read_console_input(hInput, lpBuffer, -1, lpEvents); |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 301 | } |
| 302 | |
Bram Moolenaar | 418f81b | 2016-02-16 20:12:02 +0100 | [diff] [blame] | 303 | # ifdef FEAT_CLIENTSERVER |
Bram Moolenaar | bb86ebb | 2015-08-04 19:27:05 +0200 | [diff] [blame] | 304 | static DWORD |
| 305 | msg_wait_for_multiple_objects( |
| 306 | DWORD nCount, |
| 307 | LPHANDLE pHandles, |
| 308 | BOOL fWaitAll, |
| 309 | DWORD dwMilliseconds, |
| 310 | DWORD dwWakeMask) |
| 311 | { |
| 312 | if (read_console_input(NULL, NULL, -2, NULL)) |
| 313 | return WAIT_OBJECT_0; |
| 314 | return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll, |
| 315 | dwMilliseconds, dwWakeMask); |
| 316 | } |
Bram Moolenaar | 418f81b | 2016-02-16 20:12:02 +0100 | [diff] [blame] | 317 | # endif |
Bram Moolenaar | bb86ebb | 2015-08-04 19:27:05 +0200 | [diff] [blame] | 318 | |
Bram Moolenaar | 418f81b | 2016-02-16 20:12:02 +0100 | [diff] [blame] | 319 | # ifndef FEAT_CLIENTSERVER |
Bram Moolenaar | bb86ebb | 2015-08-04 19:27:05 +0200 | [diff] [blame] | 320 | static DWORD |
| 321 | wait_for_single_object( |
| 322 | HANDLE hHandle, |
| 323 | DWORD dwMilliseconds) |
| 324 | { |
| 325 | if (read_console_input(NULL, NULL, -2, NULL)) |
| 326 | return WAIT_OBJECT_0; |
| 327 | return WaitForSingleObject(hHandle, dwMilliseconds); |
| 328 | } |
Bram Moolenaar | 418f81b | 2016-02-16 20:12:02 +0100 | [diff] [blame] | 329 | # endif |
| 330 | #endif |
Bram Moolenaar | bb86ebb | 2015-08-04 19:27:05 +0200 | [diff] [blame] | 331 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 332 | static void |
| 333 | get_exe_name(void) |
| 334 | { |
Bram Moolenaar | 27d9ece | 2010-11-10 15:37:05 +0100 | [diff] [blame] | 335 | /* Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned |
| 336 | * as the maximum length that works (plus a NUL byte). */ |
| 337 | #define MAX_ENV_PATH_LEN 8192 |
| 338 | char temp[MAX_ENV_PATH_LEN]; |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 339 | char_u *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 340 | |
| 341 | if (exe_name == NULL) |
| 342 | { |
| 343 | /* store the name of the executable, may be used for $VIM */ |
Bram Moolenaar | 27d9ece | 2010-11-10 15:37:05 +0100 | [diff] [blame] | 344 | GetModuleFileName(NULL, temp, MAX_ENV_PATH_LEN - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 345 | if (*temp != NUL) |
| 346 | exe_name = FullName_save((char_u *)temp, FALSE); |
| 347 | } |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 348 | |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 349 | if (exe_path == NULL && exe_name != NULL) |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 350 | { |
Bram Moolenaar | 6b5ef06 | 2010-10-27 12:18:00 +0200 | [diff] [blame] | 351 | exe_path = vim_strnsave(exe_name, |
| 352 | (int)(gettail_sep(exe_name) - exe_name)); |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 353 | if (exe_path != NULL) |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 354 | { |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 355 | /* Append our starting directory to $PATH, so that when doing |
| 356 | * "!xxd" it's found in our starting directory. Needed because |
| 357 | * SearchPath() also looks there. */ |
| 358 | p = mch_getenv("PATH"); |
Bram Moolenaar | 27d9ece | 2010-11-10 15:37:05 +0100 | [diff] [blame] | 359 | if (p == NULL |
| 360 | || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN) |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 361 | { |
Bram Moolenaar | 27d9ece | 2010-11-10 15:37:05 +0100 | [diff] [blame] | 362 | if (p == NULL || *p == NUL) |
| 363 | temp[0] = NUL; |
| 364 | else |
| 365 | { |
| 366 | STRCPY(temp, p); |
| 367 | STRCAT(temp, ";"); |
| 368 | } |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 369 | STRCAT(temp, exe_path); |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 370 | vim_setenv((char_u *)"PATH", (char_u *)temp); |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 371 | } |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 372 | } |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 373 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 374 | } |
| 375 | |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 376 | /* |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 377 | * Unescape characters in "p" that appear in "escaped". |
| 378 | */ |
| 379 | static void |
| 380 | unescape_shellxquote(char_u *p, char_u *escaped) |
| 381 | { |
Bram Moolenaar | 4336cdf | 2012-02-29 13:58:47 +0100 | [diff] [blame] | 382 | int l = (int)STRLEN(p); |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 383 | int n; |
| 384 | |
| 385 | while (*p != NUL) |
| 386 | { |
| 387 | if (*p == '^' && vim_strchr(escaped, p[1]) != NULL) |
| 388 | mch_memmove(p, p + 1, l--); |
| 389 | #ifdef FEAT_MBYTE |
| 390 | n = (*mb_ptr2len)(p); |
| 391 | #else |
| 392 | n = 1; |
| 393 | #endif |
| 394 | p += n; |
| 395 | l -= n; |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | /* |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 400 | * Load library "name". |
| 401 | */ |
| 402 | HINSTANCE |
| 403 | vimLoadLib(char *name) |
| 404 | { |
Bram Moolenaar | 17aa8cc | 2012-10-21 21:38:45 +0200 | [diff] [blame] | 405 | HINSTANCE dll = NULL; |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 406 | |
Bram Moolenaar | faca840 | 2012-10-21 02:37:10 +0200 | [diff] [blame] | 407 | /* NOTE: Do not use mch_dirname() and mch_chdir() here, they may call |
| 408 | * vimLoadLib() recursively, which causes a stack overflow. */ |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 409 | if (exe_path == NULL) |
| 410 | get_exe_name(); |
Bram Moolenaar | 17aa8cc | 2012-10-21 21:38:45 +0200 | [diff] [blame] | 411 | if (exe_path != NULL) |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 412 | { |
Bram Moolenaar | 17aa8cc | 2012-10-21 21:38:45 +0200 | [diff] [blame] | 413 | WCHAR old_dirw[MAXPATHL]; |
| 414 | |
| 415 | if (GetCurrentDirectoryW(MAXPATHL, old_dirw) != 0) |
| 416 | { |
| 417 | /* Change directory to where the executable is, both to make |
| 418 | * sure we find a .dll there and to avoid looking for a .dll |
| 419 | * in the current directory. */ |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 420 | SetCurrentDirectory((LPCSTR)exe_path); |
Bram Moolenaar | 17aa8cc | 2012-10-21 21:38:45 +0200 | [diff] [blame] | 421 | dll = LoadLibrary(name); |
| 422 | SetCurrentDirectoryW(old_dirw); |
| 423 | return dll; |
| 424 | } |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 425 | } |
| 426 | return dll; |
| 427 | } |
| 428 | |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 429 | #if defined(DYNAMIC_ICONV) || defined(DYNAMIC_GETTEXT) || defined(PROTO) |
| 430 | /* |
| 431 | * Get related information about 'funcname' which is imported by 'hInst'. |
| 432 | * If 'info' is 0, return the function address. |
| 433 | * If 'info' is 1, return the module name which the function is imported from. |
| 434 | */ |
| 435 | static void * |
| 436 | get_imported_func_info(HINSTANCE hInst, const char *funcname, int info) |
| 437 | { |
| 438 | PBYTE pImage = (PBYTE)hInst; |
| 439 | PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)hInst; |
| 440 | PIMAGE_NT_HEADERS pPE; |
| 441 | PIMAGE_IMPORT_DESCRIPTOR pImpDesc; |
| 442 | PIMAGE_THUNK_DATA pIAT; /* Import Address Table */ |
| 443 | PIMAGE_THUNK_DATA pINT; /* Import Name Table */ |
| 444 | PIMAGE_IMPORT_BY_NAME pImpName; |
| 445 | |
| 446 | if (pDOS->e_magic != IMAGE_DOS_SIGNATURE) |
| 447 | return NULL; |
| 448 | pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew); |
| 449 | if (pPE->Signature != IMAGE_NT_SIGNATURE) |
| 450 | return NULL; |
| 451 | pImpDesc = (PIMAGE_IMPORT_DESCRIPTOR)(pImage |
| 452 | + pPE->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT] |
| 453 | .VirtualAddress); |
| 454 | for (; pImpDesc->FirstThunk; ++pImpDesc) |
| 455 | { |
| 456 | if (!pImpDesc->OriginalFirstThunk) |
| 457 | continue; |
| 458 | pIAT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->FirstThunk); |
| 459 | pINT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->OriginalFirstThunk); |
| 460 | for (; pIAT->u1.Function; ++pIAT, ++pINT) |
| 461 | { |
| 462 | if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal)) |
| 463 | continue; |
| 464 | pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage |
| 465 | + (UINT_PTR)(pINT->u1.AddressOfData)); |
| 466 | if (strcmp((char *)pImpName->Name, funcname) == 0) |
| 467 | { |
| 468 | switch (info) |
| 469 | { |
| 470 | case 0: |
| 471 | return (void *)pIAT->u1.Function; |
| 472 | case 1: |
| 473 | return (void *)(pImage + pImpDesc->Name); |
| 474 | default: |
| 475 | return NULL; |
| 476 | } |
| 477 | } |
| 478 | } |
| 479 | } |
| 480 | return NULL; |
| 481 | } |
| 482 | |
| 483 | /* |
| 484 | * Get the module handle which 'funcname' in 'hInst' is imported from. |
| 485 | */ |
| 486 | HINSTANCE |
| 487 | find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname) |
| 488 | { |
| 489 | char *modulename; |
| 490 | |
| 491 | modulename = (char *)get_imported_func_info(hInst, funcname, 1); |
| 492 | if (modulename != NULL) |
| 493 | return GetModuleHandleA(modulename); |
| 494 | return NULL; |
| 495 | } |
| 496 | |
| 497 | /* |
| 498 | * Get the address of 'funcname' which is imported by 'hInst' DLL. |
| 499 | */ |
| 500 | void * |
| 501 | get_dll_import_func(HINSTANCE hInst, const char *funcname) |
| 502 | { |
| 503 | return get_imported_func_info(hInst, funcname, 0); |
| 504 | } |
| 505 | #endif |
| 506 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 507 | #if defined(DYNAMIC_GETTEXT) || defined(PROTO) |
| 508 | # ifndef GETTEXT_DLL |
| 509 | # define GETTEXT_DLL "libintl.dll" |
Bram Moolenaar | 286eacd | 2016-01-16 18:05:50 +0100 | [diff] [blame] | 510 | # define GETTEXT_DLL_ALT "libintl-8.dll" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 511 | # endif |
Bram Moolenaar | f6a2b08 | 2012-06-29 13:14:03 +0200 | [diff] [blame] | 512 | /* Dummy functions */ |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 513 | static char *null_libintl_gettext(const char *); |
Bram Moolenaar | ee695f7 | 2016-08-03 22:08:45 +0200 | [diff] [blame] | 514 | static char *null_libintl_ngettext(const char *, const char *, unsigned long n); |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 515 | static char *null_libintl_textdomain(const char *); |
| 516 | static char *null_libintl_bindtextdomain(const char *, const char *); |
| 517 | static char *null_libintl_bind_textdomain_codeset(const char *, const char *); |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 518 | static int null_libintl_putenv(const char *); |
Bram Moolenaar | 7c23d1d | 2017-02-01 13:14:16 +0100 | [diff] [blame] | 519 | static int null_libintl_wputenv(const wchar_t *); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 520 | |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 521 | static HINSTANCE hLibintlDLL = NULL; |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 522 | char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext; |
Bram Moolenaar | ee695f7 | 2016-08-03 22:08:45 +0200 | [diff] [blame] | 523 | char *(*dyn_libintl_ngettext)(const char *, const char *, unsigned long n) |
| 524 | = null_libintl_ngettext; |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 525 | char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain; |
| 526 | char *(*dyn_libintl_bindtextdomain)(const char *, const char *) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 527 | = null_libintl_bindtextdomain; |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 528 | char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *) |
| 529 | = null_libintl_bind_textdomain_codeset; |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 530 | int (*dyn_libintl_putenv)(const char *) = null_libintl_putenv; |
Bram Moolenaar | 7c23d1d | 2017-02-01 13:14:16 +0100 | [diff] [blame] | 531 | int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 532 | |
| 533 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 534 | dyn_libintl_init(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 535 | { |
| 536 | int i; |
| 537 | static struct |
| 538 | { |
| 539 | char *name; |
| 540 | FARPROC *ptr; |
| 541 | } libintl_entry[] = |
| 542 | { |
| 543 | {"gettext", (FARPROC*)&dyn_libintl_gettext}, |
Bram Moolenaar | ee695f7 | 2016-08-03 22:08:45 +0200 | [diff] [blame] | 544 | {"ngettext", (FARPROC*)&dyn_libintl_ngettext}, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 545 | {"textdomain", (FARPROC*)&dyn_libintl_textdomain}, |
| 546 | {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain}, |
| 547 | {NULL, NULL} |
| 548 | }; |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 549 | HINSTANCE hmsvcrt; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 550 | |
| 551 | /* No need to initialize twice. */ |
| 552 | if (hLibintlDLL) |
| 553 | return 1; |
| 554 | /* Load gettext library (libintl.dll) */ |
Bram Moolenaar | 923e43b | 2016-01-28 15:07:38 +0100 | [diff] [blame] | 555 | hLibintlDLL = vimLoadLib(GETTEXT_DLL); |
Bram Moolenaar | 938ee83 | 2016-01-24 15:36:03 +0100 | [diff] [blame] | 556 | #ifdef GETTEXT_DLL_ALT |
Bram Moolenaar | 286eacd | 2016-01-16 18:05:50 +0100 | [diff] [blame] | 557 | if (!hLibintlDLL) |
| 558 | hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT); |
Bram Moolenaar | 938ee83 | 2016-01-24 15:36:03 +0100 | [diff] [blame] | 559 | #endif |
| 560 | if (!hLibintlDLL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 561 | { |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 562 | if (p_verbose > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 563 | { |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 564 | verbose_enter(); |
| 565 | EMSG2(_(e_loadlib), GETTEXT_DLL); |
| 566 | verbose_leave(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 567 | } |
Bram Moolenaar | ebbcb82 | 2010-10-23 14:02:54 +0200 | [diff] [blame] | 568 | return 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 569 | } |
| 570 | for (i = 0; libintl_entry[i].name != NULL |
| 571 | && libintl_entry[i].ptr != NULL; ++i) |
| 572 | { |
| 573 | if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL, |
| 574 | libintl_entry[i].name)) == NULL) |
| 575 | { |
| 576 | dyn_libintl_end(); |
| 577 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 578 | { |
| 579 | verbose_enter(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 580 | EMSG2(_(e_loadfunc), libintl_entry[i].name); |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 581 | verbose_leave(); |
| 582 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 583 | return 0; |
| 584 | } |
| 585 | } |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 586 | |
| 587 | /* The bind_textdomain_codeset() function is optional. */ |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 588 | dyn_libintl_bind_textdomain_codeset = (void *)GetProcAddress(hLibintlDLL, |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 589 | "bind_textdomain_codeset"); |
| 590 | if (dyn_libintl_bind_textdomain_codeset == NULL) |
| 591 | dyn_libintl_bind_textdomain_codeset = |
| 592 | null_libintl_bind_textdomain_codeset; |
| 593 | |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 594 | /* _putenv() function for the libintl.dll is optional. */ |
| 595 | hmsvcrt = find_imported_module_by_funcname(hLibintlDLL, "getenv"); |
| 596 | if (hmsvcrt != NULL) |
Bram Moolenaar | 7c23d1d | 2017-02-01 13:14:16 +0100 | [diff] [blame] | 597 | { |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 598 | dyn_libintl_putenv = (void *)GetProcAddress(hmsvcrt, "_putenv"); |
Bram Moolenaar | 7c23d1d | 2017-02-01 13:14:16 +0100 | [diff] [blame] | 599 | dyn_libintl_wputenv = (void *)GetProcAddress(hmsvcrt, "_wputenv"); |
| 600 | } |
| 601 | if (dyn_libintl_putenv == NULL || dyn_libintl_putenv == _putenv) |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 602 | dyn_libintl_putenv = null_libintl_putenv; |
Bram Moolenaar | 7c23d1d | 2017-02-01 13:14:16 +0100 | [diff] [blame] | 603 | if (dyn_libintl_wputenv == NULL || dyn_libintl_wputenv == _wputenv) |
| 604 | dyn_libintl_wputenv = null_libintl_wputenv; |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 605 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 606 | return 1; |
| 607 | } |
| 608 | |
| 609 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 610 | dyn_libintl_end(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 611 | { |
| 612 | if (hLibintlDLL) |
| 613 | FreeLibrary(hLibintlDLL); |
| 614 | hLibintlDLL = NULL; |
| 615 | dyn_libintl_gettext = null_libintl_gettext; |
Bram Moolenaar | ee695f7 | 2016-08-03 22:08:45 +0200 | [diff] [blame] | 616 | dyn_libintl_ngettext = null_libintl_ngettext; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 617 | dyn_libintl_textdomain = null_libintl_textdomain; |
| 618 | dyn_libintl_bindtextdomain = null_libintl_bindtextdomain; |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 619 | dyn_libintl_bind_textdomain_codeset = null_libintl_bind_textdomain_codeset; |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 620 | dyn_libintl_putenv = null_libintl_putenv; |
Bram Moolenaar | 7c23d1d | 2017-02-01 13:14:16 +0100 | [diff] [blame] | 621 | dyn_libintl_wputenv = null_libintl_wputenv; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | static char * |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 625 | null_libintl_gettext(const char *msgid) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 626 | { |
| 627 | return (char*)msgid; |
| 628 | } |
| 629 | |
| 630 | static char * |
Bram Moolenaar | ee695f7 | 2016-08-03 22:08:45 +0200 | [diff] [blame] | 631 | null_libintl_ngettext( |
| 632 | const char *msgid, |
| 633 | const char *msgid_plural, |
| 634 | unsigned long n) |
| 635 | { |
Bram Moolenaar | c90f2ae | 2016-08-04 22:00:15 +0200 | [diff] [blame] | 636 | return (char *)(n == 1 ? msgid : msgid_plural); |
Bram Moolenaar | ee695f7 | 2016-08-03 22:08:45 +0200 | [diff] [blame] | 637 | } |
| 638 | |
Bram Moolenaar | ee695f7 | 2016-08-03 22:08:45 +0200 | [diff] [blame] | 639 | static char * |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 640 | null_libintl_bindtextdomain( |
| 641 | const char *domainname UNUSED, |
| 642 | const char *dirname UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 643 | { |
| 644 | return NULL; |
| 645 | } |
| 646 | |
| 647 | static char * |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 648 | null_libintl_bind_textdomain_codeset( |
| 649 | const char *domainname UNUSED, |
| 650 | const char *codeset UNUSED) |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 651 | { |
| 652 | return NULL; |
| 653 | } |
| 654 | |
| 655 | static char * |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 656 | null_libintl_textdomain(const char *domainname UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 657 | { |
| 658 | return NULL; |
| 659 | } |
| 660 | |
Bram Moolenaar | e0ab979 | 2017-08-02 23:18:25 +0200 | [diff] [blame] | 661 | static int |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 662 | null_libintl_putenv(const char *envstring UNUSED) |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 663 | { |
| 664 | return 0; |
| 665 | } |
| 666 | |
Bram Moolenaar | e0ab979 | 2017-08-02 23:18:25 +0200 | [diff] [blame] | 667 | static int |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 668 | null_libintl_wputenv(const wchar_t *envstring UNUSED) |
Bram Moolenaar | 7c23d1d | 2017-02-01 13:14:16 +0100 | [diff] [blame] | 669 | { |
| 670 | return 0; |
| 671 | } |
| 672 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 673 | #endif /* DYNAMIC_GETTEXT */ |
| 674 | |
| 675 | /* This symbol is not defined in older versions of the SDK or Visual C++ */ |
| 676 | |
| 677 | #ifndef VER_PLATFORM_WIN32_WINDOWS |
| 678 | # define VER_PLATFORM_WIN32_WINDOWS 1 |
| 679 | #endif |
| 680 | |
| 681 | DWORD g_PlatformId; |
| 682 | |
| 683 | #ifdef HAVE_ACL |
Bram Moolenaar | 8288149 | 2012-11-20 16:53:39 +0100 | [diff] [blame] | 684 | # ifndef PROTO |
| 685 | # include <aclapi.h> |
| 686 | # endif |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 687 | # ifndef PROTECTED_DACL_SECURITY_INFORMATION |
| 688 | # define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L |
| 689 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 690 | #endif |
| 691 | |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 692 | #ifdef HAVE_ACL |
| 693 | /* |
| 694 | * Enables or disables the specified privilege. |
| 695 | */ |
| 696 | static BOOL |
| 697 | win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable) |
| 698 | { |
Bram Moolenaar | b0d5c96 | 2014-01-12 13:24:51 +0100 | [diff] [blame] | 699 | BOOL bResult; |
| 700 | LUID luid; |
| 701 | HANDLE hToken; |
| 702 | TOKEN_PRIVILEGES tokenPrivileges; |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 703 | |
| 704 | if (!OpenProcessToken(GetCurrentProcess(), |
| 705 | TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) |
| 706 | return FALSE; |
| 707 | |
| 708 | if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid)) |
| 709 | { |
| 710 | CloseHandle(hToken); |
| 711 | return FALSE; |
| 712 | } |
| 713 | |
Bram Moolenaar | 4550091 | 2014-07-09 20:51:07 +0200 | [diff] [blame] | 714 | tokenPrivileges.PrivilegeCount = 1; |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 715 | tokenPrivileges.Privileges[0].Luid = luid; |
| 716 | tokenPrivileges.Privileges[0].Attributes = bEnable ? |
| 717 | SE_PRIVILEGE_ENABLED : 0; |
| 718 | |
| 719 | bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges, |
| 720 | sizeof(TOKEN_PRIVILEGES), NULL, NULL); |
| 721 | |
| 722 | CloseHandle(hToken); |
| 723 | |
| 724 | return bResult && GetLastError() == ERROR_SUCCESS; |
| 725 | } |
| 726 | #endif |
| 727 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 728 | /* |
| 729 | * Set g_PlatformId to VER_PLATFORM_WIN32_NT (NT) or |
| 730 | * VER_PLATFORM_WIN32_WINDOWS (Win95). |
| 731 | */ |
| 732 | void |
| 733 | PlatformId(void) |
| 734 | { |
| 735 | static int done = FALSE; |
| 736 | |
| 737 | if (!done) |
| 738 | { |
| 739 | OSVERSIONINFO ovi; |
| 740 | |
| 741 | ovi.dwOSVersionInfoSize = sizeof(ovi); |
| 742 | GetVersionEx(&ovi); |
| 743 | |
| 744 | g_PlatformId = ovi.dwPlatformId; |
| 745 | |
Bram Moolenaar | f50eb78 | 2014-02-05 13:36:54 +0100 | [diff] [blame] | 746 | if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2) |
| 747 | || ovi.dwMajorVersion > 6) |
| 748 | win8_or_later = TRUE; |
| 749 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 750 | #ifdef HAVE_ACL |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 751 | /* Enable privilege for getting or setting SACLs. */ |
| 752 | win32_enable_privilege(SE_SECURITY_NAME, TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 753 | #endif |
| 754 | done = TRUE; |
| 755 | } |
| 756 | } |
| 757 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 758 | #ifndef FEAT_GUI_W32 |
| 759 | |
| 760 | #define SHIFT (SHIFT_PRESSED) |
| 761 | #define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED) |
| 762 | #define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED) |
| 763 | #define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED) |
| 764 | |
| 765 | |
| 766 | /* When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode. |
| 767 | * We map function keys to their ANSI terminal equivalents, as produced |
| 768 | * by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any |
| 769 | * ANSI key with a value >= '\300' is nonstandard, but provided anyway |
| 770 | * so that the user can have access to all SHIFT-, CTRL-, and ALT- |
| 771 | * combinations of function/arrow/etc keys. |
| 772 | */ |
| 773 | |
Bram Moolenaar | d6f676d | 2005-06-01 21:51:55 +0000 | [diff] [blame] | 774 | static const struct |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 775 | { |
| 776 | WORD wVirtKey; |
| 777 | BOOL fAnsiKey; |
| 778 | int chAlone; |
| 779 | int chShift; |
| 780 | int chCtrl; |
| 781 | int chAlt; |
| 782 | } VirtKeyMap[] = |
| 783 | { |
| 784 | |
| 785 | /* Key ANSI alone shift ctrl alt */ |
| 786 | { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, }, |
| 787 | |
| 788 | { VK_F1, TRUE, ';', 'T', '^', 'h', }, |
| 789 | { VK_F2, TRUE, '<', 'U', '_', 'i', }, |
| 790 | { VK_F3, TRUE, '=', 'V', '`', 'j', }, |
| 791 | { VK_F4, TRUE, '>', 'W', 'a', 'k', }, |
| 792 | { VK_F5, TRUE, '?', 'X', 'b', 'l', }, |
| 793 | { VK_F6, TRUE, '@', 'Y', 'c', 'm', }, |
| 794 | { VK_F7, TRUE, 'A', 'Z', 'd', 'n', }, |
| 795 | { VK_F8, TRUE, 'B', '[', 'e', 'o', }, |
| 796 | { VK_F9, TRUE, 'C', '\\', 'f', 'p', }, |
| 797 | { VK_F10, TRUE, 'D', ']', 'g', 'q', }, |
| 798 | { VK_F11, TRUE, '\205', '\207', '\211', '\213', }, |
| 799 | { VK_F12, TRUE, '\206', '\210', '\212', '\214', }, |
| 800 | |
| 801 | { VK_HOME, TRUE, 'G', '\302', 'w', '\303', }, |
| 802 | { VK_UP, TRUE, 'H', '\304', '\305', '\306', }, |
| 803 | { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, /*PgUp*/ |
| 804 | { VK_LEFT, TRUE, 'K', '\311', 's', '\312', }, |
| 805 | { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', }, |
| 806 | { VK_END, TRUE, 'O', '\315', 'u', '\316', }, |
| 807 | { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', }, |
| 808 | { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, /*PgDn*/ |
| 809 | { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', }, |
| 810 | { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', }, |
| 811 | |
| 812 | { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, /*PrtScrn*/ |
| 813 | |
| 814 | #if 0 |
| 815 | /* Most people don't have F13-F20, but what the hell... */ |
| 816 | { VK_F13, TRUE, '\332', '\333', '\334', '\335', }, |
| 817 | { VK_F14, TRUE, '\336', '\337', '\340', '\341', }, |
| 818 | { VK_F15, TRUE, '\342', '\343', '\344', '\345', }, |
| 819 | { VK_F16, TRUE, '\346', '\347', '\350', '\351', }, |
| 820 | { VK_F17, TRUE, '\352', '\353', '\354', '\355', }, |
| 821 | { VK_F18, TRUE, '\356', '\357', '\360', '\361', }, |
| 822 | { VK_F19, TRUE, '\362', '\363', '\364', '\365', }, |
| 823 | { VK_F20, TRUE, '\366', '\367', '\370', '\371', }, |
| 824 | #endif |
| 825 | { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, /* keyp '+' */ |
| 826 | { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, /* keyp '-' */ |
| 827 | /* { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, keyp '/' */ |
| 828 | { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, /* keyp '*' */ |
| 829 | |
| 830 | { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', }, |
| 831 | { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', }, |
| 832 | { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', }, |
| 833 | { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', }, |
| 834 | { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', }, |
| 835 | { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', }, |
| 836 | { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', }, |
| 837 | { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', }, |
| 838 | { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', }, |
| 839 | /* Sorry, out of number space! <negri>*/ |
| 840 | { VK_NUMPAD9,TRUE, '\376', '\377', '\377', '\367', }, |
| 841 | |
| 842 | }; |
| 843 | |
| 844 | |
| 845 | #ifdef _MSC_VER |
| 846 | // The ToAscii bug destroys several registers. Need to turn off optimization |
| 847 | // or the GetConsoleKeyboardLayoutName hack will fail in non-debug versions |
Bram Moolenaar | 7b5f832 | 2006-03-23 22:47:08 +0000 | [diff] [blame] | 848 | # pragma warning(push) |
| 849 | # pragma warning(disable: 4748) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 850 | # pragma optimize("", off) |
| 851 | #endif |
| 852 | |
| 853 | #if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__) |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 854 | # define UChar UnicodeChar |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 855 | #else |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 856 | # define UChar uChar.UnicodeChar |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 857 | #endif |
| 858 | |
| 859 | /* The return code indicates key code size. */ |
| 860 | static int |
| 861 | #ifdef __BORLANDC__ |
| 862 | __stdcall |
| 863 | #endif |
| 864 | win32_kbd_patch_key( |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 865 | KEY_EVENT_RECORD *pker) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 866 | { |
| 867 | UINT uMods = pker->dwControlKeyState; |
| 868 | static int s_iIsDead = 0; |
| 869 | static WORD awAnsiCode[2]; |
| 870 | static BYTE abKeystate[256]; |
| 871 | |
| 872 | |
| 873 | if (s_iIsDead == 2) |
| 874 | { |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 875 | pker->UChar = (WCHAR) awAnsiCode[1]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 876 | s_iIsDead = 0; |
| 877 | return 1; |
| 878 | } |
| 879 | |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 880 | if (pker->UChar != 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 881 | return 1; |
| 882 | |
Bram Moolenaar | 7db5fc8 | 2010-05-24 11:59:29 +0200 | [diff] [blame] | 883 | vim_memset(abKeystate, 0, sizeof (abKeystate)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 884 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 885 | /* Clear any pending dead keys */ |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 886 | ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 887 | |
| 888 | if (uMods & SHIFT_PRESSED) |
| 889 | abKeystate[VK_SHIFT] = 0x80; |
| 890 | if (uMods & CAPSLOCK_ON) |
| 891 | abKeystate[VK_CAPITAL] = 1; |
| 892 | |
| 893 | if ((uMods & ALT_GR) == ALT_GR) |
| 894 | { |
| 895 | abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] = |
| 896 | abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80; |
| 897 | } |
| 898 | |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 899 | s_iIsDead = ToUnicode(pker->wVirtualKeyCode, pker->wVirtualScanCode, |
| 900 | abKeystate, awAnsiCode, 2, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 901 | |
| 902 | if (s_iIsDead > 0) |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 903 | pker->UChar = (WCHAR) awAnsiCode[0]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 904 | |
| 905 | return s_iIsDead; |
| 906 | } |
| 907 | |
| 908 | #ifdef _MSC_VER |
| 909 | /* MUST switch optimization on again here, otherwise a call to |
| 910 | * decode_key_event() may crash (e.g. when hitting caps-lock) */ |
| 911 | # pragma optimize("", on) |
Bram Moolenaar | 7b5f832 | 2006-03-23 22:47:08 +0000 | [diff] [blame] | 912 | # pragma warning(pop) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 913 | |
| 914 | # if (_MSC_VER < 1100) |
| 915 | /* MUST turn off global optimisation for this next function, or |
| 916 | * pressing ctrl-minus in insert mode crashes Vim when built with |
| 917 | * VC4.1. -- negri. */ |
| 918 | # pragma optimize("g", off) |
| 919 | # endif |
| 920 | #endif |
| 921 | |
| 922 | static BOOL g_fJustGotFocus = FALSE; |
| 923 | |
| 924 | /* |
| 925 | * Decode a KEY_EVENT into one or two keystrokes |
| 926 | */ |
| 927 | static BOOL |
| 928 | decode_key_event( |
| 929 | KEY_EVENT_RECORD *pker, |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 930 | WCHAR *pch, |
| 931 | WCHAR *pch2, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 932 | int *pmodifiers, |
| 933 | BOOL fDoPost) |
| 934 | { |
| 935 | int i; |
| 936 | const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL); |
| 937 | |
| 938 | *pch = *pch2 = NUL; |
| 939 | g_fJustGotFocus = FALSE; |
| 940 | |
| 941 | /* ignore key up events */ |
| 942 | if (!pker->bKeyDown) |
| 943 | return FALSE; |
| 944 | |
| 945 | /* ignore some keystrokes */ |
| 946 | switch (pker->wVirtualKeyCode) |
| 947 | { |
| 948 | /* modifiers */ |
| 949 | case VK_SHIFT: |
| 950 | case VK_CONTROL: |
| 951 | case VK_MENU: /* Alt key */ |
| 952 | return FALSE; |
| 953 | |
| 954 | default: |
| 955 | break; |
| 956 | } |
| 957 | |
| 958 | /* special cases */ |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 959 | if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 960 | { |
| 961 | /* Ctrl-6 is Ctrl-^ */ |
| 962 | if (pker->wVirtualKeyCode == '6') |
| 963 | { |
| 964 | *pch = Ctrl_HAT; |
| 965 | return TRUE; |
| 966 | } |
| 967 | /* Ctrl-2 is Ctrl-@ */ |
| 968 | else if (pker->wVirtualKeyCode == '2') |
| 969 | { |
| 970 | *pch = NUL; |
| 971 | return TRUE; |
| 972 | } |
| 973 | /* Ctrl-- is Ctrl-_ */ |
| 974 | else if (pker->wVirtualKeyCode == 0xBD) |
| 975 | { |
| 976 | *pch = Ctrl__; |
| 977 | return TRUE; |
| 978 | } |
| 979 | } |
| 980 | |
| 981 | /* Shift-TAB */ |
| 982 | if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED)) |
| 983 | { |
| 984 | *pch = K_NUL; |
| 985 | *pch2 = '\017'; |
| 986 | return TRUE; |
| 987 | } |
| 988 | |
| 989 | for (i = sizeof(VirtKeyMap) / sizeof(VirtKeyMap[0]); --i >= 0; ) |
| 990 | { |
| 991 | if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode) |
| 992 | { |
| 993 | if (nModifs == 0) |
| 994 | *pch = VirtKeyMap[i].chAlone; |
| 995 | else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0) |
| 996 | *pch = VirtKeyMap[i].chShift; |
| 997 | else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0) |
| 998 | *pch = VirtKeyMap[i].chCtrl; |
| 999 | else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0) |
| 1000 | *pch = VirtKeyMap[i].chAlt; |
| 1001 | |
| 1002 | if (*pch != 0) |
| 1003 | { |
| 1004 | if (VirtKeyMap[i].fAnsiKey) |
| 1005 | { |
| 1006 | *pch2 = *pch; |
| 1007 | *pch = K_NUL; |
| 1008 | } |
| 1009 | |
| 1010 | return TRUE; |
| 1011 | } |
| 1012 | } |
| 1013 | } |
| 1014 | |
| 1015 | i = win32_kbd_patch_key(pker); |
| 1016 | |
| 1017 | if (i < 0) |
| 1018 | *pch = NUL; |
| 1019 | else |
| 1020 | { |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 1021 | *pch = (i > 0) ? pker->UChar : NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1022 | |
| 1023 | if (pmodifiers != NULL) |
| 1024 | { |
| 1025 | /* Pass on the ALT key as a modifier, but only when not combined |
| 1026 | * with CTRL (which is ALTGR). */ |
| 1027 | if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0) |
| 1028 | *pmodifiers |= MOD_MASK_ALT; |
| 1029 | |
| 1030 | /* Pass on SHIFT only for special keys, because we don't know when |
| 1031 | * it's already included with the character. */ |
| 1032 | if ((nModifs & SHIFT) != 0 && *pch <= 0x20) |
| 1033 | *pmodifiers |= MOD_MASK_SHIFT; |
| 1034 | |
| 1035 | /* Pass on CTRL only for non-special keys, because we don't know |
| 1036 | * when it's already included with the character. And not when |
| 1037 | * combined with ALT (which is ALTGR). */ |
| 1038 | if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0 |
| 1039 | && *pch >= 0x20 && *pch < 0x80) |
| 1040 | *pmodifiers |= MOD_MASK_CTRL; |
| 1041 | } |
| 1042 | } |
| 1043 | |
| 1044 | return (*pch != NUL); |
| 1045 | } |
| 1046 | |
| 1047 | #ifdef _MSC_VER |
| 1048 | # pragma optimize("", on) |
| 1049 | #endif |
| 1050 | |
| 1051 | #endif /* FEAT_GUI_W32 */ |
| 1052 | |
| 1053 | |
| 1054 | #ifdef FEAT_MOUSE |
| 1055 | |
| 1056 | /* |
| 1057 | * For the GUI the mouse handling is in gui_w32.c. |
| 1058 | */ |
| 1059 | # ifdef FEAT_GUI_W32 |
| 1060 | void |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 1061 | mch_setmouse(int on UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1062 | { |
| 1063 | } |
| 1064 | # else |
| 1065 | static int g_fMouseAvail = FALSE; /* mouse present */ |
| 1066 | static int g_fMouseActive = FALSE; /* mouse enabled */ |
| 1067 | static int g_nMouseClick = -1; /* mouse status */ |
| 1068 | static int g_xMouse; /* mouse x coordinate */ |
| 1069 | static int g_yMouse; /* mouse y coordinate */ |
| 1070 | |
| 1071 | /* |
| 1072 | * Enable or disable mouse input |
| 1073 | */ |
| 1074 | void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 1075 | mch_setmouse(int on) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1076 | { |
| 1077 | DWORD cmodein; |
| 1078 | |
| 1079 | if (!g_fMouseAvail) |
| 1080 | return; |
| 1081 | |
| 1082 | g_fMouseActive = on; |
| 1083 | GetConsoleMode(g_hConIn, &cmodein); |
| 1084 | |
| 1085 | if (g_fMouseActive) |
| 1086 | cmodein |= ENABLE_MOUSE_INPUT; |
| 1087 | else |
| 1088 | cmodein &= ~ENABLE_MOUSE_INPUT; |
| 1089 | |
| 1090 | SetConsoleMode(g_hConIn, cmodein); |
| 1091 | } |
| 1092 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1093 | /* |
| 1094 | * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT, |
| 1095 | * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse |
| 1096 | * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG |
| 1097 | * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type, |
| 1098 | * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick, |
| 1099 | * and we return the mouse position in g_xMouse and g_yMouse. |
| 1100 | * |
| 1101 | * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more |
| 1102 | * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only |
| 1103 | * by MOUSE_LEFT, _MIDDLE, or _RIGHT. |
| 1104 | * |
| 1105 | * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE, |
| 1106 | * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, .... |
| 1107 | * |
| 1108 | * Windows will send us MOUSE_MOVED notifications whenever the mouse |
| 1109 | * moves, even if it stays within the same character cell. We ignore |
| 1110 | * all MOUSE_MOVED messages if the position hasn't really changed, and |
| 1111 | * we ignore all MOUSE_MOVED messages where no button is held down (i.e., |
| 1112 | * we're only interested in MOUSE_DRAG). |
| 1113 | * |
| 1114 | * All of this is complicated by the code that fakes MOUSE_MIDDLE on |
| 1115 | * 2-button mouses by pressing the left & right buttons simultaneously. |
| 1116 | * In practice, it's almost impossible to click both at the same time, |
| 1117 | * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE |
| 1118 | * in such cases, if the user is clicking quickly. |
| 1119 | */ |
| 1120 | static BOOL |
| 1121 | decode_mouse_event( |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 1122 | MOUSE_EVENT_RECORD *pmer) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1123 | { |
| 1124 | static int s_nOldButton = -1; |
| 1125 | static int s_nOldMouseClick = -1; |
| 1126 | static int s_xOldMouse = -1; |
| 1127 | static int s_yOldMouse = -1; |
| 1128 | static linenr_T s_old_topline = 0; |
| 1129 | #ifdef FEAT_DIFF |
| 1130 | static int s_old_topfill = 0; |
| 1131 | #endif |
| 1132 | static int s_cClicks = 1; |
| 1133 | static BOOL s_fReleased = TRUE; |
| 1134 | static DWORD s_dwLastClickTime = 0; |
| 1135 | static BOOL s_fNextIsMiddle = FALSE; |
| 1136 | |
| 1137 | static DWORD cButtons = 0; /* number of buttons supported */ |
| 1138 | |
| 1139 | const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED; |
| 1140 | const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED; |
| 1141 | const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED; |
| 1142 | const DWORD LEFT_RIGHT = LEFT | RIGHT; |
| 1143 | |
| 1144 | int nButton; |
| 1145 | |
| 1146 | if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons)) |
| 1147 | cButtons = 2; |
| 1148 | |
| 1149 | if (!g_fMouseAvail || !g_fMouseActive) |
| 1150 | { |
| 1151 | g_nMouseClick = -1; |
| 1152 | return FALSE; |
| 1153 | } |
| 1154 | |
| 1155 | /* get a spurious MOUSE_EVENT immediately after receiving focus; ignore */ |
| 1156 | if (g_fJustGotFocus) |
| 1157 | { |
| 1158 | g_fJustGotFocus = FALSE; |
| 1159 | return FALSE; |
| 1160 | } |
| 1161 | |
| 1162 | /* unprocessed mouse click? */ |
| 1163 | if (g_nMouseClick != -1) |
| 1164 | return TRUE; |
| 1165 | |
| 1166 | nButton = -1; |
| 1167 | g_xMouse = pmer->dwMousePosition.X; |
| 1168 | g_yMouse = pmer->dwMousePosition.Y; |
| 1169 | |
| 1170 | if (pmer->dwEventFlags == MOUSE_MOVED) |
| 1171 | { |
| 1172 | /* ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these |
| 1173 | * events even when the mouse moves only within a char cell.) */ |
| 1174 | if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse) |
| 1175 | return FALSE; |
| 1176 | } |
| 1177 | |
| 1178 | /* If no buttons are pressed... */ |
| 1179 | if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0) |
| 1180 | { |
| 1181 | /* If the last thing returned was MOUSE_RELEASE, ignore this */ |
| 1182 | if (s_fReleased) |
| 1183 | return FALSE; |
| 1184 | |
| 1185 | nButton = MOUSE_RELEASE; |
| 1186 | s_fReleased = TRUE; |
| 1187 | } |
| 1188 | else /* one or more buttons pressed */ |
| 1189 | { |
| 1190 | /* on a 2-button mouse, hold down left and right buttons |
| 1191 | * simultaneously to get MIDDLE. */ |
| 1192 | |
| 1193 | if (cButtons == 2 && s_nOldButton != MOUSE_DRAG) |
| 1194 | { |
| 1195 | DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT); |
| 1196 | |
| 1197 | /* if either left or right button only is pressed, see if the |
Bram Moolenaar | 84a05ac | 2013-05-06 04:24:17 +0200 | [diff] [blame] | 1198 | * next mouse event has both of them pressed */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1199 | if (dwLR == LEFT || dwLR == RIGHT) |
| 1200 | { |
| 1201 | for (;;) |
| 1202 | { |
| 1203 | /* wait a short time for next input event */ |
| 1204 | if (WaitForSingleObject(g_hConIn, p_mouset / 3) |
| 1205 | != WAIT_OBJECT_0) |
| 1206 | break; |
| 1207 | else |
| 1208 | { |
| 1209 | DWORD cRecords = 0; |
| 1210 | INPUT_RECORD ir; |
| 1211 | MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent; |
| 1212 | |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 1213 | peek_console_input(g_hConIn, &ir, 1, &cRecords); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1214 | |
| 1215 | if (cRecords == 0 || ir.EventType != MOUSE_EVENT |
| 1216 | || !(pmer2->dwButtonState & LEFT_RIGHT)) |
| 1217 | break; |
| 1218 | else |
| 1219 | { |
| 1220 | if (pmer2->dwEventFlags != MOUSE_MOVED) |
| 1221 | { |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 1222 | read_console_input(g_hConIn, &ir, 1, &cRecords); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1223 | |
| 1224 | return decode_mouse_event(pmer2); |
| 1225 | } |
| 1226 | else if (s_xOldMouse == pmer2->dwMousePosition.X && |
| 1227 | s_yOldMouse == pmer2->dwMousePosition.Y) |
| 1228 | { |
| 1229 | /* throw away spurious mouse move */ |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 1230 | read_console_input(g_hConIn, &ir, 1, &cRecords); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1231 | |
| 1232 | /* are there any more mouse events in queue? */ |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 1233 | peek_console_input(g_hConIn, &ir, 1, &cRecords); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1234 | |
| 1235 | if (cRecords==0 || ir.EventType != MOUSE_EVENT) |
| 1236 | break; |
| 1237 | } |
| 1238 | else |
| 1239 | break; |
| 1240 | } |
| 1241 | } |
| 1242 | } |
| 1243 | } |
| 1244 | } |
| 1245 | |
| 1246 | if (s_fNextIsMiddle) |
| 1247 | { |
| 1248 | nButton = (pmer->dwEventFlags == MOUSE_MOVED) |
| 1249 | ? MOUSE_DRAG : MOUSE_MIDDLE; |
| 1250 | s_fNextIsMiddle = FALSE; |
| 1251 | } |
| 1252 | else if (cButtons == 2 && |
| 1253 | ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT)) |
| 1254 | { |
| 1255 | nButton = MOUSE_MIDDLE; |
| 1256 | |
| 1257 | if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED) |
| 1258 | { |
| 1259 | s_fNextIsMiddle = TRUE; |
| 1260 | nButton = MOUSE_RELEASE; |
| 1261 | } |
| 1262 | } |
| 1263 | else if ((pmer->dwButtonState & LEFT) == LEFT) |
| 1264 | nButton = MOUSE_LEFT; |
| 1265 | else if ((pmer->dwButtonState & MIDDLE) == MIDDLE) |
| 1266 | nButton = MOUSE_MIDDLE; |
| 1267 | else if ((pmer->dwButtonState & RIGHT) == RIGHT) |
| 1268 | nButton = MOUSE_RIGHT; |
| 1269 | |
| 1270 | if (! s_fReleased && ! s_fNextIsMiddle |
| 1271 | && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG) |
| 1272 | return FALSE; |
| 1273 | |
| 1274 | s_fReleased = s_fNextIsMiddle; |
| 1275 | } |
| 1276 | |
| 1277 | if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK) |
| 1278 | { |
| 1279 | /* button pressed or released, without mouse moving */ |
| 1280 | if (nButton != -1 && nButton != MOUSE_RELEASE) |
| 1281 | { |
| 1282 | DWORD dwCurrentTime = GetTickCount(); |
| 1283 | |
| 1284 | if (s_xOldMouse != g_xMouse |
| 1285 | || s_yOldMouse != g_yMouse |
| 1286 | || s_nOldButton != nButton |
| 1287 | || s_old_topline != curwin->w_topline |
| 1288 | #ifdef FEAT_DIFF |
| 1289 | || s_old_topfill != curwin->w_topfill |
| 1290 | #endif |
| 1291 | || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset) |
| 1292 | { |
| 1293 | s_cClicks = 1; |
| 1294 | } |
| 1295 | else if (++s_cClicks > 4) |
| 1296 | { |
| 1297 | s_cClicks = 1; |
| 1298 | } |
| 1299 | |
| 1300 | s_dwLastClickTime = dwCurrentTime; |
| 1301 | } |
| 1302 | } |
| 1303 | else if (pmer->dwEventFlags == MOUSE_MOVED) |
| 1304 | { |
| 1305 | if (nButton != -1 && nButton != MOUSE_RELEASE) |
| 1306 | nButton = MOUSE_DRAG; |
| 1307 | |
| 1308 | s_cClicks = 1; |
| 1309 | } |
| 1310 | |
| 1311 | if (nButton == -1) |
| 1312 | return FALSE; |
| 1313 | |
| 1314 | if (nButton != MOUSE_RELEASE) |
| 1315 | s_nOldButton = nButton; |
| 1316 | |
| 1317 | g_nMouseClick = nButton; |
| 1318 | |
| 1319 | if (pmer->dwControlKeyState & SHIFT_PRESSED) |
| 1320 | g_nMouseClick |= MOUSE_SHIFT; |
| 1321 | if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)) |
| 1322 | g_nMouseClick |= MOUSE_CTRL; |
| 1323 | if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)) |
| 1324 | g_nMouseClick |= MOUSE_ALT; |
| 1325 | |
| 1326 | if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE) |
| 1327 | SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks); |
| 1328 | |
| 1329 | /* only pass on interesting (i.e., different) mouse events */ |
| 1330 | if (s_xOldMouse == g_xMouse |
| 1331 | && s_yOldMouse == g_yMouse |
| 1332 | && s_nOldMouseClick == g_nMouseClick) |
| 1333 | { |
| 1334 | g_nMouseClick = -1; |
| 1335 | return FALSE; |
| 1336 | } |
| 1337 | |
| 1338 | s_xOldMouse = g_xMouse; |
| 1339 | s_yOldMouse = g_yMouse; |
| 1340 | s_old_topline = curwin->w_topline; |
| 1341 | #ifdef FEAT_DIFF |
| 1342 | s_old_topfill = curwin->w_topfill; |
| 1343 | #endif |
| 1344 | s_nOldMouseClick = g_nMouseClick; |
| 1345 | |
| 1346 | return TRUE; |
| 1347 | } |
| 1348 | |
| 1349 | # endif /* FEAT_GUI_W32 */ |
| 1350 | #endif /* FEAT_MOUSE */ |
| 1351 | |
| 1352 | |
| 1353 | #ifdef MCH_CURSOR_SHAPE |
| 1354 | /* |
| 1355 | * Set the shape of the cursor. |
| 1356 | * 'thickness' can be from 1 (thin) to 99 (block) |
| 1357 | */ |
| 1358 | static void |
| 1359 | mch_set_cursor_shape(int thickness) |
| 1360 | { |
| 1361 | CONSOLE_CURSOR_INFO ConsoleCursorInfo; |
| 1362 | ConsoleCursorInfo.dwSize = thickness; |
| 1363 | ConsoleCursorInfo.bVisible = s_cursor_visible; |
| 1364 | |
| 1365 | SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo); |
| 1366 | if (s_cursor_visible) |
| 1367 | SetConsoleCursorPosition(g_hConOut, g_coord); |
| 1368 | } |
| 1369 | |
| 1370 | void |
| 1371 | mch_update_cursor(void) |
| 1372 | { |
| 1373 | int idx; |
| 1374 | int thickness; |
| 1375 | |
| 1376 | /* |
| 1377 | * How the cursor is drawn depends on the current mode. |
| 1378 | */ |
| 1379 | idx = get_shape_idx(FALSE); |
| 1380 | |
| 1381 | if (shape_table[idx].shape == SHAPE_BLOCK) |
| 1382 | thickness = 99; /* 100 doesn't work on W95 */ |
| 1383 | else |
| 1384 | thickness = shape_table[idx].percentage; |
| 1385 | mch_set_cursor_shape(thickness); |
| 1386 | } |
| 1387 | #endif |
| 1388 | |
| 1389 | #ifndef FEAT_GUI_W32 /* this isn't used for the GUI */ |
| 1390 | /* |
| 1391 | * Handle FOCUS_EVENT. |
| 1392 | */ |
| 1393 | static void |
| 1394 | handle_focus_event(INPUT_RECORD ir) |
| 1395 | { |
| 1396 | g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus; |
| 1397 | ui_focus_change((int)g_fJustGotFocus); |
| 1398 | } |
| 1399 | |
| 1400 | /* |
| 1401 | * Wait until console input from keyboard or mouse is available, |
| 1402 | * or the time is up. |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 1403 | * When "ignore_input" is TRUE even wait when input is available. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1404 | * Return TRUE if something is available FALSE if not. |
| 1405 | */ |
| 1406 | static int |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 1407 | WaitForChar(long msec, int ignore_input) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1408 | { |
| 1409 | DWORD dwNow = 0, dwEndTime = 0; |
| 1410 | INPUT_RECORD ir; |
| 1411 | DWORD cRecords; |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 1412 | WCHAR ch, ch2; |
Bram Moolenaar | 4445f7e | 2016-04-20 20:55:56 +0200 | [diff] [blame] | 1413 | #ifdef FEAT_TIMERS |
Bram Moolenaar | 40b1b54 | 2016-04-20 20:18:23 +0200 | [diff] [blame] | 1414 | int tb_change_cnt = typebuf.tb_change_cnt; |
Bram Moolenaar | 4445f7e | 2016-04-20 20:55:56 +0200 | [diff] [blame] | 1415 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1416 | |
| 1417 | if (msec > 0) |
| 1418 | /* Wait until the specified time has elapsed. */ |
| 1419 | dwEndTime = GetTickCount() + msec; |
| 1420 | else if (msec < 0) |
| 1421 | /* Wait forever. */ |
| 1422 | dwEndTime = INFINITE; |
| 1423 | |
| 1424 | /* We need to loop until the end of the time period, because |
| 1425 | * we might get multiple unusable mouse events in that time. |
| 1426 | */ |
| 1427 | for (;;) |
| 1428 | { |
Bram Moolenaar | ca568ae | 2016-02-01 21:32:58 +0100 | [diff] [blame] | 1429 | #ifdef MESSAGE_QUEUE |
| 1430 | parse_queued_messages(); |
| 1431 | #endif |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1432 | #ifdef FEAT_MZSCHEME |
| 1433 | mzvim_check_threads(); |
| 1434 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1435 | #ifdef FEAT_CLIENTSERVER |
| 1436 | serverProcessPendingMessages(); |
| 1437 | #endif |
Bram Moolenaar | f12d983 | 2016-01-29 21:11:25 +0100 | [diff] [blame] | 1438 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1439 | if (0 |
| 1440 | #ifdef FEAT_MOUSE |
| 1441 | || g_nMouseClick != -1 |
| 1442 | #endif |
| 1443 | #ifdef FEAT_CLIENTSERVER |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 1444 | || (!ignore_input && input_available()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1445 | #endif |
| 1446 | ) |
| 1447 | return TRUE; |
| 1448 | |
| 1449 | if (msec > 0) |
| 1450 | { |
Bram Moolenaar | b7512b7 | 2013-08-10 12:45:09 +0200 | [diff] [blame] | 1451 | /* If the specified wait time has passed, return. Beware that |
| 1452 | * GetTickCount() may wrap around (overflow). */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1453 | dwNow = GetTickCount(); |
Bram Moolenaar | b7512b7 | 2013-08-10 12:45:09 +0200 | [diff] [blame] | 1454 | if ((int)(dwNow - dwEndTime) >= 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1455 | break; |
| 1456 | } |
| 1457 | if (msec != 0) |
| 1458 | { |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1459 | DWORD dwWaitTime = dwEndTime - dwNow; |
| 1460 | |
Bram Moolenaar | 509ce2a | 2016-03-11 22:52:15 +0100 | [diff] [blame] | 1461 | #ifdef FEAT_JOB_CHANNEL |
Bram Moolenaar | 8a8199e | 2016-11-26 15:13:33 +0100 | [diff] [blame] | 1462 | /* Check channel while waiting for input. */ |
Bram Moolenaar | 9186a27 | 2016-02-23 19:34:01 +0100 | [diff] [blame] | 1463 | if (dwWaitTime > 100) |
Bram Moolenaar | 8a8199e | 2016-11-26 15:13:33 +0100 | [diff] [blame] | 1464 | { |
Bram Moolenaar | 9186a27 | 2016-02-23 19:34:01 +0100 | [diff] [blame] | 1465 | dwWaitTime = 100; |
Bram Moolenaar | 8a8199e | 2016-11-26 15:13:33 +0100 | [diff] [blame] | 1466 | /* If there is readahead then parse_queued_messages() timed out |
| 1467 | * and we should call it again soon. */ |
| 1468 | if (channel_any_readahead()) |
| 1469 | dwWaitTime = 10; |
| 1470 | } |
Bram Moolenaar | 9186a27 | 2016-02-23 19:34:01 +0100 | [diff] [blame] | 1471 | #endif |
Bram Moolenaar | 59716a2 | 2017-03-01 20:32:44 +0100 | [diff] [blame] | 1472 | #ifdef FEAT_BEVAL |
| 1473 | if (p_beval && dwWaitTime > 100) |
| 1474 | /* The 'balloonexpr' may indirectly invoke a callback while |
| 1475 | * waiting for a character, need to check often. */ |
| 1476 | dwWaitTime = 100; |
| 1477 | #endif |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1478 | #ifdef FEAT_MZSCHEME |
| 1479 | if (mzthreads_allowed() && p_mzq > 0 |
| 1480 | && (msec < 0 || (long)dwWaitTime > p_mzq)) |
| 1481 | dwWaitTime = p_mzq; /* don't wait longer than 'mzquantum' */ |
| 1482 | #endif |
Bram Moolenaar | 0e0b3dd | 2016-03-17 17:58:56 +0100 | [diff] [blame] | 1483 | #ifdef FEAT_TIMERS |
| 1484 | { |
| 1485 | long due_time; |
| 1486 | |
| 1487 | /* When waiting very briefly don't trigger timers. */ |
| 1488 | if (dwWaitTime > 10) |
| 1489 | { |
| 1490 | /* Trigger timers and then get the time in msec until the |
| 1491 | * next one is due. Wait up to that time. */ |
| 1492 | due_time = check_due_timer(); |
Bram Moolenaar | 40b1b54 | 2016-04-20 20:18:23 +0200 | [diff] [blame] | 1493 | if (typebuf.tb_change_cnt != tb_change_cnt) |
| 1494 | { |
| 1495 | /* timer may have used feedkeys() */ |
| 1496 | return FALSE; |
| 1497 | } |
Bram Moolenaar | 0e0b3dd | 2016-03-17 17:58:56 +0100 | [diff] [blame] | 1498 | if (due_time > 0 && dwWaitTime > (DWORD)due_time) |
| 1499 | dwWaitTime = due_time; |
| 1500 | } |
| 1501 | } |
| 1502 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1503 | #ifdef FEAT_CLIENTSERVER |
| 1504 | /* Wait for either an event on the console input or a message in |
| 1505 | * the client-server window. */ |
Bram Moolenaar | bb86ebb | 2015-08-04 19:27:05 +0200 | [diff] [blame] | 1506 | if (msg_wait_for_multiple_objects(1, &g_hConIn, FALSE, |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 1507 | dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1508 | #else |
Bram Moolenaar | bb86ebb | 2015-08-04 19:27:05 +0200 | [diff] [blame] | 1509 | if (wait_for_single_object(g_hConIn, dwWaitTime) != WAIT_OBJECT_0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1510 | #endif |
| 1511 | continue; |
| 1512 | } |
| 1513 | |
| 1514 | cRecords = 0; |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 1515 | peek_console_input(g_hConIn, &ir, 1, &cRecords); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1516 | |
| 1517 | #ifdef FEAT_MBYTE_IME |
| 1518 | if (State & CMDLINE && msg_row == Rows - 1) |
| 1519 | { |
| 1520 | CONSOLE_SCREEN_BUFFER_INFO csbi; |
| 1521 | |
| 1522 | if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) |
| 1523 | { |
| 1524 | if (csbi.dwCursorPosition.Y != msg_row) |
| 1525 | { |
| 1526 | /* The screen is now messed up, must redraw the |
| 1527 | * command line and later all the windows. */ |
| 1528 | redraw_all_later(CLEAR); |
| 1529 | cmdline_row -= (msg_row - csbi.dwCursorPosition.Y); |
| 1530 | redrawcmd(); |
| 1531 | } |
| 1532 | } |
| 1533 | } |
| 1534 | #endif |
| 1535 | |
| 1536 | if (cRecords > 0) |
| 1537 | { |
| 1538 | if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown) |
| 1539 | { |
| 1540 | #ifdef FEAT_MBYTE_IME |
| 1541 | /* Windows IME sends two '\n's with only one 'ENTER'. First: |
| 1542 | * wVirtualKeyCode == 13. second: wVirtualKeyCode == 0 */ |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 1543 | if (ir.Event.KeyEvent.UChar == 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1544 | && ir.Event.KeyEvent.wVirtualKeyCode == 13) |
| 1545 | { |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 1546 | read_console_input(g_hConIn, &ir, 1, &cRecords); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1547 | continue; |
| 1548 | } |
| 1549 | #endif |
| 1550 | if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2, |
| 1551 | NULL, FALSE)) |
| 1552 | return TRUE; |
| 1553 | } |
| 1554 | |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 1555 | read_console_input(g_hConIn, &ir, 1, &cRecords); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1556 | |
| 1557 | if (ir.EventType == FOCUS_EVENT) |
| 1558 | handle_focus_event(ir); |
| 1559 | else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT) |
| 1560 | shell_resized(); |
| 1561 | #ifdef FEAT_MOUSE |
| 1562 | else if (ir.EventType == MOUSE_EVENT |
| 1563 | && decode_mouse_event(&ir.Event.MouseEvent)) |
| 1564 | return TRUE; |
| 1565 | #endif |
| 1566 | } |
| 1567 | else if (msec == 0) |
| 1568 | break; |
| 1569 | } |
| 1570 | |
| 1571 | #ifdef FEAT_CLIENTSERVER |
| 1572 | /* Something might have been received while we were waiting. */ |
| 1573 | if (input_available()) |
| 1574 | return TRUE; |
| 1575 | #endif |
Bram Moolenaar | f12d983 | 2016-01-29 21:11:25 +0100 | [diff] [blame] | 1576 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1577 | return FALSE; |
| 1578 | } |
| 1579 | |
| 1580 | #ifndef FEAT_GUI_MSWIN |
| 1581 | /* |
| 1582 | * return non-zero if a character is available |
| 1583 | */ |
| 1584 | int |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 1585 | mch_char_avail(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1586 | { |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 1587 | return WaitForChar(0L, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1588 | } |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 1589 | |
| 1590 | # if defined(FEAT_TERMINAL) || defined(PROTO) |
| 1591 | /* |
| 1592 | * Check for any pending input or messages. |
| 1593 | */ |
| 1594 | int |
| 1595 | mch_check_messages(void) |
| 1596 | { |
| 1597 | return WaitForChar(0L, TRUE); |
| 1598 | } |
| 1599 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1600 | #endif |
| 1601 | |
| 1602 | /* |
| 1603 | * Create the console input. Used when reading stdin doesn't work. |
| 1604 | */ |
| 1605 | static void |
| 1606 | create_conin(void) |
| 1607 | { |
| 1608 | g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE, |
| 1609 | FILE_SHARE_READ|FILE_SHARE_WRITE, |
| 1610 | (LPSECURITY_ATTRIBUTES) NULL, |
Bram Moolenaar | eb3593b | 2006-04-22 22:33:57 +0000 | [diff] [blame] | 1611 | OPEN_EXISTING, 0, (HANDLE)NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1612 | did_create_conin = TRUE; |
| 1613 | } |
| 1614 | |
| 1615 | /* |
Bram Moolenaar | 0e0b3dd | 2016-03-17 17:58:56 +0100 | [diff] [blame] | 1616 | * Get a keystroke or a mouse event, use a blocking wait. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1617 | */ |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 1618 | static WCHAR |
| 1619 | tgetch(int *pmodifiers, WCHAR *pch2) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1620 | { |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 1621 | WCHAR ch; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1622 | |
| 1623 | for (;;) |
| 1624 | { |
| 1625 | INPUT_RECORD ir; |
| 1626 | DWORD cRecords = 0; |
| 1627 | |
| 1628 | #ifdef FEAT_CLIENTSERVER |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 1629 | (void)WaitForChar(-1L, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1630 | if (input_available()) |
| 1631 | return 0; |
| 1632 | # ifdef FEAT_MOUSE |
| 1633 | if (g_nMouseClick != -1) |
| 1634 | return 0; |
| 1635 | # endif |
| 1636 | #endif |
Bram Moolenaar | 3a69e11 | 2014-01-10 13:51:42 +0100 | [diff] [blame] | 1637 | if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1638 | { |
| 1639 | if (did_create_conin) |
| 1640 | read_error_exit(); |
| 1641 | create_conin(); |
| 1642 | continue; |
| 1643 | } |
| 1644 | |
| 1645 | if (ir.EventType == KEY_EVENT) |
| 1646 | { |
| 1647 | if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2, |
| 1648 | pmodifiers, TRUE)) |
| 1649 | return ch; |
| 1650 | } |
| 1651 | else if (ir.EventType == FOCUS_EVENT) |
| 1652 | handle_focus_event(ir); |
| 1653 | else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT) |
| 1654 | shell_resized(); |
| 1655 | #ifdef FEAT_MOUSE |
| 1656 | else if (ir.EventType == MOUSE_EVENT) |
| 1657 | { |
| 1658 | if (decode_mouse_event(&ir.Event.MouseEvent)) |
| 1659 | return 0; |
| 1660 | } |
| 1661 | #endif |
| 1662 | } |
| 1663 | } |
| 1664 | #endif /* !FEAT_GUI_W32 */ |
| 1665 | |
| 1666 | |
| 1667 | /* |
Bram Moolenaar | f6a2b08 | 2012-06-29 13:14:03 +0200 | [diff] [blame] | 1668 | * mch_inchar(): low-level input function. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1669 | * Get one or more characters from the keyboard or the mouse. |
| 1670 | * If time == 0, do not wait for characters. |
| 1671 | * If time == n, wait a short time for characters. |
| 1672 | * If time == -1, wait forever for characters. |
| 1673 | * Returns the number of characters read into buf. |
| 1674 | */ |
| 1675 | int |
| 1676 | mch_inchar( |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 1677 | char_u *buf UNUSED, |
| 1678 | int maxlen UNUSED, |
| 1679 | long time UNUSED, |
| 1680 | int tb_change_cnt UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1681 | { |
| 1682 | #ifndef FEAT_GUI_W32 /* this isn't used for the GUI */ |
| 1683 | |
| 1684 | int len; |
| 1685 | int c; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1686 | #define TYPEAHEADLEN 20 |
| 1687 | static char_u typeahead[TYPEAHEADLEN]; /* previously typed bytes. */ |
| 1688 | static int typeaheadlen = 0; |
| 1689 | |
| 1690 | /* First use any typeahead that was kept because "buf" was too small. */ |
| 1691 | if (typeaheadlen > 0) |
| 1692 | goto theend; |
| 1693 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1694 | if (time >= 0) |
| 1695 | { |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 1696 | if (!WaitForChar(time, FALSE)) /* no character available */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1697 | return 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1698 | } |
| 1699 | else /* time == -1, wait forever */ |
| 1700 | { |
| 1701 | mch_set_winsize_now(); /* Allow winsize changes from now on */ |
| 1702 | |
Bram Moolenaar | 3918c95 | 2005-03-15 22:34:55 +0000 | [diff] [blame] | 1703 | /* |
| 1704 | * If there is no character available within 2 seconds (default) |
| 1705 | * write the autoscript file to disk. Or cause the CursorHold event |
| 1706 | * to be triggered. |
| 1707 | */ |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 1708 | if (!WaitForChar(p_ut, FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1709 | { |
| 1710 | #ifdef FEAT_AUTOCMD |
Bram Moolenaar | d35f971 | 2005-12-18 22:02:33 +0000 | [diff] [blame] | 1711 | if (trigger_cursorhold() && maxlen >= 3) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1712 | { |
Bram Moolenaar | 3918c95 | 2005-03-15 22:34:55 +0000 | [diff] [blame] | 1713 | buf[0] = K_SPECIAL; |
| 1714 | buf[1] = KS_EXTRA; |
| 1715 | buf[2] = (int)KE_CURSORHOLD; |
| 1716 | return 3; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1717 | } |
| 1718 | #endif |
Bram Moolenaar | 702517d | 2005-06-27 22:34:07 +0000 | [diff] [blame] | 1719 | before_blocking(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1720 | } |
| 1721 | } |
| 1722 | |
| 1723 | /* |
| 1724 | * Try to read as many characters as there are, until the buffer is full. |
| 1725 | */ |
| 1726 | |
| 1727 | /* we will get at least one key. Get more if they are available. */ |
| 1728 | g_fCBrkPressed = FALSE; |
| 1729 | |
| 1730 | #ifdef MCH_WRITE_DUMP |
| 1731 | if (fdDump) |
| 1732 | fputc('[', fdDump); |
| 1733 | #endif |
| 1734 | |
| 1735 | /* Keep looping until there is something in the typeahead buffer and more |
| 1736 | * to get and still room in the buffer (up to two bytes for a char and |
| 1737 | * three bytes for a modifier). */ |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 1738 | while ((typeaheadlen == 0 || WaitForChar(0L, FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1739 | && typeaheadlen + 5 <= TYPEAHEADLEN) |
| 1740 | { |
| 1741 | if (typebuf_changed(tb_change_cnt)) |
| 1742 | { |
| 1743 | /* "buf" may be invalid now if a client put something in the |
| 1744 | * typeahead buffer and "buf" is in the typeahead buffer. */ |
| 1745 | typeaheadlen = 0; |
| 1746 | break; |
| 1747 | } |
| 1748 | #ifdef FEAT_MOUSE |
| 1749 | if (g_nMouseClick != -1) |
| 1750 | { |
| 1751 | # ifdef MCH_WRITE_DUMP |
| 1752 | if (fdDump) |
| 1753 | fprintf(fdDump, "{%02x @ %d, %d}", |
| 1754 | g_nMouseClick, g_xMouse, g_yMouse); |
| 1755 | # endif |
| 1756 | typeahead[typeaheadlen++] = ESC + 128; |
| 1757 | typeahead[typeaheadlen++] = 'M'; |
| 1758 | typeahead[typeaheadlen++] = g_nMouseClick; |
| 1759 | typeahead[typeaheadlen++] = g_xMouse + '!'; |
| 1760 | typeahead[typeaheadlen++] = g_yMouse + '!'; |
| 1761 | g_nMouseClick = -1; |
| 1762 | } |
| 1763 | else |
| 1764 | #endif |
| 1765 | { |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 1766 | WCHAR ch2 = NUL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1767 | int modifiers = 0; |
| 1768 | |
| 1769 | c = tgetch(&modifiers, &ch2); |
| 1770 | |
| 1771 | if (typebuf_changed(tb_change_cnt)) |
| 1772 | { |
| 1773 | /* "buf" may be invalid now if a client put something in the |
| 1774 | * typeahead buffer and "buf" is in the typeahead buffer. */ |
| 1775 | typeaheadlen = 0; |
| 1776 | break; |
| 1777 | } |
| 1778 | |
| 1779 | if (c == Ctrl_C && ctrl_c_interrupts) |
| 1780 | { |
| 1781 | #if defined(FEAT_CLIENTSERVER) |
| 1782 | trash_input_buf(); |
| 1783 | #endif |
| 1784 | got_int = TRUE; |
| 1785 | } |
| 1786 | |
| 1787 | #ifdef FEAT_MOUSE |
| 1788 | if (g_nMouseClick == -1) |
| 1789 | #endif |
| 1790 | { |
| 1791 | int n = 1; |
Bram Moolenaar | 4550091 | 2014-07-09 20:51:07 +0200 | [diff] [blame] | 1792 | int conv = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1793 | |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 1794 | #ifdef FEAT_MBYTE |
| 1795 | if (ch2 == NUL) |
| 1796 | { |
| 1797 | int i; |
| 1798 | char_u *p; |
| 1799 | WCHAR ch[2]; |
| 1800 | |
| 1801 | ch[0] = c; |
| 1802 | if (c >= 0xD800 && c <= 0xDBFF) /* High surrogate */ |
| 1803 | { |
| 1804 | ch[1] = tgetch(&modifiers, &ch2); |
| 1805 | n++; |
| 1806 | } |
| 1807 | p = utf16_to_enc(ch, &n); |
| 1808 | if (p != NULL) |
| 1809 | { |
| 1810 | for (i = 0; i < n; i++) |
| 1811 | typeahead[typeaheadlen + i] = p[i]; |
| 1812 | vim_free(p); |
| 1813 | } |
| 1814 | } |
| 1815 | else |
| 1816 | #endif |
| 1817 | typeahead[typeaheadlen] = c; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1818 | if (ch2 != NUL) |
| 1819 | { |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 1820 | typeahead[typeaheadlen + n] = 3; |
| 1821 | typeahead[typeaheadlen + n + 1] = (char_u)ch2; |
Bram Moolenaar | 4550091 | 2014-07-09 20:51:07 +0200 | [diff] [blame] | 1822 | n += 2; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1823 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1824 | |
Bram Moolenaar | 4550091 | 2014-07-09 20:51:07 +0200 | [diff] [blame] | 1825 | if (conv) |
| 1826 | { |
| 1827 | char_u *p = typeahead + typeaheadlen; |
Bram Moolenaar | 4550091 | 2014-07-09 20:51:07 +0200 | [diff] [blame] | 1828 | |
Bram Moolenaar | 1ec4dd4 | 2015-01-20 19:39:35 +0100 | [diff] [blame] | 1829 | if (*p != K_NUL) |
Bram Moolenaar | 4550091 | 2014-07-09 20:51:07 +0200 | [diff] [blame] | 1830 | { |
Bram Moolenaar | 1ec4dd4 | 2015-01-20 19:39:35 +0100 | [diff] [blame] | 1831 | char_u *e = typeahead + TYPEAHEADLEN; |
| 1832 | |
| 1833 | while (*p && p < e) |
Bram Moolenaar | 4550091 | 2014-07-09 20:51:07 +0200 | [diff] [blame] | 1834 | { |
Bram Moolenaar | 1ec4dd4 | 2015-01-20 19:39:35 +0100 | [diff] [blame] | 1835 | if (*p == K_NUL) |
| 1836 | { |
| 1837 | ++p; |
| 1838 | mch_memmove(p + 1, p, ((size_t)(e - p)) - 1); |
| 1839 | *p = 3; |
| 1840 | ++n; |
| 1841 | } |
Bram Moolenaar | 4550091 | 2014-07-09 20:51:07 +0200 | [diff] [blame] | 1842 | ++p; |
Bram Moolenaar | 4550091 | 2014-07-09 20:51:07 +0200 | [diff] [blame] | 1843 | } |
Bram Moolenaar | 4550091 | 2014-07-09 20:51:07 +0200 | [diff] [blame] | 1844 | } |
| 1845 | } |
| 1846 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1847 | /* Use the ALT key to set the 8th bit of the character |
| 1848 | * when it's one byte, the 8th bit isn't set yet and not |
| 1849 | * using a double-byte encoding (would become a lead |
| 1850 | * byte). */ |
| 1851 | if ((modifiers & MOD_MASK_ALT) |
| 1852 | && n == 1 |
| 1853 | && (typeahead[typeaheadlen] & 0x80) == 0 |
| 1854 | #ifdef FEAT_MBYTE |
| 1855 | && !enc_dbcs |
| 1856 | #endif |
| 1857 | ) |
| 1858 | { |
Bram Moolenaar | 85a3e5c | 2007-11-20 16:22:16 +0000 | [diff] [blame] | 1859 | #ifdef FEAT_MBYTE |
| 1860 | n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80, |
| 1861 | typeahead + typeaheadlen); |
| 1862 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1863 | typeahead[typeaheadlen] |= 0x80; |
Bram Moolenaar | 85a3e5c | 2007-11-20 16:22:16 +0000 | [diff] [blame] | 1864 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1865 | modifiers &= ~MOD_MASK_ALT; |
| 1866 | } |
| 1867 | |
| 1868 | if (modifiers != 0) |
| 1869 | { |
| 1870 | /* Prepend modifiers to the character. */ |
| 1871 | mch_memmove(typeahead + typeaheadlen + 3, |
| 1872 | typeahead + typeaheadlen, n); |
| 1873 | typeahead[typeaheadlen++] = K_SPECIAL; |
| 1874 | typeahead[typeaheadlen++] = (char_u)KS_MODIFIER; |
| 1875 | typeahead[typeaheadlen++] = modifiers; |
| 1876 | } |
| 1877 | |
| 1878 | typeaheadlen += n; |
| 1879 | |
| 1880 | #ifdef MCH_WRITE_DUMP |
| 1881 | if (fdDump) |
| 1882 | fputc(c, fdDump); |
| 1883 | #endif |
| 1884 | } |
| 1885 | } |
| 1886 | } |
| 1887 | |
| 1888 | #ifdef MCH_WRITE_DUMP |
| 1889 | if (fdDump) |
| 1890 | { |
| 1891 | fputs("]\n", fdDump); |
| 1892 | fflush(fdDump); |
| 1893 | } |
| 1894 | #endif |
| 1895 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1896 | theend: |
| 1897 | /* Move typeahead to "buf", as much as fits. */ |
| 1898 | len = 0; |
| 1899 | while (len < maxlen && typeaheadlen > 0) |
| 1900 | { |
| 1901 | buf[len++] = typeahead[0]; |
| 1902 | mch_memmove(typeahead, typeahead + 1, --typeaheadlen); |
| 1903 | } |
| 1904 | return len; |
| 1905 | |
| 1906 | #else /* FEAT_GUI_W32 */ |
| 1907 | return 0; |
| 1908 | #endif /* FEAT_GUI_W32 */ |
| 1909 | } |
| 1910 | |
Bram Moolenaar | 8288149 | 2012-11-20 16:53:39 +0100 | [diff] [blame] | 1911 | #ifndef PROTO |
| 1912 | # ifndef __MINGW32__ |
| 1913 | # include <shellapi.h> /* required for FindExecutable() */ |
| 1914 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1915 | #endif |
| 1916 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1917 | /* |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 1918 | * If "use_path" is TRUE: Return TRUE if "name" is in $PATH. |
| 1919 | * If "use_path" is FALSE: Return TRUE if "name" exists. |
| 1920 | * When returning TRUE and "path" is not NULL save the path and set "*path" to |
| 1921 | * the allocated memory. |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 1922 | * TODO: Should somehow check if it's really executable. |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1923 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1924 | static int |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 1925 | executable_exists(char *name, char_u **path, int use_path) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1926 | { |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1927 | char *dum; |
| 1928 | char fname[_MAX_PATH]; |
Bram Moolenaar | c40bdee | 2014-08-29 17:45:32 +0200 | [diff] [blame] | 1929 | char *curpath, *newpath; |
| 1930 | long n; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1931 | |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 1932 | if (!use_path) |
| 1933 | { |
Bram Moolenaar | f7e894d | 2017-03-05 19:49:13 +0100 | [diff] [blame] | 1934 | if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name)) |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 1935 | { |
| 1936 | if (path != NULL) |
Bram Moolenaar | 066029e | 2017-03-05 15:19:32 +0100 | [diff] [blame] | 1937 | { |
Bram Moolenaar | f7e894d | 2017-03-05 19:49:13 +0100 | [diff] [blame] | 1938 | if (mch_isFullName((char_u *)name)) |
Bram Moolenaar | 066029e | 2017-03-05 15:19:32 +0100 | [diff] [blame] | 1939 | *path = vim_strsave((char_u *)name); |
| 1940 | else |
| 1941 | *path = FullName_save((char_u *)name, FALSE); |
| 1942 | } |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 1943 | return TRUE; |
| 1944 | } |
| 1945 | return FALSE; |
| 1946 | } |
| 1947 | |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1948 | #ifdef FEAT_MBYTE |
| 1949 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1950 | { |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 1951 | WCHAR *p = enc_to_utf16((char_u *)name, NULL); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1952 | WCHAR fnamew[_MAX_PATH]; |
| 1953 | WCHAR *dumw; |
Bram Moolenaar | c40bdee | 2014-08-29 17:45:32 +0200 | [diff] [blame] | 1954 | WCHAR *wcurpath, *wnewpath; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1955 | |
| 1956 | if (p != NULL) |
| 1957 | { |
Bram Moolenaar | c40bdee | 2014-08-29 17:45:32 +0200 | [diff] [blame] | 1958 | wcurpath = _wgetenv(L"PATH"); |
| 1959 | wnewpath = (WCHAR*)alloc((unsigned)(wcslen(wcurpath) + 3) |
| 1960 | * sizeof(WCHAR)); |
| 1961 | if (wnewpath == NULL) |
| 1962 | return FALSE; |
| 1963 | wcscpy(wnewpath, L".;"); |
| 1964 | wcscat(wnewpath, wcurpath); |
| 1965 | n = (long)SearchPathW(wnewpath, p, NULL, _MAX_PATH, fnamew, &dumw); |
| 1966 | vim_free(wnewpath); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1967 | vim_free(p); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 1968 | if (n == 0) |
| 1969 | return FALSE; |
| 1970 | if (GetFileAttributesW(fnamew) & FILE_ATTRIBUTE_DIRECTORY) |
| 1971 | return FALSE; |
| 1972 | if (path != NULL) |
| 1973 | *path = utf16_to_enc(fnamew, NULL); |
| 1974 | return TRUE; |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1975 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1976 | } |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1977 | #endif |
Bram Moolenaar | c40bdee | 2014-08-29 17:45:32 +0200 | [diff] [blame] | 1978 | |
| 1979 | curpath = getenv("PATH"); |
| 1980 | newpath = (char*)alloc((unsigned)(STRLEN(curpath) + 3)); |
| 1981 | if (newpath == NULL) |
| 1982 | return FALSE; |
| 1983 | STRCPY(newpath, ".;"); |
| 1984 | STRCAT(newpath, curpath); |
| 1985 | n = (long)SearchPath(newpath, name, NULL, _MAX_PATH, fname, &dum); |
| 1986 | vim_free(newpath); |
| 1987 | if (n == 0) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1988 | return FALSE; |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 1989 | if (mch_isdir((char_u *)fname)) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1990 | return FALSE; |
Bram Moolenaar | c7f0255 | 2014-04-01 21:00:59 +0200 | [diff] [blame] | 1991 | if (path != NULL) |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 1992 | *path = vim_strsave((char_u *)fname); |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1993 | return TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1994 | } |
| 1995 | |
Bram Moolenaar | d32a99a | 2010-09-21 17:29:23 +0200 | [diff] [blame] | 1996 | #if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \ |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 1997 | __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400) |
Bram Moolenaar | d32a99a | 2010-09-21 17:29:23 +0200 | [diff] [blame] | 1998 | /* |
| 1999 | * Bad parameter handler. |
| 2000 | * |
| 2001 | * Certain MS CRT functions will intentionally crash when passed invalid |
| 2002 | * parameters to highlight possible security holes. Setting this function as |
| 2003 | * the bad parameter handler will prevent the crash. |
| 2004 | * |
| 2005 | * In debug builds the parameters contain CRT information that might help track |
| 2006 | * down the source of a problem, but in non-debug builds the arguments are all |
| 2007 | * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is |
| 2008 | * worth allowing these to make debugging of issues easier. |
| 2009 | */ |
| 2010 | static void |
| 2011 | bad_param_handler(const wchar_t *expression, |
| 2012 | const wchar_t *function, |
| 2013 | const wchar_t *file, |
| 2014 | unsigned int line, |
| 2015 | uintptr_t pReserved) |
| 2016 | { |
| 2017 | } |
| 2018 | |
| 2019 | # define SET_INVALID_PARAM_HANDLER \ |
| 2020 | ((void)_set_invalid_parameter_handler(bad_param_handler)) |
| 2021 | #else |
| 2022 | # define SET_INVALID_PARAM_HANDLER |
| 2023 | #endif |
| 2024 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2025 | #ifdef FEAT_GUI_W32 |
| 2026 | |
| 2027 | /* |
| 2028 | * GUI version of mch_init(). |
| 2029 | */ |
| 2030 | void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2031 | mch_init(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2032 | { |
| 2033 | #ifndef __MINGW32__ |
| 2034 | extern int _fmode; |
| 2035 | #endif |
| 2036 | |
Bram Moolenaar | d32a99a | 2010-09-21 17:29:23 +0200 | [diff] [blame] | 2037 | /* Silently handle invalid parameters to CRT functions */ |
| 2038 | SET_INVALID_PARAM_HANDLER; |
| 2039 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2040 | /* Let critical errors result in a failure, not in a dialog box. Required |
| 2041 | * for the timestamp test to work on removed floppies. */ |
| 2042 | SetErrorMode(SEM_FAILCRITICALERRORS); |
| 2043 | |
| 2044 | _fmode = O_BINARY; /* we do our own CR-LF translation */ |
| 2045 | |
| 2046 | /* Specify window size. Is there a place to get the default from? */ |
| 2047 | Rows = 25; |
| 2048 | Columns = 80; |
| 2049 | |
| 2050 | /* Look for 'vimrun' */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2051 | { |
| 2052 | char_u vimrun_location[_MAX_PATH + 4]; |
| 2053 | |
| 2054 | /* First try in same directory as gvim.exe */ |
| 2055 | STRCPY(vimrun_location, exe_name); |
| 2056 | STRCPY(gettail(vimrun_location), "vimrun.exe"); |
| 2057 | if (mch_getperm(vimrun_location) >= 0) |
| 2058 | { |
| 2059 | if (*skiptowhite(vimrun_location) != NUL) |
| 2060 | { |
| 2061 | /* Enclose path with white space in double quotes. */ |
| 2062 | mch_memmove(vimrun_location + 1, vimrun_location, |
| 2063 | STRLEN(vimrun_location) + 1); |
| 2064 | *vimrun_location = '"'; |
| 2065 | STRCPY(gettail(vimrun_location), "vimrun\" "); |
| 2066 | } |
| 2067 | else |
| 2068 | STRCPY(gettail(vimrun_location), "vimrun "); |
| 2069 | |
| 2070 | vimrun_path = (char *)vim_strsave(vimrun_location); |
| 2071 | s_dont_use_vimrun = FALSE; |
| 2072 | } |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 2073 | else if (executable_exists("vimrun.exe", NULL, TRUE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2074 | s_dont_use_vimrun = FALSE; |
| 2075 | |
| 2076 | /* Don't give the warning for a missing vimrun.exe right now, but only |
| 2077 | * when vimrun was supposed to be used. Don't bother people that do |
| 2078 | * not need vimrun.exe. */ |
| 2079 | if (s_dont_use_vimrun) |
| 2080 | need_vimrun_warning = TRUE; |
| 2081 | } |
| 2082 | |
| 2083 | /* |
| 2084 | * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'. |
| 2085 | * Otherwise the default "findstr /n" is used. |
| 2086 | */ |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 2087 | if (!executable_exists("findstr.exe", NULL, TRUE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2088 | set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0); |
| 2089 | |
| 2090 | #ifdef FEAT_CLIPBOARD |
Bram Moolenaar | 693e40c | 2013-02-26 14:56:42 +0100 | [diff] [blame] | 2091 | win_clip_init(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2092 | #endif |
| 2093 | } |
| 2094 | |
| 2095 | |
| 2096 | #else /* FEAT_GUI_W32 */ |
| 2097 | |
| 2098 | #define SRWIDTH(sr) ((sr).Right - (sr).Left + 1) |
| 2099 | #define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1) |
| 2100 | |
| 2101 | /* |
| 2102 | * ClearConsoleBuffer() |
| 2103 | * Description: |
| 2104 | * Clears the entire contents of the console screen buffer, using the |
| 2105 | * specified attribute. |
| 2106 | * Returns: |
| 2107 | * TRUE on success |
| 2108 | */ |
| 2109 | static BOOL |
| 2110 | ClearConsoleBuffer(WORD wAttribute) |
| 2111 | { |
| 2112 | CONSOLE_SCREEN_BUFFER_INFO csbi; |
| 2113 | COORD coord; |
| 2114 | DWORD NumCells, dummy; |
| 2115 | |
| 2116 | if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi)) |
| 2117 | return FALSE; |
| 2118 | |
| 2119 | NumCells = csbi.dwSize.X * csbi.dwSize.Y; |
| 2120 | coord.X = 0; |
| 2121 | coord.Y = 0; |
| 2122 | if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells, |
| 2123 | coord, &dummy)) |
| 2124 | { |
| 2125 | return FALSE; |
| 2126 | } |
| 2127 | if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells, |
| 2128 | coord, &dummy)) |
| 2129 | { |
| 2130 | return FALSE; |
| 2131 | } |
| 2132 | |
| 2133 | return TRUE; |
| 2134 | } |
| 2135 | |
| 2136 | /* |
| 2137 | * FitConsoleWindow() |
| 2138 | * Description: |
| 2139 | * Checks if the console window will fit within given buffer dimensions. |
| 2140 | * Also, if requested, will shrink the window to fit. |
| 2141 | * Returns: |
| 2142 | * TRUE on success |
| 2143 | */ |
| 2144 | static BOOL |
| 2145 | FitConsoleWindow( |
| 2146 | COORD dwBufferSize, |
| 2147 | BOOL WantAdjust) |
| 2148 | { |
| 2149 | CONSOLE_SCREEN_BUFFER_INFO csbi; |
| 2150 | COORD dwWindowSize; |
| 2151 | BOOL NeedAdjust = FALSE; |
| 2152 | |
| 2153 | if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) |
| 2154 | { |
| 2155 | /* |
| 2156 | * A buffer resize will fail if the current console window does |
| 2157 | * not lie completely within that buffer. To avoid this, we might |
| 2158 | * have to move and possibly shrink the window. |
| 2159 | */ |
| 2160 | if (csbi.srWindow.Right >= dwBufferSize.X) |
| 2161 | { |
| 2162 | dwWindowSize.X = SRWIDTH(csbi.srWindow); |
| 2163 | if (dwWindowSize.X > dwBufferSize.X) |
| 2164 | dwWindowSize.X = dwBufferSize.X; |
| 2165 | csbi.srWindow.Right = dwBufferSize.X - 1; |
| 2166 | csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X; |
| 2167 | NeedAdjust = TRUE; |
| 2168 | } |
| 2169 | if (csbi.srWindow.Bottom >= dwBufferSize.Y) |
| 2170 | { |
| 2171 | dwWindowSize.Y = SRHEIGHT(csbi.srWindow); |
| 2172 | if (dwWindowSize.Y > dwBufferSize.Y) |
| 2173 | dwWindowSize.Y = dwBufferSize.Y; |
| 2174 | csbi.srWindow.Bottom = dwBufferSize.Y - 1; |
| 2175 | csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y; |
| 2176 | NeedAdjust = TRUE; |
| 2177 | } |
| 2178 | if (NeedAdjust && WantAdjust) |
| 2179 | { |
| 2180 | if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow)) |
| 2181 | return FALSE; |
| 2182 | } |
| 2183 | return TRUE; |
| 2184 | } |
| 2185 | |
| 2186 | return FALSE; |
| 2187 | } |
| 2188 | |
| 2189 | typedef struct ConsoleBufferStruct |
| 2190 | { |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2191 | BOOL IsValid; |
| 2192 | CONSOLE_SCREEN_BUFFER_INFO Info; |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2193 | PCHAR_INFO Buffer; |
| 2194 | COORD BufferSize; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2195 | } ConsoleBuffer; |
| 2196 | |
| 2197 | /* |
| 2198 | * SaveConsoleBuffer() |
| 2199 | * Description: |
| 2200 | * Saves important information about the console buffer, including the |
| 2201 | * actual buffer contents. The saved information is suitable for later |
| 2202 | * restoration by RestoreConsoleBuffer(). |
| 2203 | * Returns: |
| 2204 | * TRUE if all information was saved; FALSE otherwise |
| 2205 | * If FALSE, still sets cb->IsValid if buffer characteristics were saved. |
| 2206 | */ |
| 2207 | static BOOL |
| 2208 | SaveConsoleBuffer( |
| 2209 | ConsoleBuffer *cb) |
| 2210 | { |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2211 | DWORD NumCells; |
| 2212 | COORD BufferCoord; |
| 2213 | SMALL_RECT ReadRegion; |
| 2214 | WORD Y, Y_incr; |
| 2215 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2216 | if (cb == NULL) |
| 2217 | return FALSE; |
| 2218 | |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2219 | if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2220 | { |
| 2221 | cb->IsValid = FALSE; |
| 2222 | return FALSE; |
| 2223 | } |
| 2224 | cb->IsValid = TRUE; |
| 2225 | |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2226 | /* |
| 2227 | * Allocate a buffer large enough to hold the entire console screen |
| 2228 | * buffer. If this ConsoleBuffer structure has already been initialized |
| 2229 | * with a buffer of the correct size, then just use that one. |
| 2230 | */ |
| 2231 | if (!cb->IsValid || cb->Buffer == NULL || |
| 2232 | cb->BufferSize.X != cb->Info.dwSize.X || |
| 2233 | cb->BufferSize.Y != cb->Info.dwSize.Y) |
| 2234 | { |
| 2235 | cb->BufferSize.X = cb->Info.dwSize.X; |
| 2236 | cb->BufferSize.Y = cb->Info.dwSize.Y; |
| 2237 | NumCells = cb->BufferSize.X * cb->BufferSize.Y; |
| 2238 | vim_free(cb->Buffer); |
| 2239 | cb->Buffer = (PCHAR_INFO)alloc(NumCells * sizeof(CHAR_INFO)); |
| 2240 | if (cb->Buffer == NULL) |
| 2241 | return FALSE; |
| 2242 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2243 | |
| 2244 | /* |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2245 | * We will now copy the console screen buffer into our buffer. |
| 2246 | * ReadConsoleOutput() seems to be limited as far as how much you |
| 2247 | * can read at a time. Empirically, this number seems to be about |
| 2248 | * 12000 cells (rows * columns). Start at position (0, 0) and copy |
| 2249 | * in chunks until it is all copied. The chunks will all have the |
| 2250 | * same horizontal characteristics, so initialize them now. The |
| 2251 | * height of each chunk will be (12000 / width). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2252 | */ |
Bram Moolenaar | 6159424 | 2015-09-01 20:23:37 +0200 | [diff] [blame] | 2253 | BufferCoord.X = 0; |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2254 | ReadRegion.Left = 0; |
| 2255 | ReadRegion.Right = cb->Info.dwSize.X - 1; |
| 2256 | Y_incr = 12000 / cb->Info.dwSize.X; |
| 2257 | for (Y = 0; Y < cb->BufferSize.Y; Y += Y_incr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2258 | { |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2259 | /* |
| 2260 | * Read into position (0, Y) in our buffer. |
| 2261 | */ |
| 2262 | BufferCoord.Y = Y; |
| 2263 | /* |
| 2264 | * Read the region whose top left corner is (0, Y) and whose bottom |
| 2265 | * right corner is (width - 1, Y + Y_incr - 1). This should define |
| 2266 | * a region of size width by Y_incr. Don't worry if this region is |
| 2267 | * too large for the remaining buffer; it will be cropped. |
| 2268 | */ |
| 2269 | ReadRegion.Top = Y; |
| 2270 | ReadRegion.Bottom = Y + Y_incr - 1; |
| 2271 | if (!ReadConsoleOutput(g_hConOut, /* output handle */ |
| 2272 | cb->Buffer, /* our buffer */ |
| 2273 | cb->BufferSize, /* dimensions of our buffer */ |
| 2274 | BufferCoord, /* offset in our buffer */ |
| 2275 | &ReadRegion)) /* region to save */ |
| 2276 | { |
| 2277 | vim_free(cb->Buffer); |
| 2278 | cb->Buffer = NULL; |
| 2279 | return FALSE; |
| 2280 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2281 | } |
| 2282 | |
| 2283 | return TRUE; |
| 2284 | } |
| 2285 | |
| 2286 | /* |
| 2287 | * RestoreConsoleBuffer() |
| 2288 | * Description: |
| 2289 | * Restores important information about the console buffer, including the |
| 2290 | * actual buffer contents, if desired. The information to restore is in |
| 2291 | * the same format used by SaveConsoleBuffer(). |
| 2292 | * Returns: |
| 2293 | * TRUE on success |
| 2294 | */ |
| 2295 | static BOOL |
| 2296 | RestoreConsoleBuffer( |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2297 | ConsoleBuffer *cb, |
| 2298 | BOOL RestoreScreen) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2299 | { |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2300 | COORD BufferCoord; |
| 2301 | SMALL_RECT WriteRegion; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2302 | |
| 2303 | if (cb == NULL || !cb->IsValid) |
| 2304 | return FALSE; |
| 2305 | |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2306 | /* |
| 2307 | * Before restoring the buffer contents, clear the current buffer, and |
| 2308 | * restore the cursor position and window information. Doing this now |
| 2309 | * prevents old buffer contents from "flashing" onto the screen. |
| 2310 | */ |
| 2311 | if (RestoreScreen) |
| 2312 | ClearConsoleBuffer(cb->Info.wAttributes); |
| 2313 | |
| 2314 | FitConsoleWindow(cb->Info.dwSize, TRUE); |
| 2315 | if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize)) |
| 2316 | return FALSE; |
| 2317 | if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes)) |
| 2318 | return FALSE; |
| 2319 | |
| 2320 | if (!RestoreScreen) |
| 2321 | { |
| 2322 | /* |
| 2323 | * No need to restore the screen buffer contents, so we're done. |
| 2324 | */ |
| 2325 | return TRUE; |
| 2326 | } |
| 2327 | |
| 2328 | if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition)) |
| 2329 | return FALSE; |
| 2330 | if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow)) |
| 2331 | return FALSE; |
| 2332 | |
| 2333 | /* |
| 2334 | * Restore the screen buffer contents. |
| 2335 | */ |
| 2336 | if (cb->Buffer != NULL) |
| 2337 | { |
| 2338 | BufferCoord.X = 0; |
| 2339 | BufferCoord.Y = 0; |
| 2340 | WriteRegion.Left = 0; |
| 2341 | WriteRegion.Top = 0; |
| 2342 | WriteRegion.Right = cb->Info.dwSize.X - 1; |
| 2343 | WriteRegion.Bottom = cb->Info.dwSize.Y - 1; |
| 2344 | if (!WriteConsoleOutput(g_hConOut, /* output handle */ |
| 2345 | cb->Buffer, /* our buffer */ |
| 2346 | cb->BufferSize, /* dimensions of our buffer */ |
| 2347 | BufferCoord, /* offset in our buffer */ |
| 2348 | &WriteRegion)) /* region to restore */ |
| 2349 | { |
| 2350 | return FALSE; |
| 2351 | } |
| 2352 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2353 | |
| 2354 | return TRUE; |
| 2355 | } |
| 2356 | |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2357 | #define FEAT_RESTORE_ORIG_SCREEN |
| 2358 | #ifdef FEAT_RESTORE_ORIG_SCREEN |
| 2359 | static ConsoleBuffer g_cbOrig = { 0 }; |
| 2360 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2361 | static ConsoleBuffer g_cbNonTermcap = { 0 }; |
| 2362 | static ConsoleBuffer g_cbTermcap = { 0 }; |
| 2363 | |
| 2364 | #ifdef FEAT_TITLE |
| 2365 | #ifdef __BORLANDC__ |
| 2366 | typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID); |
| 2367 | #else |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 2368 | typedef HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2369 | #endif |
| 2370 | char g_szOrigTitle[256] = { 0 }; |
| 2371 | HWND g_hWnd = NULL; /* also used in os_mswin.c */ |
| 2372 | static HICON g_hOrigIconSmall = NULL; |
| 2373 | static HICON g_hOrigIcon = NULL; |
| 2374 | static HICON g_hVimIcon = NULL; |
| 2375 | static BOOL g_fCanChangeIcon = FALSE; |
| 2376 | |
| 2377 | /* ICON* are not defined in VC++ 4.0 */ |
| 2378 | #ifndef ICON_SMALL |
| 2379 | #define ICON_SMALL 0 |
| 2380 | #endif |
| 2381 | #ifndef ICON_BIG |
| 2382 | #define ICON_BIG 1 |
| 2383 | #endif |
| 2384 | /* |
| 2385 | * GetConsoleIcon() |
| 2386 | * Description: |
| 2387 | * Attempts to retrieve the small icon and/or the big icon currently in |
| 2388 | * use by a given window. |
| 2389 | * Returns: |
| 2390 | * TRUE on success |
| 2391 | */ |
| 2392 | static BOOL |
| 2393 | GetConsoleIcon( |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2394 | HWND hWnd, |
| 2395 | HICON *phIconSmall, |
| 2396 | HICON *phIcon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2397 | { |
| 2398 | if (hWnd == NULL) |
| 2399 | return FALSE; |
| 2400 | |
| 2401 | if (phIconSmall != NULL) |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2402 | *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON, |
| 2403 | (WPARAM)ICON_SMALL, (LPARAM)0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2404 | if (phIcon != NULL) |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2405 | *phIcon = (HICON)SendMessage(hWnd, WM_GETICON, |
| 2406 | (WPARAM)ICON_BIG, (LPARAM)0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2407 | return TRUE; |
| 2408 | } |
| 2409 | |
| 2410 | /* |
| 2411 | * SetConsoleIcon() |
| 2412 | * Description: |
| 2413 | * Attempts to change the small icon and/or the big icon currently in |
| 2414 | * use by a given window. |
| 2415 | * Returns: |
| 2416 | * TRUE on success |
| 2417 | */ |
| 2418 | static BOOL |
| 2419 | SetConsoleIcon( |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2420 | HWND hWnd, |
| 2421 | HICON hIconSmall, |
| 2422 | HICON hIcon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2423 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2424 | if (hWnd == NULL) |
| 2425 | return FALSE; |
| 2426 | |
| 2427 | if (hIconSmall != NULL) |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 2428 | SendMessage(hWnd, WM_SETICON, |
| 2429 | (WPARAM)ICON_SMALL, (LPARAM)hIconSmall); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2430 | if (hIcon != NULL) |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 2431 | SendMessage(hWnd, WM_SETICON, |
| 2432 | (WPARAM)ICON_BIG, (LPARAM) hIcon); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2433 | return TRUE; |
| 2434 | } |
| 2435 | |
| 2436 | /* |
| 2437 | * SaveConsoleTitleAndIcon() |
| 2438 | * Description: |
| 2439 | * Saves the current console window title in g_szOrigTitle, for later |
| 2440 | * restoration. Also, attempts to obtain a handle to the console window, |
| 2441 | * and use it to save the small and big icons currently in use by the |
| 2442 | * console window. This is not always possible on some versions of Windows; |
| 2443 | * nor is it possible when running Vim remotely using Telnet (since the |
| 2444 | * console window the user sees is owned by a remote process). |
| 2445 | */ |
| 2446 | static void |
| 2447 | SaveConsoleTitleAndIcon(void) |
| 2448 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2449 | /* Save the original title. */ |
| 2450 | if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle))) |
| 2451 | return; |
| 2452 | |
| 2453 | /* |
| 2454 | * Obtain a handle to the console window using GetConsoleWindow() from |
| 2455 | * KERNEL32.DLL; we need to handle in order to change the window icon. |
| 2456 | * This function only exists on NT-based Windows, starting with Windows |
| 2457 | * 2000. On older operating systems, we can't change the window icon |
| 2458 | * anyway. |
| 2459 | */ |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 2460 | g_hWnd = GetConsoleWindow(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2461 | if (g_hWnd == NULL) |
| 2462 | return; |
| 2463 | |
| 2464 | /* Save the original console window icon. */ |
| 2465 | GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon); |
| 2466 | if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL) |
| 2467 | return; |
| 2468 | |
| 2469 | /* Extract the first icon contained in the Vim executable. */ |
Bram Moolenaar | cddc91c | 2014-09-23 21:53:41 +0200 | [diff] [blame] | 2470 | if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL) |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 2471 | g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2472 | if (g_hVimIcon != NULL) |
| 2473 | g_fCanChangeIcon = TRUE; |
| 2474 | } |
| 2475 | #endif |
| 2476 | |
| 2477 | static int g_fWindInitCalled = FALSE; |
| 2478 | static int g_fTermcapMode = FALSE; |
| 2479 | static CONSOLE_CURSOR_INFO g_cci; |
| 2480 | static DWORD g_cmodein = 0; |
| 2481 | static DWORD g_cmodeout = 0; |
| 2482 | |
| 2483 | /* |
| 2484 | * non-GUI version of mch_init(). |
| 2485 | */ |
| 2486 | void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2487 | mch_init(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2488 | { |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2489 | #ifndef FEAT_RESTORE_ORIG_SCREEN |
| 2490 | CONSOLE_SCREEN_BUFFER_INFO csbi; |
| 2491 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2492 | #ifndef __MINGW32__ |
| 2493 | extern int _fmode; |
| 2494 | #endif |
| 2495 | |
Bram Moolenaar | d32a99a | 2010-09-21 17:29:23 +0200 | [diff] [blame] | 2496 | /* Silently handle invalid parameters to CRT functions */ |
| 2497 | SET_INVALID_PARAM_HANDLER; |
| 2498 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2499 | /* Let critical errors result in a failure, not in a dialog box. Required |
| 2500 | * for the timestamp test to work on removed floppies. */ |
| 2501 | SetErrorMode(SEM_FAILCRITICALERRORS); |
| 2502 | |
| 2503 | _fmode = O_BINARY; /* we do our own CR-LF translation */ |
| 2504 | out_flush(); |
| 2505 | |
| 2506 | /* Obtain handles for the standard Console I/O devices */ |
| 2507 | if (read_cmd_fd == 0) |
| 2508 | g_hConIn = GetStdHandle(STD_INPUT_HANDLE); |
| 2509 | else |
| 2510 | create_conin(); |
| 2511 | g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE); |
| 2512 | |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2513 | #ifdef FEAT_RESTORE_ORIG_SCREEN |
| 2514 | /* Save the initial console buffer for later restoration */ |
| 2515 | SaveConsoleBuffer(&g_cbOrig); |
| 2516 | g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes; |
| 2517 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2518 | /* Get current text attributes */ |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 2519 | GetConsoleScreenBufferInfo(g_hConOut, &csbi); |
| 2520 | g_attrCurrent = g_attrDefault = csbi.wAttributes; |
| 2521 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2522 | if (cterm_normal_fg_color == 0) |
| 2523 | cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1; |
| 2524 | if (cterm_normal_bg_color == 0) |
| 2525 | cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1; |
| 2526 | |
| 2527 | /* set termcap codes to current text attributes */ |
| 2528 | update_tcap(g_attrCurrent); |
| 2529 | |
| 2530 | GetConsoleCursorInfo(g_hConOut, &g_cci); |
| 2531 | GetConsoleMode(g_hConIn, &g_cmodein); |
| 2532 | GetConsoleMode(g_hConOut, &g_cmodeout); |
| 2533 | |
| 2534 | #ifdef FEAT_TITLE |
| 2535 | SaveConsoleTitleAndIcon(); |
| 2536 | /* |
| 2537 | * Set both the small and big icons of the console window to Vim's icon. |
| 2538 | * Note that Vim presently only has one size of icon (32x32), but it |
| 2539 | * automatically gets scaled down to 16x16 when setting the small icon. |
| 2540 | */ |
| 2541 | if (g_fCanChangeIcon) |
| 2542 | SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon); |
| 2543 | #endif |
| 2544 | |
| 2545 | ui_get_shellsize(); |
| 2546 | |
| 2547 | #ifdef MCH_WRITE_DUMP |
| 2548 | fdDump = fopen("dump", "wt"); |
| 2549 | |
| 2550 | if (fdDump) |
| 2551 | { |
| 2552 | time_t t; |
| 2553 | |
| 2554 | time(&t); |
| 2555 | fputs(ctime(&t), fdDump); |
| 2556 | fflush(fdDump); |
| 2557 | } |
| 2558 | #endif |
| 2559 | |
| 2560 | g_fWindInitCalled = TRUE; |
| 2561 | |
| 2562 | #ifdef FEAT_MOUSE |
| 2563 | g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT); |
| 2564 | #endif |
| 2565 | |
| 2566 | #ifdef FEAT_CLIPBOARD |
Bram Moolenaar | 693e40c | 2013-02-26 14:56:42 +0100 | [diff] [blame] | 2567 | win_clip_init(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2568 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2569 | } |
| 2570 | |
| 2571 | /* |
| 2572 | * non-GUI version of mch_exit(). |
| 2573 | * Shut down and exit with status `r' |
| 2574 | * Careful: mch_exit() may be called before mch_init()! |
| 2575 | */ |
| 2576 | void |
| 2577 | mch_exit(int r) |
| 2578 | { |
Bram Moolenaar | 955f198 | 2017-02-05 15:10:51 +0100 | [diff] [blame] | 2579 | exiting = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2580 | |
Bram Moolenaar | 955f198 | 2017-02-05 15:10:51 +0100 | [diff] [blame] | 2581 | stoptermcap(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2582 | if (g_fWindInitCalled) |
| 2583 | settmode(TMODE_COOK); |
| 2584 | |
| 2585 | ml_close_all(TRUE); /* remove all memfiles */ |
| 2586 | |
| 2587 | if (g_fWindInitCalled) |
| 2588 | { |
| 2589 | #ifdef FEAT_TITLE |
| 2590 | mch_restore_title(3); |
| 2591 | /* |
| 2592 | * Restore both the small and big icons of the console window to |
| 2593 | * what they were at startup. Don't do this when the window is |
| 2594 | * closed, Vim would hang here. |
| 2595 | */ |
| 2596 | if (g_fCanChangeIcon && !g_fForceExit) |
| 2597 | SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon); |
| 2598 | #endif |
| 2599 | |
| 2600 | #ifdef MCH_WRITE_DUMP |
| 2601 | if (fdDump) |
| 2602 | { |
| 2603 | time_t t; |
| 2604 | |
| 2605 | time(&t); |
| 2606 | fputs(ctime(&t), fdDump); |
| 2607 | fclose(fdDump); |
| 2608 | } |
| 2609 | fdDump = NULL; |
| 2610 | #endif |
| 2611 | } |
| 2612 | |
| 2613 | SetConsoleCursorInfo(g_hConOut, &g_cci); |
| 2614 | SetConsoleMode(g_hConIn, g_cmodein); |
| 2615 | SetConsoleMode(g_hConOut, g_cmodeout); |
| 2616 | |
| 2617 | #ifdef DYNAMIC_GETTEXT |
| 2618 | dyn_libintl_end(); |
| 2619 | #endif |
| 2620 | |
| 2621 | exit(r); |
| 2622 | } |
| 2623 | #endif /* !FEAT_GUI_W32 */ |
| 2624 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2625 | /* |
| 2626 | * Do we have an interactive window? |
| 2627 | */ |
| 2628 | int |
| 2629 | mch_check_win( |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 2630 | int argc UNUSED, |
| 2631 | char **argv UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2632 | { |
| 2633 | get_exe_name(); |
| 2634 | |
| 2635 | #ifdef FEAT_GUI_W32 |
| 2636 | return OK; /* GUI always has a tty */ |
| 2637 | #else |
| 2638 | if (isatty(1)) |
| 2639 | return OK; |
| 2640 | return FAIL; |
| 2641 | #endif |
| 2642 | } |
| 2643 | |
| 2644 | |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2645 | #ifdef FEAT_MBYTE |
| 2646 | /* |
| 2647 | * fname_casew(): Wide version of fname_case(). Set the case of the file name, |
| 2648 | * if it already exists. When "len" is > 0, also expand short to long |
| 2649 | * filenames. |
| 2650 | * Return FAIL if wide functions are not available, OK otherwise. |
| 2651 | * NOTE: much of this is identical to fname_case(), keep in sync! |
| 2652 | */ |
| 2653 | static int |
| 2654 | fname_casew( |
| 2655 | WCHAR *name, |
| 2656 | int len) |
| 2657 | { |
| 2658 | WCHAR szTrueName[_MAX_PATH + 2]; |
| 2659 | WCHAR szTrueNameTemp[_MAX_PATH + 2]; |
| 2660 | WCHAR *ptrue, *ptruePrev; |
| 2661 | WCHAR *porig, *porigPrev; |
| 2662 | int flen; |
| 2663 | WIN32_FIND_DATAW fb; |
Bram Moolenaar | 73c6163 | 2013-12-07 14:48:10 +0100 | [diff] [blame] | 2664 | HANDLE hFind = INVALID_HANDLE_VALUE; |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2665 | int c; |
| 2666 | int slen; |
| 2667 | |
| 2668 | flen = (int)wcslen(name); |
| 2669 | if (flen > _MAX_PATH) |
| 2670 | return OK; |
| 2671 | |
| 2672 | /* slash_adjust(name) not needed, already adjusted by fname_case(). */ |
| 2673 | |
| 2674 | /* Build the new name in szTrueName[] one component at a time. */ |
| 2675 | porig = name; |
| 2676 | ptrue = szTrueName; |
| 2677 | |
| 2678 | if (iswalpha(porig[0]) && porig[1] == L':') |
| 2679 | { |
| 2680 | /* copy leading drive letter */ |
| 2681 | *ptrue++ = *porig++; |
| 2682 | *ptrue++ = *porig++; |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2683 | } |
Bram Moolenaar | 73c6163 | 2013-12-07 14:48:10 +0100 | [diff] [blame] | 2684 | *ptrue = NUL; /* in case nothing follows */ |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2685 | |
| 2686 | while (*porig != NUL) |
| 2687 | { |
| 2688 | /* copy \ characters */ |
| 2689 | while (*porig == psepc) |
| 2690 | *ptrue++ = *porig++; |
| 2691 | |
| 2692 | ptruePrev = ptrue; |
| 2693 | porigPrev = porig; |
| 2694 | while (*porig != NUL && *porig != psepc) |
| 2695 | { |
| 2696 | *ptrue++ = *porig++; |
| 2697 | } |
| 2698 | *ptrue = NUL; |
| 2699 | |
| 2700 | /* To avoid a slow failure append "\*" when searching a directory, |
| 2701 | * server or network share. */ |
| 2702 | wcscpy(szTrueNameTemp, szTrueName); |
| 2703 | slen = (int)wcslen(szTrueNameTemp); |
| 2704 | if (*porig == psepc && slen + 2 < _MAX_PATH) |
| 2705 | wcscpy(szTrueNameTemp + slen, L"\\*"); |
| 2706 | |
| 2707 | /* Skip "", "." and "..". */ |
| 2708 | if (ptrue > ptruePrev |
| 2709 | && (ptruePrev[0] != L'.' |
| 2710 | || (ptruePrev[1] != NUL |
| 2711 | && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL))) |
| 2712 | && (hFind = FindFirstFileW(szTrueNameTemp, &fb)) |
| 2713 | != INVALID_HANDLE_VALUE) |
| 2714 | { |
| 2715 | c = *porig; |
| 2716 | *porig = NUL; |
| 2717 | |
| 2718 | /* Only use the match when it's the same name (ignoring case) or |
| 2719 | * expansion is allowed and there is a match with the short name |
| 2720 | * and there is enough room. */ |
| 2721 | if (_wcsicoll(porigPrev, fb.cFileName) == 0 |
| 2722 | || (len > 0 |
| 2723 | && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0 |
| 2724 | && (int)(ptruePrev - szTrueName) |
| 2725 | + (int)wcslen(fb.cFileName) < len))) |
| 2726 | { |
| 2727 | wcscpy(ptruePrev, fb.cFileName); |
| 2728 | |
| 2729 | /* Look for exact match and prefer it if found. Must be a |
| 2730 | * long name, otherwise there would be only one match. */ |
| 2731 | while (FindNextFileW(hFind, &fb)) |
| 2732 | { |
| 2733 | if (*fb.cAlternateFileName != NUL |
| 2734 | && (wcscoll(porigPrev, fb.cFileName) == 0 |
| 2735 | || (len > 0 |
| 2736 | && (_wcsicoll(porigPrev, |
| 2737 | fb.cAlternateFileName) == 0 |
| 2738 | && (int)(ptruePrev - szTrueName) |
| 2739 | + (int)wcslen(fb.cFileName) < len)))) |
| 2740 | { |
| 2741 | wcscpy(ptruePrev, fb.cFileName); |
| 2742 | break; |
| 2743 | } |
| 2744 | } |
| 2745 | } |
| 2746 | FindClose(hFind); |
| 2747 | *porig = c; |
| 2748 | ptrue = ptruePrev + wcslen(ptruePrev); |
| 2749 | } |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2750 | } |
| 2751 | |
| 2752 | wcscpy(name, szTrueName); |
| 2753 | return OK; |
| 2754 | } |
| 2755 | #endif |
| 2756 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2757 | /* |
| 2758 | * fname_case(): Set the case of the file name, if it already exists. |
| 2759 | * When "len" is > 0, also expand short to long filenames. |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2760 | * NOTE: much of this is identical to fname_casew(), keep in sync! |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2761 | */ |
| 2762 | void |
| 2763 | fname_case( |
| 2764 | char_u *name, |
| 2765 | int len) |
| 2766 | { |
| 2767 | char szTrueName[_MAX_PATH + 2]; |
Bram Moolenaar | 464c925 | 2010-10-13 20:37:41 +0200 | [diff] [blame] | 2768 | char szTrueNameTemp[_MAX_PATH + 2]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2769 | char *ptrue, *ptruePrev; |
| 2770 | char *porig, *porigPrev; |
| 2771 | int flen; |
| 2772 | WIN32_FIND_DATA fb; |
| 2773 | HANDLE hFind; |
| 2774 | int c; |
Bram Moolenaar | 464c925 | 2010-10-13 20:37:41 +0200 | [diff] [blame] | 2775 | int slen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2776 | |
Bram Moolenaar | a3ffd9c | 2005-07-21 21:03:15 +0000 | [diff] [blame] | 2777 | flen = (int)STRLEN(name); |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2778 | if (flen == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2779 | return; |
| 2780 | |
| 2781 | slash_adjust(name); |
| 2782 | |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2783 | #ifdef FEAT_MBYTE |
| 2784 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 2785 | { |
| 2786 | WCHAR *p = enc_to_utf16(name, NULL); |
| 2787 | |
| 2788 | if (p != NULL) |
| 2789 | { |
| 2790 | char_u *q; |
Bram Moolenaar | 21d89b6 | 2014-10-07 10:38:40 +0200 | [diff] [blame] | 2791 | WCHAR buf[_MAX_PATH + 1]; |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2792 | |
Bram Moolenaar | 21d89b6 | 2014-10-07 10:38:40 +0200 | [diff] [blame] | 2793 | wcsncpy(buf, p, _MAX_PATH); |
| 2794 | buf[_MAX_PATH] = L'\0'; |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2795 | vim_free(p); |
| 2796 | |
| 2797 | if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK) |
| 2798 | { |
| 2799 | q = utf16_to_enc(buf, NULL); |
| 2800 | if (q != NULL) |
| 2801 | { |
| 2802 | vim_strncpy(name, q, (len > 0) ? len - 1 : flen); |
| 2803 | vim_free(q); |
| 2804 | return; |
| 2805 | } |
| 2806 | } |
| 2807 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 2808 | return; |
Bram Moolenaar | 65f04f6 | 2013-08-30 17:29:16 +0200 | [diff] [blame] | 2809 | } |
| 2810 | #endif |
| 2811 | |
| 2812 | /* If 'enc' is utf-8, flen can be larger than _MAX_PATH. |
| 2813 | * So we should check this after calling wide function. */ |
| 2814 | if (flen > _MAX_PATH) |
| 2815 | return; |
| 2816 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2817 | /* Build the new name in szTrueName[] one component at a time. */ |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 2818 | porig = (char *)name; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2819 | ptrue = szTrueName; |
| 2820 | |
| 2821 | if (isalpha(porig[0]) && porig[1] == ':') |
| 2822 | { |
| 2823 | /* copy leading drive letter */ |
| 2824 | *ptrue++ = *porig++; |
| 2825 | *ptrue++ = *porig++; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2826 | } |
Bram Moolenaar | 73c6163 | 2013-12-07 14:48:10 +0100 | [diff] [blame] | 2827 | *ptrue = NUL; /* in case nothing follows */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2828 | |
| 2829 | while (*porig != NUL) |
| 2830 | { |
| 2831 | /* copy \ characters */ |
| 2832 | while (*porig == psepc) |
| 2833 | *ptrue++ = *porig++; |
| 2834 | |
| 2835 | ptruePrev = ptrue; |
| 2836 | porigPrev = porig; |
| 2837 | while (*porig != NUL && *porig != psepc) |
| 2838 | { |
| 2839 | #ifdef FEAT_MBYTE |
| 2840 | int l; |
| 2841 | |
| 2842 | if (enc_dbcs) |
| 2843 | { |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 2844 | l = (*mb_ptr2len)((char_u *)porig); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2845 | while (--l >= 0) |
| 2846 | *ptrue++ = *porig++; |
| 2847 | } |
| 2848 | else |
| 2849 | #endif |
| 2850 | *ptrue++ = *porig++; |
| 2851 | } |
| 2852 | *ptrue = NUL; |
| 2853 | |
Bram Moolenaar | 464c925 | 2010-10-13 20:37:41 +0200 | [diff] [blame] | 2854 | /* To avoid a slow failure append "\*" when searching a directory, |
| 2855 | * server or network share. */ |
| 2856 | STRCPY(szTrueNameTemp, szTrueName); |
Bram Moolenaar | 6b5ef06 | 2010-10-27 12:18:00 +0200 | [diff] [blame] | 2857 | slen = (int)strlen(szTrueNameTemp); |
Bram Moolenaar | 464c925 | 2010-10-13 20:37:41 +0200 | [diff] [blame] | 2858 | if (*porig == psepc && slen + 2 < _MAX_PATH) |
| 2859 | STRCPY(szTrueNameTemp + slen, "\\*"); |
| 2860 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2861 | /* Skip "", "." and "..". */ |
| 2862 | if (ptrue > ptruePrev |
| 2863 | && (ptruePrev[0] != '.' |
| 2864 | || (ptruePrev[1] != NUL |
| 2865 | && (ptruePrev[1] != '.' || ptruePrev[2] != NUL))) |
Bram Moolenaar | 464c925 | 2010-10-13 20:37:41 +0200 | [diff] [blame] | 2866 | && (hFind = FindFirstFile(szTrueNameTemp, &fb)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2867 | != INVALID_HANDLE_VALUE) |
| 2868 | { |
| 2869 | c = *porig; |
| 2870 | *porig = NUL; |
| 2871 | |
| 2872 | /* Only use the match when it's the same name (ignoring case) or |
| 2873 | * expansion is allowed and there is a match with the short name |
| 2874 | * and there is enough room. */ |
| 2875 | if (_stricoll(porigPrev, fb.cFileName) == 0 |
| 2876 | || (len > 0 |
| 2877 | && (_stricoll(porigPrev, fb.cAlternateFileName) == 0 |
| 2878 | && (int)(ptruePrev - szTrueName) |
| 2879 | + (int)strlen(fb.cFileName) < len))) |
| 2880 | { |
| 2881 | STRCPY(ptruePrev, fb.cFileName); |
| 2882 | |
| 2883 | /* Look for exact match and prefer it if found. Must be a |
| 2884 | * long name, otherwise there would be only one match. */ |
| 2885 | while (FindNextFile(hFind, &fb)) |
| 2886 | { |
| 2887 | if (*fb.cAlternateFileName != NUL |
| 2888 | && (strcoll(porigPrev, fb.cFileName) == 0 |
| 2889 | || (len > 0 |
| 2890 | && (_stricoll(porigPrev, |
| 2891 | fb.cAlternateFileName) == 0 |
| 2892 | && (int)(ptruePrev - szTrueName) |
| 2893 | + (int)strlen(fb.cFileName) < len)))) |
| 2894 | { |
| 2895 | STRCPY(ptruePrev, fb.cFileName); |
| 2896 | break; |
| 2897 | } |
| 2898 | } |
| 2899 | } |
| 2900 | FindClose(hFind); |
| 2901 | *porig = c; |
| 2902 | ptrue = ptruePrev + strlen(ptruePrev); |
| 2903 | } |
| 2904 | } |
| 2905 | |
| 2906 | STRCPY(name, szTrueName); |
| 2907 | } |
| 2908 | |
| 2909 | |
| 2910 | /* |
| 2911 | * Insert user name in s[len]. |
| 2912 | */ |
| 2913 | int |
| 2914 | mch_get_user_name( |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2915 | char_u *s, |
| 2916 | int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2917 | { |
Bram Moolenaar | 41a0903 | 2007-10-01 18:34:34 +0000 | [diff] [blame] | 2918 | char szUserName[256 + 1]; /* UNLEN is 256 */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2919 | DWORD cch = sizeof szUserName; |
| 2920 | |
Bram Moolenaar | c8020ee | 2013-12-11 18:18:06 +0100 | [diff] [blame] | 2921 | #ifdef FEAT_MBYTE |
| 2922 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 2923 | { |
| 2924 | WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */ |
| 2925 | DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR); |
| 2926 | |
| 2927 | if (GetUserNameW(wszUserName, &wcch)) |
| 2928 | { |
| 2929 | char_u *p = utf16_to_enc(wszUserName, NULL); |
| 2930 | |
| 2931 | if (p != NULL) |
| 2932 | { |
| 2933 | vim_strncpy(s, p, len - 1); |
| 2934 | vim_free(p); |
| 2935 | return OK; |
| 2936 | } |
| 2937 | } |
Bram Moolenaar | c8020ee | 2013-12-11 18:18:06 +0100 | [diff] [blame] | 2938 | } |
| 2939 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2940 | if (GetUserName(szUserName, &cch)) |
| 2941 | { |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 2942 | vim_strncpy(s, (char_u *)szUserName, len - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2943 | return OK; |
| 2944 | } |
| 2945 | s[0] = NUL; |
| 2946 | return FAIL; |
| 2947 | } |
| 2948 | |
| 2949 | |
| 2950 | /* |
| 2951 | * Insert host name in s[len]. |
| 2952 | */ |
| 2953 | void |
| 2954 | mch_get_host_name( |
| 2955 | char_u *s, |
| 2956 | int len) |
| 2957 | { |
| 2958 | DWORD cch = len; |
| 2959 | |
Bram Moolenaar | 2cc8738 | 2013-12-11 18:21:45 +0100 | [diff] [blame] | 2960 | #ifdef FEAT_MBYTE |
| 2961 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 2962 | { |
| 2963 | WCHAR wszHostName[256 + 1]; |
| 2964 | DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR); |
| 2965 | |
| 2966 | if (GetComputerNameW(wszHostName, &wcch)) |
| 2967 | { |
| 2968 | char_u *p = utf16_to_enc(wszHostName, NULL); |
| 2969 | |
| 2970 | if (p != NULL) |
| 2971 | { |
| 2972 | vim_strncpy(s, p, len - 1); |
| 2973 | vim_free(p); |
| 2974 | return; |
| 2975 | } |
| 2976 | } |
Bram Moolenaar | 2cc8738 | 2013-12-11 18:21:45 +0100 | [diff] [blame] | 2977 | } |
| 2978 | #endif |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 2979 | if (!GetComputerName((LPSTR)s, &cch)) |
| 2980 | vim_strncpy(s, (char_u *)"PC (Win32 Vim)", len - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2981 | } |
| 2982 | |
| 2983 | |
| 2984 | /* |
| 2985 | * return process ID |
| 2986 | */ |
| 2987 | long |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 2988 | mch_get_pid(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2989 | { |
| 2990 | return (long)GetCurrentProcessId(); |
| 2991 | } |
| 2992 | |
| 2993 | |
| 2994 | /* |
| 2995 | * Get name of current directory into buffer 'buf' of length 'len' bytes. |
| 2996 | * Return OK for success, FAIL for failure. |
| 2997 | */ |
| 2998 | int |
| 2999 | mch_dirname( |
| 3000 | char_u *buf, |
| 3001 | int len) |
| 3002 | { |
| 3003 | /* |
| 3004 | * Originally this was: |
| 3005 | * return (getcwd(buf, len) != NULL ? OK : FAIL); |
| 3006 | * But the Win32s known bug list says that getcwd() doesn't work |
| 3007 | * so use the Win32 system call instead. <Negri> |
| 3008 | */ |
| 3009 | #ifdef FEAT_MBYTE |
| 3010 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 3011 | { |
| 3012 | WCHAR wbuf[_MAX_PATH + 1]; |
| 3013 | |
| 3014 | if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0) |
| 3015 | { |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 3016 | char_u *p = utf16_to_enc(wbuf, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3017 | |
| 3018 | if (p != NULL) |
| 3019 | { |
Bram Moolenaar | fe3ca8d | 2005-07-18 21:43:02 +0000 | [diff] [blame] | 3020 | vim_strncpy(buf, p, len - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3021 | vim_free(p); |
| 3022 | return OK; |
| 3023 | } |
| 3024 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3025 | return FAIL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3026 | } |
| 3027 | #endif |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 3028 | return (GetCurrentDirectory(len, (LPSTR)buf) != 0 ? OK : FAIL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3029 | } |
| 3030 | |
| 3031 | /* |
Bram Moolenaar | ffa2220 | 2013-11-21 12:34:11 +0100 | [diff] [blame] | 3032 | * Get file permissions for "name". |
| 3033 | * Return mode_t or -1 for error. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3034 | */ |
| 3035 | long |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3036 | mch_getperm(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3037 | { |
Bram Moolenaar | 8767f52 | 2016-07-01 17:17:39 +0200 | [diff] [blame] | 3038 | stat_T st; |
Bram Moolenaar | ffa2220 | 2013-11-21 12:34:11 +0100 | [diff] [blame] | 3039 | int n; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3040 | |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 3041 | n = mch_stat((char *)name, &st); |
Bram Moolenaar | 78cf3f0 | 2014-01-10 18:16:07 +0100 | [diff] [blame] | 3042 | return n == 0 ? (long)(unsigned short)st.st_mode : -1L; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3043 | } |
| 3044 | |
| 3045 | |
| 3046 | /* |
Bram Moolenaar | e24a9c0 | 2013-07-24 13:49:22 +0200 | [diff] [blame] | 3047 | * Set file permission for "name" to "perm". |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3048 | * |
Bram Moolenaar | e24a9c0 | 2013-07-24 13:49:22 +0200 | [diff] [blame] | 3049 | * Return FAIL for failure, OK otherwise. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3050 | */ |
| 3051 | int |
Bram Moolenaar | e24a9c0 | 2013-07-24 13:49:22 +0200 | [diff] [blame] | 3052 | mch_setperm(char_u *name, long perm) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3053 | { |
Bram Moolenaar | e24a9c0 | 2013-07-24 13:49:22 +0200 | [diff] [blame] | 3054 | long n = -1; |
| 3055 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3056 | #ifdef FEAT_MBYTE |
| 3057 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 3058 | { |
Bram Moolenaar | e24a9c0 | 2013-07-24 13:49:22 +0200 | [diff] [blame] | 3059 | WCHAR *p = enc_to_utf16(name, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3060 | |
| 3061 | if (p != NULL) |
| 3062 | { |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3063 | n = _wchmod(p, perm); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3064 | vim_free(p); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3065 | if (n == -1) |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3066 | return FAIL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3067 | } |
| 3068 | } |
Bram Moolenaar | e24a9c0 | 2013-07-24 13:49:22 +0200 | [diff] [blame] | 3069 | if (n == -1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3070 | #endif |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 3071 | n = _chmod((const char *)name, perm); |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3072 | if (n == -1) |
| 3073 | return FAIL; |
| 3074 | |
| 3075 | win32_set_archive(name); |
| 3076 | |
| 3077 | return OK; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3078 | } |
| 3079 | |
| 3080 | /* |
| 3081 | * Set hidden flag for "name". |
| 3082 | */ |
| 3083 | void |
| 3084 | mch_hide(char_u *name) |
| 3085 | { |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3086 | int attrs = win32_getattrs(name); |
| 3087 | if (attrs == -1) |
| 3088 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3089 | |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3090 | attrs |= FILE_ATTRIBUTE_HIDDEN; |
| 3091 | win32_setattrs(name, attrs); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3092 | } |
| 3093 | |
| 3094 | /* |
Bram Moolenaar | 8a52ba7 | 2015-11-02 14:45:56 +0100 | [diff] [blame] | 3095 | * Return TRUE if file "name" exists and is hidden. |
| 3096 | */ |
| 3097 | int |
| 3098 | mch_ishidden(char_u *name) |
| 3099 | { |
| 3100 | int f = win32_getattrs(name); |
| 3101 | |
| 3102 | if (f == -1) |
| 3103 | return FALSE; /* file does not exist at all */ |
| 3104 | |
| 3105 | return (f & FILE_ATTRIBUTE_HIDDEN) != 0; |
| 3106 | } |
| 3107 | |
| 3108 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3109 | * return TRUE if "name" is a directory |
| 3110 | * return FALSE if "name" is not a directory or upon error |
| 3111 | */ |
| 3112 | int |
| 3113 | mch_isdir(char_u *name) |
| 3114 | { |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3115 | int f = win32_getattrs(name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3116 | |
| 3117 | if (f == -1) |
| 3118 | return FALSE; /* file does not exist at all */ |
| 3119 | |
| 3120 | return (f & FILE_ATTRIBUTE_DIRECTORY) != 0; |
| 3121 | } |
| 3122 | |
| 3123 | /* |
Bram Moolenaar | 203258c | 2016-01-17 22:15:16 +0100 | [diff] [blame] | 3124 | * return TRUE if "name" is a directory, NOT a symlink to a directory |
| 3125 | * return FALSE if "name" is not a directory |
| 3126 | * return FALSE for error |
| 3127 | */ |
| 3128 | int |
| 3129 | mch_isrealdir(char_u *name) |
| 3130 | { |
| 3131 | return mch_isdir(name) && !mch_is_symbolic_link(name); |
| 3132 | } |
| 3133 | |
| 3134 | /* |
Bram Moolenaar | 3c9c99c | 2011-05-05 18:31:59 +0200 | [diff] [blame] | 3135 | * Create directory "name". |
| 3136 | * Return 0 on success, -1 on error. |
| 3137 | */ |
| 3138 | int |
| 3139 | mch_mkdir(char_u *name) |
| 3140 | { |
| 3141 | #ifdef FEAT_MBYTE |
| 3142 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 3143 | { |
| 3144 | WCHAR *p; |
| 3145 | int retval; |
| 3146 | |
| 3147 | p = enc_to_utf16(name, NULL); |
| 3148 | if (p == NULL) |
| 3149 | return -1; |
| 3150 | retval = _wmkdir(p); |
| 3151 | vim_free(p); |
| 3152 | return retval; |
| 3153 | } |
| 3154 | #endif |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 3155 | return _mkdir((const char *)name); |
Bram Moolenaar | 3c9c99c | 2011-05-05 18:31:59 +0200 | [diff] [blame] | 3156 | } |
| 3157 | |
| 3158 | /* |
Bram Moolenaar | 4cf7679 | 2016-01-16 22:02:57 +0100 | [diff] [blame] | 3159 | * Delete directory "name". |
| 3160 | * Return 0 on success, -1 on error. |
| 3161 | */ |
| 3162 | int |
| 3163 | mch_rmdir(char_u *name) |
| 3164 | { |
| 3165 | #ifdef FEAT_MBYTE |
| 3166 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 3167 | { |
| 3168 | WCHAR *p; |
| 3169 | int retval; |
| 3170 | |
| 3171 | p = enc_to_utf16(name, NULL); |
| 3172 | if (p == NULL) |
| 3173 | return -1; |
| 3174 | retval = _wrmdir(p); |
| 3175 | vim_free(p); |
| 3176 | return retval; |
| 3177 | } |
| 3178 | #endif |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 3179 | return _rmdir((const char *)name); |
Bram Moolenaar | 4cf7679 | 2016-01-16 22:02:57 +0100 | [diff] [blame] | 3180 | } |
| 3181 | |
| 3182 | /* |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3183 | * Return TRUE if file "fname" has more than one link. |
| 3184 | */ |
| 3185 | int |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3186 | mch_is_hard_link(char_u *fname) |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3187 | { |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3188 | BY_HANDLE_FILE_INFORMATION info; |
| 3189 | |
| 3190 | return win32_fileinfo(fname, &info) == FILEINFO_OK |
| 3191 | && info.nNumberOfLinks > 1; |
| 3192 | } |
| 3193 | |
| 3194 | /* |
Bram Moolenaar | 203258c | 2016-01-17 22:15:16 +0100 | [diff] [blame] | 3195 | * Return TRUE if "name" is a symbolic link (or a junction). |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3196 | */ |
| 3197 | int |
Bram Moolenaar | 203258c | 2016-01-17 22:15:16 +0100 | [diff] [blame] | 3198 | mch_is_symbolic_link(char_u *name) |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3199 | { |
| 3200 | HANDLE hFind; |
| 3201 | int res = FALSE; |
| 3202 | WIN32_FIND_DATAA findDataA; |
| 3203 | DWORD fileFlags = 0, reparseTag = 0; |
| 3204 | #ifdef FEAT_MBYTE |
| 3205 | WCHAR *wn = NULL; |
| 3206 | WIN32_FIND_DATAW findDataW; |
| 3207 | |
| 3208 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
Bram Moolenaar | 203258c | 2016-01-17 22:15:16 +0100 | [diff] [blame] | 3209 | wn = enc_to_utf16(name, NULL); |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3210 | if (wn != NULL) |
| 3211 | { |
| 3212 | hFind = FindFirstFileW(wn, &findDataW); |
| 3213 | vim_free(wn); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3214 | if (hFind != INVALID_HANDLE_VALUE) |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3215 | { |
| 3216 | fileFlags = findDataW.dwFileAttributes; |
| 3217 | reparseTag = findDataW.dwReserved0; |
| 3218 | } |
| 3219 | } |
Bram Moolenaar | 03e114b | 2013-06-16 16:34:56 +0200 | [diff] [blame] | 3220 | else |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3221 | #endif |
Bram Moolenaar | 03e114b | 2013-06-16 16:34:56 +0200 | [diff] [blame] | 3222 | { |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 3223 | hFind = FindFirstFile((LPCSTR)name, &findDataA); |
Bram Moolenaar | 03e114b | 2013-06-16 16:34:56 +0200 | [diff] [blame] | 3224 | if (hFind != INVALID_HANDLE_VALUE) |
| 3225 | { |
| 3226 | fileFlags = findDataA.dwFileAttributes; |
| 3227 | reparseTag = findDataA.dwReserved0; |
| 3228 | } |
| 3229 | } |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3230 | |
| 3231 | if (hFind != INVALID_HANDLE_VALUE) |
| 3232 | FindClose(hFind); |
| 3233 | |
| 3234 | if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT) |
Bram Moolenaar | 203258c | 2016-01-17 22:15:16 +0100 | [diff] [blame] | 3235 | && (reparseTag == IO_REPARSE_TAG_SYMLINK |
| 3236 | || reparseTag == IO_REPARSE_TAG_MOUNT_POINT)) |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3237 | res = TRUE; |
| 3238 | |
| 3239 | return res; |
| 3240 | } |
| 3241 | |
| 3242 | /* |
| 3243 | * Return TRUE if file "fname" has more than one link or if it is a symbolic |
| 3244 | * link. |
| 3245 | */ |
| 3246 | int |
| 3247 | mch_is_linked(char_u *fname) |
| 3248 | { |
| 3249 | if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname)) |
| 3250 | return TRUE; |
| 3251 | return FALSE; |
| 3252 | } |
| 3253 | |
| 3254 | /* |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3255 | * Get the by-handle-file-information for "fname". |
| 3256 | * Returns FILEINFO_OK when OK. |
| 3257 | * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed. |
| 3258 | * Returns FILEINFO_READ_FAIL when CreateFile() failed. |
| 3259 | * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed. |
| 3260 | */ |
| 3261 | int |
| 3262 | win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info) |
| 3263 | { |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3264 | HANDLE hFile; |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3265 | int res = FILEINFO_READ_FAIL; |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3266 | #ifdef FEAT_MBYTE |
| 3267 | WCHAR *wn = NULL; |
| 3268 | |
| 3269 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3270 | { |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 3271 | wn = enc_to_utf16(fname, NULL); |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3272 | if (wn == NULL) |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3273 | return FILEINFO_ENC_FAIL; |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3274 | } |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3275 | if (wn != NULL) |
| 3276 | { |
| 3277 | hFile = CreateFileW(wn, /* file name */ |
| 3278 | GENERIC_READ, /* access mode */ |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3279 | FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */ |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3280 | NULL, /* security descriptor */ |
| 3281 | OPEN_EXISTING, /* creation disposition */ |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3282 | FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */ |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3283 | NULL); /* handle to template file */ |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3284 | vim_free(wn); |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3285 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3286 | else |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3287 | #endif |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 3288 | hFile = CreateFile((LPCSTR)fname, /* file name */ |
| 3289 | GENERIC_READ, /* access mode */ |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3290 | FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */ |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3291 | NULL, /* security descriptor */ |
| 3292 | OPEN_EXISTING, /* creation disposition */ |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3293 | FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */ |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3294 | NULL); /* handle to template file */ |
| 3295 | |
| 3296 | if (hFile != INVALID_HANDLE_VALUE) |
| 3297 | { |
Bram Moolenaar | 1c32dff | 2011-05-05 16:41:24 +0200 | [diff] [blame] | 3298 | if (GetFileInformationByHandle(hFile, info) != 0) |
| 3299 | res = FILEINFO_OK; |
| 3300 | else |
| 3301 | res = FILEINFO_INFO_FAIL; |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3302 | CloseHandle(hFile); |
| 3303 | } |
| 3304 | |
Bram Moolenaar | 03f4855 | 2006-02-28 23:52:23 +0000 | [diff] [blame] | 3305 | return res; |
| 3306 | } |
| 3307 | |
| 3308 | /* |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3309 | * get file attributes for `name' |
| 3310 | * -1 : error |
| 3311 | * else FILE_ATTRIBUTE_* defined in winnt.h |
| 3312 | */ |
Bram Moolenaar | ffa2220 | 2013-11-21 12:34:11 +0100 | [diff] [blame] | 3313 | static int |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3314 | win32_getattrs(char_u *name) |
| 3315 | { |
| 3316 | int attr; |
| 3317 | #ifdef FEAT_MBYTE |
| 3318 | WCHAR *p = NULL; |
| 3319 | |
| 3320 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 3321 | p = enc_to_utf16(name, NULL); |
| 3322 | |
| 3323 | if (p != NULL) |
| 3324 | { |
| 3325 | attr = GetFileAttributesW(p); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3326 | vim_free(p); |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3327 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3328 | else |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3329 | #endif |
| 3330 | attr = GetFileAttributes((char *)name); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3331 | |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3332 | return attr; |
| 3333 | } |
| 3334 | |
| 3335 | /* |
| 3336 | * set file attributes for `name' to `attrs' |
| 3337 | * |
| 3338 | * return -1 for failure, 0 otherwise |
| 3339 | */ |
| 3340 | static |
| 3341 | int |
| 3342 | win32_setattrs(char_u *name, int attrs) |
| 3343 | { |
| 3344 | int res; |
| 3345 | #ifdef FEAT_MBYTE |
| 3346 | WCHAR *p = NULL; |
| 3347 | |
| 3348 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 3349 | p = enc_to_utf16(name, NULL); |
| 3350 | |
| 3351 | if (p != NULL) |
| 3352 | { |
| 3353 | res = SetFileAttributesW(p, attrs); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3354 | vim_free(p); |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3355 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3356 | else |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3357 | #endif |
| 3358 | res = SetFileAttributes((char *)name, attrs); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3359 | |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3360 | return res ? 0 : -1; |
| 3361 | } |
| 3362 | |
| 3363 | /* |
| 3364 | * Set archive flag for "name". |
| 3365 | */ |
| 3366 | static |
| 3367 | int |
| 3368 | win32_set_archive(char_u *name) |
| 3369 | { |
| 3370 | int attrs = win32_getattrs(name); |
| 3371 | if (attrs == -1) |
| 3372 | return -1; |
| 3373 | |
| 3374 | attrs |= FILE_ATTRIBUTE_ARCHIVE; |
| 3375 | return win32_setattrs(name, attrs); |
| 3376 | } |
| 3377 | |
| 3378 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3379 | * Return TRUE if file or directory "name" is writable (not readonly). |
| 3380 | * Strange semantics of Win32: a readonly directory is writable, but you can't |
| 3381 | * delete a file. Let's say this means it is writable. |
| 3382 | */ |
| 3383 | int |
| 3384 | mch_writable(char_u *name) |
| 3385 | { |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3386 | int attrs = win32_getattrs(name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3387 | |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 3388 | return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY) |
| 3389 | || (attrs & FILE_ATTRIBUTE_DIRECTORY))); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3390 | } |
| 3391 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3392 | /* |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 3393 | * Return TRUE if "name" can be executed, FALSE if not. |
Bram Moolenaar | 77b7710 | 2015-03-21 22:18:41 +0100 | [diff] [blame] | 3394 | * If "use_path" is FALSE only check if "name" is executable. |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 3395 | * When returning TRUE and "path" is not NULL save the path and set "*path" to |
| 3396 | * the allocated memory. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3397 | */ |
| 3398 | int |
Bram Moolenaar | 77b7710 | 2015-03-21 22:18:41 +0100 | [diff] [blame] | 3399 | mch_can_exe(char_u *name, char_u **path, int use_path) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3400 | { |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 3401 | char_u buf[_MAX_PATH]; |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 3402 | int len = (int)STRLEN(name); |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 3403 | char_u *p; |
| 3404 | |
| 3405 | if (len >= _MAX_PATH) /* safety check */ |
| 3406 | return FALSE; |
| 3407 | |
| 3408 | /* If there already is an extension try using the name directly. Also do |
| 3409 | * this with a Unix-shell like 'shell'. */ |
| 3410 | if (vim_strchr(gettail(name), '.') != NULL |
| 3411 | || strstr((char *)gettail(p_sh), "sh") != NULL) |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 3412 | if (executable_exists((char *)name, path, use_path)) |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 3413 | return TRUE; |
| 3414 | |
| 3415 | /* |
| 3416 | * Loop over all extensions in $PATHEXT. |
| 3417 | */ |
Bram Moolenaar | fe3ca8d | 2005-07-18 21:43:02 +0000 | [diff] [blame] | 3418 | vim_strncpy(buf, name, _MAX_PATH - 1); |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 3419 | p = mch_getenv("PATHEXT"); |
| 3420 | if (p == NULL) |
| 3421 | p = (char_u *)".com;.exe;.bat;.cmd"; |
| 3422 | while (*p) |
| 3423 | { |
| 3424 | if (p[0] == '.' && (p[1] == NUL || p[1] == ';')) |
| 3425 | { |
| 3426 | /* A single "." means no extension is added. */ |
| 3427 | buf[len] = NUL; |
| 3428 | ++p; |
| 3429 | if (*p) |
| 3430 | ++p; |
| 3431 | } |
| 3432 | else |
| 3433 | copy_option_part(&p, buf + len, _MAX_PATH - len, ";"); |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 3434 | if (executable_exists((char *)buf, path, use_path)) |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 3435 | return TRUE; |
| 3436 | } |
| 3437 | return FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3438 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3439 | |
| 3440 | /* |
| 3441 | * Check what "name" is: |
| 3442 | * NODE_NORMAL: file or directory (or doesn't exist) |
| 3443 | * NODE_WRITABLE: writable device, socket, fifo, etc. |
| 3444 | * NODE_OTHER: non-writable things |
| 3445 | */ |
| 3446 | int |
| 3447 | mch_nodetype(char_u *name) |
| 3448 | { |
| 3449 | HANDLE hFile; |
| 3450 | int type; |
Bram Moolenaar | 4dee1bb | 2013-08-30 17:11:33 +0200 | [diff] [blame] | 3451 | #ifdef FEAT_MBYTE |
| 3452 | WCHAR *wn = NULL; |
| 3453 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3454 | |
Bram Moolenaar | 043545e | 2006-10-10 16:44:07 +0000 | [diff] [blame] | 3455 | /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to |
| 3456 | * read from it later will cause Vim to hang. Thus return NODE_WRITABLE |
| 3457 | * here. */ |
| 3458 | if (STRNCMP(name, "\\\\.\\", 4) == 0) |
| 3459 | return NODE_WRITABLE; |
| 3460 | |
Bram Moolenaar | 4dee1bb | 2013-08-30 17:11:33 +0200 | [diff] [blame] | 3461 | #ifdef FEAT_MBYTE |
| 3462 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
Bram Moolenaar | 4dee1bb | 2013-08-30 17:11:33 +0200 | [diff] [blame] | 3463 | wn = enc_to_utf16(name, NULL); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3464 | |
| 3465 | if (wn != NULL) |
| 3466 | { |
| 3467 | hFile = CreateFileW(wn, /* file name */ |
| 3468 | GENERIC_WRITE, /* access mode */ |
| 3469 | 0, /* share mode */ |
| 3470 | NULL, /* security descriptor */ |
| 3471 | OPEN_EXISTING, /* creation disposition */ |
| 3472 | 0, /* file attributes */ |
| 3473 | NULL); /* handle to template file */ |
| 3474 | vim_free(wn); |
Bram Moolenaar | 4dee1bb | 2013-08-30 17:11:33 +0200 | [diff] [blame] | 3475 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3476 | else |
Bram Moolenaar | 4dee1bb | 2013-08-30 17:11:33 +0200 | [diff] [blame] | 3477 | #endif |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 3478 | hFile = CreateFile((LPCSTR)name, /* file name */ |
| 3479 | GENERIC_WRITE, /* access mode */ |
| 3480 | 0, /* share mode */ |
| 3481 | NULL, /* security descriptor */ |
| 3482 | OPEN_EXISTING, /* creation disposition */ |
| 3483 | 0, /* file attributes */ |
| 3484 | NULL); /* handle to template file */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3485 | |
| 3486 | if (hFile == INVALID_HANDLE_VALUE) |
| 3487 | return NODE_NORMAL; |
| 3488 | |
| 3489 | type = GetFileType(hFile); |
| 3490 | CloseHandle(hFile); |
| 3491 | if (type == FILE_TYPE_CHAR) |
| 3492 | return NODE_WRITABLE; |
| 3493 | if (type == FILE_TYPE_DISK) |
| 3494 | return NODE_NORMAL; |
| 3495 | return NODE_OTHER; |
| 3496 | } |
| 3497 | |
| 3498 | #ifdef HAVE_ACL |
| 3499 | struct my_acl |
| 3500 | { |
| 3501 | PSECURITY_DESCRIPTOR pSecurityDescriptor; |
| 3502 | PSID pSidOwner; |
| 3503 | PSID pSidGroup; |
| 3504 | PACL pDacl; |
| 3505 | PACL pSacl; |
| 3506 | }; |
| 3507 | #endif |
| 3508 | |
| 3509 | /* |
| 3510 | * Return a pointer to the ACL of file "fname" in allocated memory. |
| 3511 | * Return NULL if the ACL is not available for whatever reason. |
| 3512 | */ |
| 3513 | vim_acl_T |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3514 | mch_get_acl(char_u *fname) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3515 | { |
| 3516 | #ifndef HAVE_ACL |
| 3517 | return (vim_acl_T)NULL; |
| 3518 | #else |
| 3519 | struct my_acl *p = NULL; |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 3520 | DWORD err; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3521 | |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3522 | p = (struct my_acl *)alloc_clear((unsigned)sizeof(struct my_acl)); |
| 3523 | if (p != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3524 | { |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 3525 | # ifdef FEAT_MBYTE |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3526 | WCHAR *wn = NULL; |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 3527 | |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3528 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 3529 | wn = enc_to_utf16(fname, NULL); |
| 3530 | if (wn != NULL) |
| 3531 | { |
| 3532 | /* Try to retrieve the entire security descriptor. */ |
| 3533 | err = GetNamedSecurityInfoW( |
| 3534 | wn, // Abstract filename |
| 3535 | SE_FILE_OBJECT, // File Object |
| 3536 | OWNER_SECURITY_INFORMATION | |
| 3537 | GROUP_SECURITY_INFORMATION | |
| 3538 | DACL_SECURITY_INFORMATION | |
| 3539 | SACL_SECURITY_INFORMATION, |
| 3540 | &p->pSidOwner, // Ownership information. |
| 3541 | &p->pSidGroup, // Group membership. |
| 3542 | &p->pDacl, // Discretionary information. |
| 3543 | &p->pSacl, // For auditing purposes. |
| 3544 | &p->pSecurityDescriptor); |
| 3545 | if (err == ERROR_ACCESS_DENIED || |
| 3546 | err == ERROR_PRIVILEGE_NOT_HELD) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3547 | { |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3548 | /* Retrieve only DACL. */ |
| 3549 | (void)GetNamedSecurityInfoW( |
| 3550 | wn, |
| 3551 | SE_FILE_OBJECT, |
| 3552 | DACL_SECURITY_INFORMATION, |
| 3553 | NULL, |
| 3554 | NULL, |
| 3555 | &p->pDacl, |
| 3556 | NULL, |
| 3557 | &p->pSecurityDescriptor); |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 3558 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3559 | if (p->pSecurityDescriptor == NULL) |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 3560 | { |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3561 | mch_free_acl((vim_acl_T)p); |
| 3562 | p = NULL; |
| 3563 | } |
| 3564 | vim_free(wn); |
| 3565 | } |
| 3566 | else |
| 3567 | # endif |
| 3568 | { |
| 3569 | /* Try to retrieve the entire security descriptor. */ |
| 3570 | err = GetNamedSecurityInfo( |
| 3571 | (LPSTR)fname, // Abstract filename |
| 3572 | SE_FILE_OBJECT, // File Object |
| 3573 | OWNER_SECURITY_INFORMATION | |
| 3574 | GROUP_SECURITY_INFORMATION | |
| 3575 | DACL_SECURITY_INFORMATION | |
| 3576 | SACL_SECURITY_INFORMATION, |
| 3577 | &p->pSidOwner, // Ownership information. |
| 3578 | &p->pSidGroup, // Group membership. |
| 3579 | &p->pDacl, // Discretionary information. |
| 3580 | &p->pSacl, // For auditing purposes. |
| 3581 | &p->pSecurityDescriptor); |
| 3582 | if (err == ERROR_ACCESS_DENIED || |
| 3583 | err == ERROR_PRIVILEGE_NOT_HELD) |
| 3584 | { |
| 3585 | /* Retrieve only DACL. */ |
| 3586 | (void)GetNamedSecurityInfo( |
| 3587 | (LPSTR)fname, |
| 3588 | SE_FILE_OBJECT, |
| 3589 | DACL_SECURITY_INFORMATION, |
| 3590 | NULL, |
| 3591 | NULL, |
| 3592 | &p->pDacl, |
| 3593 | NULL, |
| 3594 | &p->pSecurityDescriptor); |
| 3595 | } |
| 3596 | if (p->pSecurityDescriptor == NULL) |
| 3597 | { |
| 3598 | mch_free_acl((vim_acl_T)p); |
| 3599 | p = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3600 | } |
| 3601 | } |
| 3602 | } |
| 3603 | |
| 3604 | return (vim_acl_T)p; |
| 3605 | #endif |
| 3606 | } |
| 3607 | |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 3608 | #ifdef HAVE_ACL |
| 3609 | /* |
| 3610 | * Check if "acl" contains inherited ACE. |
| 3611 | */ |
| 3612 | static BOOL |
| 3613 | is_acl_inherited(PACL acl) |
| 3614 | { |
| 3615 | DWORD i; |
| 3616 | ACL_SIZE_INFORMATION acl_info; |
| 3617 | PACCESS_ALLOWED_ACE ace; |
| 3618 | |
| 3619 | acl_info.AceCount = 0; |
| 3620 | GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation); |
| 3621 | for (i = 0; i < acl_info.AceCount; i++) |
| 3622 | { |
| 3623 | GetAce(acl, i, (LPVOID *)&ace); |
| 3624 | if (ace->Header.AceFlags & INHERITED_ACE) |
| 3625 | return TRUE; |
| 3626 | } |
| 3627 | return FALSE; |
| 3628 | } |
| 3629 | #endif |
| 3630 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3631 | /* |
| 3632 | * Set the ACL of file "fname" to "acl" (unless it's NULL). |
| 3633 | * Errors are ignored. |
| 3634 | * This must only be called with "acl" equal to what mch_get_acl() returned. |
| 3635 | */ |
| 3636 | void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3637 | mch_set_acl(char_u *fname, vim_acl_T acl) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3638 | { |
| 3639 | #ifdef HAVE_ACL |
| 3640 | struct my_acl *p = (struct my_acl *)acl; |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 3641 | SECURITY_INFORMATION sec_info = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3642 | |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3643 | if (p != NULL) |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 3644 | { |
| 3645 | # ifdef FEAT_MBYTE |
| 3646 | WCHAR *wn = NULL; |
| 3647 | # endif |
| 3648 | |
| 3649 | /* Set security flags */ |
| 3650 | if (p->pSidOwner) |
| 3651 | sec_info |= OWNER_SECURITY_INFORMATION; |
| 3652 | if (p->pSidGroup) |
| 3653 | sec_info |= GROUP_SECURITY_INFORMATION; |
| 3654 | if (p->pDacl) |
| 3655 | { |
| 3656 | sec_info |= DACL_SECURITY_INFORMATION; |
| 3657 | /* Do not inherit its parent's DACL. |
| 3658 | * If the DACL is inherited, Cygwin permissions would be changed. |
| 3659 | */ |
| 3660 | if (!is_acl_inherited(p->pDacl)) |
| 3661 | sec_info |= PROTECTED_DACL_SECURITY_INFORMATION; |
| 3662 | } |
| 3663 | if (p->pSacl) |
| 3664 | sec_info |= SACL_SECURITY_INFORMATION; |
| 3665 | |
| 3666 | # ifdef FEAT_MBYTE |
| 3667 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 3668 | wn = enc_to_utf16(fname, NULL); |
| 3669 | if (wn != NULL) |
| 3670 | { |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3671 | (void)SetNamedSecurityInfoW( |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 3672 | wn, // Abstract filename |
| 3673 | SE_FILE_OBJECT, // File Object |
| 3674 | sec_info, |
| 3675 | p->pSidOwner, // Ownership information. |
| 3676 | p->pSidGroup, // Group membership. |
| 3677 | p->pDacl, // Discretionary information. |
| 3678 | p->pSacl // For auditing purposes. |
| 3679 | ); |
| 3680 | vim_free(wn); |
| 3681 | } |
| 3682 | else |
| 3683 | # endif |
| 3684 | { |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3685 | (void)SetNamedSecurityInfo( |
Bram Moolenaar | 2751592 | 2013-06-29 15:36:26 +0200 | [diff] [blame] | 3686 | (LPSTR)fname, // Abstract filename |
| 3687 | SE_FILE_OBJECT, // File Object |
| 3688 | sec_info, |
| 3689 | p->pSidOwner, // Ownership information. |
| 3690 | p->pSidGroup, // Group membership. |
| 3691 | p->pDacl, // Discretionary information. |
| 3692 | p->pSacl // For auditing purposes. |
| 3693 | ); |
| 3694 | } |
| 3695 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3696 | #endif |
| 3697 | } |
| 3698 | |
| 3699 | void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3700 | mch_free_acl(vim_acl_T acl) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3701 | { |
| 3702 | #ifdef HAVE_ACL |
| 3703 | struct my_acl *p = (struct my_acl *)acl; |
| 3704 | |
| 3705 | if (p != NULL) |
| 3706 | { |
| 3707 | LocalFree(p->pSecurityDescriptor); // Free the memory just in case |
| 3708 | vim_free(p); |
| 3709 | } |
| 3710 | #endif |
| 3711 | } |
| 3712 | |
| 3713 | #ifndef FEAT_GUI_W32 |
| 3714 | |
| 3715 | /* |
| 3716 | * handler for ctrl-break, ctrl-c interrupts, and fatal events. |
| 3717 | */ |
| 3718 | static BOOL WINAPI |
| 3719 | handler_routine( |
| 3720 | DWORD dwCtrlType) |
| 3721 | { |
| 3722 | switch (dwCtrlType) |
| 3723 | { |
| 3724 | case CTRL_C_EVENT: |
| 3725 | if (ctrl_c_interrupts) |
| 3726 | g_fCtrlCPressed = TRUE; |
| 3727 | return TRUE; |
| 3728 | |
| 3729 | case CTRL_BREAK_EVENT: |
| 3730 | g_fCBrkPressed = TRUE; |
| 3731 | return TRUE; |
| 3732 | |
| 3733 | /* fatal events: shut down gracefully */ |
| 3734 | case CTRL_CLOSE_EVENT: |
| 3735 | case CTRL_LOGOFF_EVENT: |
| 3736 | case CTRL_SHUTDOWN_EVENT: |
| 3737 | windgoto((int)Rows - 1, 0); |
| 3738 | g_fForceExit = TRUE; |
| 3739 | |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 3740 | vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3741 | (dwCtrlType == CTRL_CLOSE_EVENT |
| 3742 | ? _("close") |
| 3743 | : dwCtrlType == CTRL_LOGOFF_EVENT |
| 3744 | ? _("logoff") |
| 3745 | : _("shutdown"))); |
| 3746 | #ifdef DEBUG |
| 3747 | OutputDebugString(IObuff); |
| 3748 | #endif |
| 3749 | |
| 3750 | preserve_exit(); /* output IObuff, preserve files and exit */ |
| 3751 | |
| 3752 | return TRUE; /* not reached */ |
| 3753 | |
| 3754 | default: |
| 3755 | return FALSE; |
| 3756 | } |
| 3757 | } |
| 3758 | |
| 3759 | |
| 3760 | /* |
| 3761 | * set the tty in (raw) ? "raw" : "cooked" mode |
| 3762 | */ |
| 3763 | void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3764 | mch_settmode(int tmode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3765 | { |
| 3766 | DWORD cmodein; |
| 3767 | DWORD cmodeout; |
| 3768 | BOOL bEnableHandler; |
| 3769 | |
| 3770 | GetConsoleMode(g_hConIn, &cmodein); |
| 3771 | GetConsoleMode(g_hConOut, &cmodeout); |
| 3772 | if (tmode == TMODE_RAW) |
| 3773 | { |
| 3774 | cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | |
| 3775 | ENABLE_ECHO_INPUT); |
| 3776 | #ifdef FEAT_MOUSE |
| 3777 | if (g_fMouseActive) |
| 3778 | cmodein |= ENABLE_MOUSE_INPUT; |
| 3779 | #endif |
| 3780 | cmodeout &= ~(ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT); |
| 3781 | bEnableHandler = TRUE; |
| 3782 | } |
| 3783 | else /* cooked */ |
| 3784 | { |
| 3785 | cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT | |
| 3786 | ENABLE_ECHO_INPUT); |
| 3787 | cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT); |
| 3788 | bEnableHandler = FALSE; |
| 3789 | } |
| 3790 | SetConsoleMode(g_hConIn, cmodein); |
| 3791 | SetConsoleMode(g_hConOut, cmodeout); |
| 3792 | SetConsoleCtrlHandler(handler_routine, bEnableHandler); |
| 3793 | |
| 3794 | #ifdef MCH_WRITE_DUMP |
| 3795 | if (fdDump) |
| 3796 | { |
| 3797 | fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n", |
| 3798 | tmode == TMODE_RAW ? "raw" : |
| 3799 | tmode == TMODE_COOK ? "cooked" : "normal", |
| 3800 | cmodein, cmodeout); |
| 3801 | fflush(fdDump); |
| 3802 | } |
| 3803 | #endif |
| 3804 | } |
| 3805 | |
| 3806 | |
| 3807 | /* |
| 3808 | * Get the size of the current window in `Rows' and `Columns' |
| 3809 | * Return OK when size could be determined, FAIL otherwise. |
| 3810 | */ |
| 3811 | int |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3812 | mch_get_shellsize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3813 | { |
| 3814 | CONSOLE_SCREEN_BUFFER_INFO csbi; |
| 3815 | |
| 3816 | if (!g_fTermcapMode && g_cbTermcap.IsValid) |
| 3817 | { |
| 3818 | /* |
| 3819 | * For some reason, we are trying to get the screen dimensions |
| 3820 | * even though we are not in termcap mode. The 'Rows' and 'Columns' |
| 3821 | * variables are really intended to mean the size of Vim screen |
| 3822 | * while in termcap mode. |
| 3823 | */ |
| 3824 | Rows = g_cbTermcap.Info.dwSize.Y; |
| 3825 | Columns = g_cbTermcap.Info.dwSize.X; |
| 3826 | } |
| 3827 | else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) |
| 3828 | { |
| 3829 | Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1; |
| 3830 | Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1; |
| 3831 | } |
| 3832 | else |
| 3833 | { |
| 3834 | Rows = 25; |
| 3835 | Columns = 80; |
| 3836 | } |
| 3837 | return OK; |
| 3838 | } |
| 3839 | |
| 3840 | /* |
| 3841 | * Set a console window to `xSize' * `ySize' |
| 3842 | */ |
| 3843 | static void |
| 3844 | ResizeConBufAndWindow( |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3845 | HANDLE hConsole, |
| 3846 | int xSize, |
| 3847 | int ySize) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3848 | { |
| 3849 | CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */ |
| 3850 | SMALL_RECT srWindowRect; /* hold the new console size */ |
| 3851 | COORD coordScreen; |
| 3852 | |
| 3853 | #ifdef MCH_WRITE_DUMP |
| 3854 | if (fdDump) |
| 3855 | { |
| 3856 | fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize); |
| 3857 | fflush(fdDump); |
| 3858 | } |
| 3859 | #endif |
| 3860 | |
| 3861 | /* get the largest size we can size the console window to */ |
| 3862 | coordScreen = GetLargestConsoleWindowSize(hConsole); |
| 3863 | |
| 3864 | /* define the new console window size and scroll position */ |
| 3865 | srWindowRect.Left = srWindowRect.Top = (SHORT) 0; |
| 3866 | srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1); |
| 3867 | srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1); |
| 3868 | |
| 3869 | if (GetConsoleScreenBufferInfo(g_hConOut, &csbi)) |
| 3870 | { |
| 3871 | int sx, sy; |
| 3872 | |
| 3873 | sx = csbi.srWindow.Right - csbi.srWindow.Left + 1; |
| 3874 | sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1; |
| 3875 | if (sy < ySize || sx < xSize) |
| 3876 | { |
| 3877 | /* |
| 3878 | * Increasing number of lines/columns, do buffer first. |
| 3879 | * Use the maximal size in x and y direction. |
| 3880 | */ |
| 3881 | if (sy < ySize) |
| 3882 | coordScreen.Y = ySize; |
| 3883 | else |
| 3884 | coordScreen.Y = sy; |
| 3885 | if (sx < xSize) |
| 3886 | coordScreen.X = xSize; |
| 3887 | else |
| 3888 | coordScreen.X = sx; |
| 3889 | SetConsoleScreenBufferSize(hConsole, coordScreen); |
| 3890 | } |
| 3891 | } |
| 3892 | |
| 3893 | if (!SetConsoleWindowInfo(g_hConOut, TRUE, &srWindowRect)) |
| 3894 | { |
| 3895 | #ifdef MCH_WRITE_DUMP |
| 3896 | if (fdDump) |
| 3897 | { |
| 3898 | fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n", |
| 3899 | GetLastError()); |
| 3900 | fflush(fdDump); |
| 3901 | } |
| 3902 | #endif |
| 3903 | } |
| 3904 | |
| 3905 | /* define the new console buffer size */ |
| 3906 | coordScreen.X = xSize; |
| 3907 | coordScreen.Y = ySize; |
| 3908 | |
| 3909 | if (!SetConsoleScreenBufferSize(hConsole, coordScreen)) |
| 3910 | { |
| 3911 | #ifdef MCH_WRITE_DUMP |
| 3912 | if (fdDump) |
| 3913 | { |
| 3914 | fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n", |
| 3915 | GetLastError()); |
| 3916 | fflush(fdDump); |
| 3917 | } |
| 3918 | #endif |
| 3919 | } |
| 3920 | } |
| 3921 | |
| 3922 | |
| 3923 | /* |
| 3924 | * Set the console window to `Rows' * `Columns' |
| 3925 | */ |
| 3926 | void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3927 | mch_set_shellsize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3928 | { |
| 3929 | COORD coordScreen; |
| 3930 | |
| 3931 | /* Don't change window size while still starting up */ |
| 3932 | if (suppress_winsize != 0) |
| 3933 | { |
| 3934 | suppress_winsize = 2; |
| 3935 | return; |
| 3936 | } |
| 3937 | |
| 3938 | if (term_console) |
| 3939 | { |
| 3940 | coordScreen = GetLargestConsoleWindowSize(g_hConOut); |
| 3941 | |
| 3942 | /* Clamp Rows and Columns to reasonable values */ |
| 3943 | if (Rows > coordScreen.Y) |
| 3944 | Rows = coordScreen.Y; |
| 3945 | if (Columns > coordScreen.X) |
| 3946 | Columns = coordScreen.X; |
| 3947 | |
| 3948 | ResizeConBufAndWindow(g_hConOut, Columns, Rows); |
| 3949 | } |
| 3950 | } |
| 3951 | |
| 3952 | /* |
| 3953 | * Rows and/or Columns has changed. |
| 3954 | */ |
| 3955 | void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3956 | mch_new_shellsize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3957 | { |
| 3958 | set_scroll_region(0, 0, Columns - 1, Rows - 1); |
| 3959 | } |
| 3960 | |
| 3961 | |
| 3962 | /* |
| 3963 | * Called when started up, to set the winsize that was delayed. |
| 3964 | */ |
| 3965 | void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 3966 | mch_set_winsize_now(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3967 | { |
| 3968 | if (suppress_winsize == 2) |
| 3969 | { |
| 3970 | suppress_winsize = 0; |
| 3971 | mch_set_shellsize(); |
| 3972 | shell_resized(); |
| 3973 | } |
| 3974 | suppress_winsize = 0; |
| 3975 | } |
| 3976 | #endif /* FEAT_GUI_W32 */ |
| 3977 | |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 3978 | static BOOL |
| 3979 | vim_create_process( |
Bram Moolenaar | 36c85b2 | 2013-12-12 20:25:44 +0100 | [diff] [blame] | 3980 | char *cmd, |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 3981 | BOOL inherit_handles, |
Bram Moolenaar | 3f1138e | 2014-01-05 13:29:26 +0100 | [diff] [blame] | 3982 | DWORD flags, |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 3983 | STARTUPINFO *si, |
| 3984 | PROCESS_INFORMATION *pi) |
| 3985 | { |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 3986 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 3987 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 3988 | { |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 3989 | WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL); |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 3990 | |
| 3991 | if (wcmd != NULL) |
| 3992 | { |
| 3993 | BOOL ret; |
| 3994 | ret = CreateProcessW( |
| 3995 | NULL, /* Executable name */ |
| 3996 | wcmd, /* Command to execute */ |
| 3997 | NULL, /* Process security attributes */ |
| 3998 | NULL, /* Thread security attributes */ |
| 3999 | inherit_handles, /* Inherit handles */ |
| 4000 | flags, /* Creation flags */ |
| 4001 | NULL, /* Environment */ |
| 4002 | NULL, /* Current directory */ |
Bram Moolenaar | 36c85b2 | 2013-12-12 20:25:44 +0100 | [diff] [blame] | 4003 | (LPSTARTUPINFOW)si, /* Startup information */ |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 4004 | pi); /* Process information */ |
| 4005 | vim_free(wcmd); |
| 4006 | return ret; |
| 4007 | } |
| 4008 | } |
| 4009 | #endif |
| 4010 | return CreateProcess( |
| 4011 | NULL, /* Executable name */ |
| 4012 | cmd, /* Command to execute */ |
| 4013 | NULL, /* Process security attributes */ |
| 4014 | NULL, /* Thread security attributes */ |
| 4015 | inherit_handles, /* Inherit handles */ |
| 4016 | flags, /* Creation flags */ |
| 4017 | NULL, /* Environment */ |
| 4018 | NULL, /* Current directory */ |
| 4019 | si, /* Startup information */ |
| 4020 | pi); /* Process information */ |
| 4021 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4022 | |
| 4023 | |
Bram Moolenaar | b2964f2 | 2017-03-21 19:29:26 +0100 | [diff] [blame] | 4024 | static HINSTANCE |
| 4025 | vim_shell_execute( |
| 4026 | char *cmd, |
| 4027 | INT n_show_cmd) |
| 4028 | { |
| 4029 | #ifdef FEAT_MBYTE |
| 4030 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 4031 | { |
| 4032 | WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL); |
| 4033 | if (wcmd != NULL) |
| 4034 | { |
| 4035 | HINSTANCE ret; |
| 4036 | ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd); |
| 4037 | vim_free(wcmd); |
| 4038 | return ret; |
| 4039 | } |
| 4040 | } |
| 4041 | #endif |
| 4042 | return ShellExecute(NULL, NULL, cmd, NULL, NULL, n_show_cmd); |
| 4043 | } |
| 4044 | |
| 4045 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4046 | #if defined(FEAT_GUI_W32) || defined(PROTO) |
| 4047 | |
| 4048 | /* |
| 4049 | * Specialised version of system() for Win32 GUI mode. |
| 4050 | * This version proceeds as follows: |
| 4051 | * 1. Create a console window for use by the subprocess |
| 4052 | * 2. Run the subprocess (it gets the allocated console by default) |
| 4053 | * 3. Wait for the subprocess to terminate and get its exit code |
| 4054 | * 4. Prompt the user to press a key to close the console window |
| 4055 | */ |
| 4056 | static int |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4057 | mch_system_classic(char *cmd, int options) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4058 | { |
| 4059 | STARTUPINFO si; |
| 4060 | PROCESS_INFORMATION pi; |
| 4061 | DWORD ret = 0; |
| 4062 | HWND hwnd = GetFocus(); |
| 4063 | |
| 4064 | si.cb = sizeof(si); |
| 4065 | si.lpReserved = NULL; |
| 4066 | si.lpDesktop = NULL; |
| 4067 | si.lpTitle = NULL; |
| 4068 | si.dwFlags = STARTF_USESHOWWINDOW; |
| 4069 | /* |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 4070 | * It's nicer to run a filter command in a minimized window. |
Bram Moolenaar | 96e5cee | 2010-11-24 12:35:21 +0100 | [diff] [blame] | 4071 | * Don't activate the window to keep focus on Vim. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4072 | */ |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 4073 | if (options & SHELL_DOOUT) |
Bram Moolenaar | 96e5cee | 2010-11-24 12:35:21 +0100 | [diff] [blame] | 4074 | si.wShowWindow = SW_SHOWMINNOACTIVE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4075 | else |
| 4076 | si.wShowWindow = SW_SHOWNORMAL; |
| 4077 | si.cbReserved2 = 0; |
| 4078 | si.lpReserved2 = NULL; |
| 4079 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4080 | /* Now, run the command */ |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 4081 | vim_create_process(cmd, FALSE, |
| 4082 | CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE, &si, &pi); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4083 | |
| 4084 | /* Wait for the command to terminate before continuing */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4085 | { |
| 4086 | #ifdef FEAT_GUI |
| 4087 | int delay = 1; |
| 4088 | |
| 4089 | /* Keep updating the window while waiting for the shell to finish. */ |
| 4090 | for (;;) |
| 4091 | { |
| 4092 | MSG msg; |
| 4093 | |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 4094 | if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4095 | { |
| 4096 | TranslateMessage(&msg); |
Bram Moolenaar | 8c85fa3 | 2011-08-10 17:08:03 +0200 | [diff] [blame] | 4097 | pDispatchMessage(&msg); |
Bram Moolenaar | e4195c5 | 2012-08-02 12:31:44 +0200 | [diff] [blame] | 4098 | delay = 1; |
| 4099 | continue; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4100 | } |
| 4101 | if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT) |
| 4102 | break; |
| 4103 | |
| 4104 | /* We start waiting for a very short time and then increase it, so |
| 4105 | * that we respond quickly when the process is quick, and don't |
| 4106 | * consume too much overhead when it's slow. */ |
| 4107 | if (delay < 50) |
| 4108 | delay += 10; |
| 4109 | } |
| 4110 | #else |
| 4111 | WaitForSingleObject(pi.hProcess, INFINITE); |
| 4112 | #endif |
| 4113 | |
| 4114 | /* Get the command exit code */ |
| 4115 | GetExitCodeProcess(pi.hProcess, &ret); |
| 4116 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4117 | |
| 4118 | /* Close the handles to the subprocess, so that it goes away */ |
| 4119 | CloseHandle(pi.hThread); |
| 4120 | CloseHandle(pi.hProcess); |
| 4121 | |
| 4122 | /* Try to get input focus back. Doesn't always work though. */ |
| 4123 | PostMessage(hwnd, WM_SETFOCUS, 0, 0); |
| 4124 | |
| 4125 | return ret; |
| 4126 | } |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4127 | |
| 4128 | /* |
| 4129 | * Thread launched by the gui to send the current buffer data to the |
| 4130 | * process. This way avoid to hang up vim totally if the children |
| 4131 | * process take a long time to process the lines. |
| 4132 | */ |
Bram Moolenaar | 4c38d66 | 2016-08-03 20:54:57 +0200 | [diff] [blame] | 4133 | static unsigned int __stdcall |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4134 | sub_process_writer(LPVOID param) |
| 4135 | { |
| 4136 | HANDLE g_hChildStd_IN_Wr = param; |
| 4137 | linenr_T lnum = curbuf->b_op_start.lnum; |
| 4138 | DWORD len = 0; |
| 4139 | DWORD l; |
| 4140 | char_u *lp = ml_get(lnum); |
| 4141 | char_u *s; |
| 4142 | int written = 0; |
| 4143 | |
| 4144 | for (;;) |
| 4145 | { |
| 4146 | l = (DWORD)STRLEN(lp + written); |
| 4147 | if (l == 0) |
| 4148 | len = 0; |
| 4149 | else if (lp[written] == NL) |
| 4150 | { |
| 4151 | /* NL -> NUL translation */ |
| 4152 | WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL); |
| 4153 | } |
| 4154 | else |
| 4155 | { |
| 4156 | s = vim_strchr(lp + written, NL); |
| 4157 | WriteFile(g_hChildStd_IN_Wr, (char *)lp + written, |
| 4158 | s == NULL ? l : (DWORD)(s - (lp + written)), |
| 4159 | &len, NULL); |
| 4160 | } |
| 4161 | if (len == (int)l) |
| 4162 | { |
| 4163 | /* Finished a line, add a NL, unless this line should not have |
| 4164 | * one. */ |
| 4165 | if (lnum != curbuf->b_op_end.lnum |
Bram Moolenaar | 34d72d4 | 2015-07-17 14:18:08 +0200 | [diff] [blame] | 4166 | || (!curbuf->b_p_bin |
| 4167 | && curbuf->b_p_fixeol) |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4168 | || (lnum != curbuf->b_no_eol_lnum |
| 4169 | && (lnum != curbuf->b_ml.ml_line_count |
| 4170 | || curbuf->b_p_eol))) |
| 4171 | { |
Bram Moolenaar | af62ff3 | 2013-03-19 14:48:29 +0100 | [diff] [blame] | 4172 | WriteFile(g_hChildStd_IN_Wr, "\n", 1, (LPDWORD)&ignored, NULL); |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4173 | } |
| 4174 | |
| 4175 | ++lnum; |
| 4176 | if (lnum > curbuf->b_op_end.lnum) |
| 4177 | break; |
| 4178 | |
| 4179 | lp = ml_get(lnum); |
| 4180 | written = 0; |
| 4181 | } |
| 4182 | else if (len > 0) |
| 4183 | written += len; |
| 4184 | } |
| 4185 | |
| 4186 | /* finished all the lines, close pipe */ |
| 4187 | CloseHandle(g_hChildStd_IN_Wr); |
Bram Moolenaar | 86f2cd5 | 2016-08-02 21:55:17 +0200 | [diff] [blame] | 4188 | return 0; |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4189 | } |
| 4190 | |
| 4191 | |
| 4192 | # define BUFLEN 100 /* length for buffer, stolen from unix version */ |
| 4193 | |
| 4194 | /* |
| 4195 | * This function read from the children's stdout and write the |
| 4196 | * data on screen or in the buffer accordingly. |
| 4197 | */ |
| 4198 | static void |
| 4199 | dump_pipe(int options, |
| 4200 | HANDLE g_hChildStd_OUT_Rd, |
| 4201 | garray_T *ga, |
| 4202 | char_u buffer[], |
| 4203 | DWORD *buffer_off) |
| 4204 | { |
| 4205 | DWORD availableBytes = 0; |
| 4206 | DWORD i; |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4207 | int ret; |
| 4208 | DWORD len; |
| 4209 | DWORD toRead; |
| 4210 | int repeatCount; |
| 4211 | |
| 4212 | /* we query the pipe to see if there is any data to read |
| 4213 | * to avoid to perform a blocking read */ |
| 4214 | ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */ |
| 4215 | NULL, /* optional buffer */ |
Bram Moolenaar | f6a2b08 | 2012-06-29 13:14:03 +0200 | [diff] [blame] | 4216 | 0, /* buffer size */ |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4217 | NULL, /* number of read bytes */ |
| 4218 | &availableBytes, /* available bytes total */ |
| 4219 | NULL); /* byteLeft */ |
| 4220 | |
| 4221 | repeatCount = 0; |
| 4222 | /* We got real data in the pipe, read it */ |
Bram Moolenaar | f6a2b08 | 2012-06-29 13:14:03 +0200 | [diff] [blame] | 4223 | while (ret != 0 && availableBytes > 0) |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4224 | { |
| 4225 | repeatCount++; |
| 4226 | toRead = |
| 4227 | # ifdef FEAT_MBYTE |
| 4228 | (DWORD)(BUFLEN - *buffer_off); |
| 4229 | # else |
| 4230 | (DWORD)BUFLEN; |
| 4231 | # endif |
| 4232 | toRead = availableBytes < toRead ? availableBytes : toRead; |
| 4233 | ReadFile(g_hChildStd_OUT_Rd, buffer |
| 4234 | # ifdef FEAT_MBYTE |
| 4235 | + *buffer_off, toRead |
| 4236 | # else |
| 4237 | , toRead |
| 4238 | # endif |
| 4239 | , &len, NULL); |
| 4240 | |
| 4241 | /* If we haven't read anything, there is a problem */ |
| 4242 | if (len == 0) |
| 4243 | break; |
| 4244 | |
| 4245 | availableBytes -= len; |
| 4246 | |
| 4247 | if (options & SHELL_READ) |
| 4248 | { |
| 4249 | /* Do NUL -> NL translation, append NL separated |
| 4250 | * lines to the current buffer. */ |
| 4251 | for (i = 0; i < len; ++i) |
| 4252 | { |
| 4253 | if (buffer[i] == NL) |
| 4254 | append_ga_line(ga); |
| 4255 | else if (buffer[i] == NUL) |
| 4256 | ga_append(ga, NL); |
| 4257 | else |
| 4258 | ga_append(ga, buffer[i]); |
| 4259 | } |
| 4260 | } |
| 4261 | # ifdef FEAT_MBYTE |
| 4262 | else if (has_mbyte) |
| 4263 | { |
| 4264 | int l; |
Bram Moolenaar | 2eba182 | 2011-08-27 15:10:04 +0200 | [diff] [blame] | 4265 | int c; |
| 4266 | char_u *p; |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4267 | |
| 4268 | len += *buffer_off; |
| 4269 | buffer[len] = NUL; |
| 4270 | |
| 4271 | /* Check if the last character in buffer[] is |
| 4272 | * incomplete, keep these bytes for the next |
| 4273 | * round. */ |
| 4274 | for (p = buffer; p < buffer + len; p += l) |
| 4275 | { |
Bram Moolenaar | d3c907b | 2016-08-17 21:32:09 +0200 | [diff] [blame] | 4276 | l = MB_CPTR2LEN(p); |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4277 | if (l == 0) |
| 4278 | l = 1; /* NUL byte? */ |
| 4279 | else if (MB_BYTE2LEN(*p) != l) |
| 4280 | break; |
| 4281 | } |
| 4282 | if (p == buffer) /* no complete character */ |
| 4283 | { |
| 4284 | /* avoid getting stuck at an illegal byte */ |
| 4285 | if (len >= 12) |
| 4286 | ++p; |
| 4287 | else |
| 4288 | { |
| 4289 | *buffer_off = len; |
| 4290 | return; |
| 4291 | } |
| 4292 | } |
| 4293 | c = *p; |
| 4294 | *p = NUL; |
| 4295 | msg_puts(buffer); |
| 4296 | if (p < buffer + len) |
| 4297 | { |
| 4298 | *p = c; |
| 4299 | *buffer_off = (DWORD)((buffer + len) - p); |
| 4300 | mch_memmove(buffer, p, *buffer_off); |
| 4301 | return; |
| 4302 | } |
| 4303 | *buffer_off = 0; |
| 4304 | } |
| 4305 | # endif /* FEAT_MBYTE */ |
| 4306 | else |
| 4307 | { |
| 4308 | buffer[len] = NUL; |
| 4309 | msg_puts(buffer); |
| 4310 | } |
| 4311 | |
| 4312 | windgoto(msg_row, msg_col); |
| 4313 | cursor_on(); |
| 4314 | out_flush(); |
| 4315 | } |
| 4316 | } |
| 4317 | |
| 4318 | /* |
| 4319 | * Version of system to use for windows NT > 5.0 (Win2K), use pipe |
| 4320 | * for communication and doesn't open any new window. |
| 4321 | */ |
| 4322 | static int |
| 4323 | mch_system_piped(char *cmd, int options) |
| 4324 | { |
| 4325 | STARTUPINFO si; |
| 4326 | PROCESS_INFORMATION pi; |
| 4327 | DWORD ret = 0; |
| 4328 | |
| 4329 | HANDLE g_hChildStd_IN_Rd = NULL; |
| 4330 | HANDLE g_hChildStd_IN_Wr = NULL; |
| 4331 | HANDLE g_hChildStd_OUT_Rd = NULL; |
| 4332 | HANDLE g_hChildStd_OUT_Wr = NULL; |
| 4333 | |
| 4334 | char_u buffer[BUFLEN + 1]; /* reading buffer + size */ |
| 4335 | DWORD len; |
| 4336 | |
| 4337 | /* buffer used to receive keys */ |
| 4338 | char_u ta_buf[BUFLEN + 1]; /* TypeAHead */ |
| 4339 | int ta_len = 0; /* valid bytes in ta_buf[] */ |
| 4340 | |
| 4341 | DWORD i; |
| 4342 | int c; |
| 4343 | int noread_cnt = 0; |
| 4344 | garray_T ga; |
| 4345 | int delay = 1; |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4346 | DWORD buffer_off = 0; /* valid bytes in buffer[] */ |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4347 | char *p = NULL; |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4348 | |
| 4349 | SECURITY_ATTRIBUTES saAttr; |
| 4350 | |
| 4351 | /* Set the bInheritHandle flag so pipe handles are inherited. */ |
| 4352 | saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); |
| 4353 | saAttr.bInheritHandle = TRUE; |
| 4354 | saAttr.lpSecurityDescriptor = NULL; |
| 4355 | |
| 4356 | if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0) |
| 4357 | /* Ensure the read handle to the pipe for STDOUT is not inherited. */ |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 4358 | || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0) |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4359 | /* Create a pipe for the child process's STDIN. */ |
| 4360 | || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0) |
| 4361 | /* Ensure the write handle to the pipe for STDIN is not inherited. */ |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 4362 | || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) ) |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4363 | { |
| 4364 | CloseHandle(g_hChildStd_IN_Rd); |
| 4365 | CloseHandle(g_hChildStd_IN_Wr); |
| 4366 | CloseHandle(g_hChildStd_OUT_Rd); |
| 4367 | CloseHandle(g_hChildStd_OUT_Wr); |
| 4368 | MSG_PUTS(_("\nCannot create pipes\n")); |
| 4369 | } |
| 4370 | |
| 4371 | si.cb = sizeof(si); |
| 4372 | si.lpReserved = NULL; |
| 4373 | si.lpDesktop = NULL; |
| 4374 | si.lpTitle = NULL; |
| 4375 | si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES; |
| 4376 | |
| 4377 | /* set-up our file redirection */ |
| 4378 | si.hStdError = g_hChildStd_OUT_Wr; |
| 4379 | si.hStdOutput = g_hChildStd_OUT_Wr; |
| 4380 | si.hStdInput = g_hChildStd_IN_Rd; |
| 4381 | si.wShowWindow = SW_HIDE; |
| 4382 | si.cbReserved2 = 0; |
| 4383 | si.lpReserved2 = NULL; |
| 4384 | |
| 4385 | if (options & SHELL_READ) |
| 4386 | ga_init2(&ga, 1, BUFLEN); |
| 4387 | |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4388 | if (cmd != NULL) |
| 4389 | { |
| 4390 | p = (char *)vim_strsave((char_u *)cmd); |
| 4391 | if (p != NULL) |
| 4392 | unescape_shellxquote((char_u *)p, p_sxe); |
| 4393 | else |
| 4394 | p = cmd; |
| 4395 | } |
| 4396 | |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 4397 | /* Now, run the command. |
| 4398 | * About "Inherit handles" being TRUE: this command can be litigious, |
| 4399 | * handle inheritance was deactivated for pending temp file, but, if we |
| 4400 | * deactivate it, the pipes don't work for some reason. */ |
| 4401 | vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE, &si, &pi); |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4402 | |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4403 | if (p != cmd) |
| 4404 | vim_free(p); |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4405 | |
| 4406 | /* Close our unused side of the pipes */ |
| 4407 | CloseHandle(g_hChildStd_IN_Rd); |
| 4408 | CloseHandle(g_hChildStd_OUT_Wr); |
| 4409 | |
| 4410 | if (options & SHELL_WRITE) |
| 4411 | { |
Bram Moolenaar | 86f2cd5 | 2016-08-02 21:55:17 +0200 | [diff] [blame] | 4412 | HANDLE thread = (HANDLE) |
| 4413 | _beginthreadex(NULL, /* security attributes */ |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4414 | 0, /* default stack size */ |
| 4415 | sub_process_writer, /* function to be executed */ |
| 4416 | g_hChildStd_IN_Wr, /* parameter */ |
| 4417 | 0, /* creation flag, start immediately */ |
| 4418 | NULL); /* we don't care about thread id */ |
| 4419 | CloseHandle(thread); |
| 4420 | g_hChildStd_IN_Wr = NULL; |
| 4421 | } |
| 4422 | |
| 4423 | /* Keep updating the window while waiting for the shell to finish. */ |
| 4424 | for (;;) |
| 4425 | { |
| 4426 | MSG msg; |
| 4427 | |
Bram Moolenaar | 175d070 | 2013-12-11 18:36:33 +0100 | [diff] [blame] | 4428 | if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE)) |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4429 | { |
| 4430 | TranslateMessage(&msg); |
Bram Moolenaar | 175d070 | 2013-12-11 18:36:33 +0100 | [diff] [blame] | 4431 | pDispatchMessage(&msg); |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4432 | } |
| 4433 | |
| 4434 | /* write pipe information in the window */ |
| 4435 | if ((options & (SHELL_READ|SHELL_WRITE)) |
| 4436 | # ifdef FEAT_GUI |
| 4437 | || gui.in_use |
| 4438 | # endif |
| 4439 | ) |
| 4440 | { |
| 4441 | len = 0; |
| 4442 | if (!(options & SHELL_EXPAND) |
| 4443 | && ((options & |
| 4444 | (SHELL_READ|SHELL_WRITE|SHELL_COOKED)) |
| 4445 | != (SHELL_READ|SHELL_WRITE|SHELL_COOKED) |
| 4446 | # ifdef FEAT_GUI |
| 4447 | || gui.in_use |
| 4448 | # endif |
| 4449 | ) |
| 4450 | && (ta_len > 0 || noread_cnt > 4)) |
| 4451 | { |
| 4452 | if (ta_len == 0) |
| 4453 | { |
| 4454 | /* Get extra characters when we don't have any. Reset the |
| 4455 | * counter and timer. */ |
| 4456 | noread_cnt = 0; |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4457 | len = ui_inchar(ta_buf, BUFLEN, 10L, 0); |
| 4458 | } |
| 4459 | if (ta_len > 0 || len > 0) |
| 4460 | { |
| 4461 | /* |
| 4462 | * For pipes: Check for CTRL-C: send interrupt signal to |
| 4463 | * child. Check for CTRL-D: EOF, close pipe to child. |
| 4464 | */ |
| 4465 | if (len == 1 && cmd != NULL) |
| 4466 | { |
| 4467 | if (ta_buf[ta_len] == Ctrl_C) |
| 4468 | { |
| 4469 | /* Learn what exit code is expected, for |
| 4470 | * now put 9 as SIGKILL */ |
| 4471 | TerminateProcess(pi.hProcess, 9); |
| 4472 | } |
| 4473 | if (ta_buf[ta_len] == Ctrl_D) |
| 4474 | { |
| 4475 | CloseHandle(g_hChildStd_IN_Wr); |
| 4476 | g_hChildStd_IN_Wr = NULL; |
| 4477 | } |
| 4478 | } |
| 4479 | |
| 4480 | /* replace K_BS by <BS> and K_DEL by <DEL> */ |
| 4481 | for (i = ta_len; i < ta_len + len; ++i) |
| 4482 | { |
| 4483 | if (ta_buf[i] == CSI && len - i > 2) |
| 4484 | { |
| 4485 | c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); |
| 4486 | if (c == K_DEL || c == K_KDEL || c == K_BS) |
| 4487 | { |
| 4488 | mch_memmove(ta_buf + i + 1, ta_buf + i + 3, |
| 4489 | (size_t)(len - i - 2)); |
| 4490 | if (c == K_DEL || c == K_KDEL) |
| 4491 | ta_buf[i] = DEL; |
| 4492 | else |
| 4493 | ta_buf[i] = Ctrl_H; |
| 4494 | len -= 2; |
| 4495 | } |
| 4496 | } |
| 4497 | else if (ta_buf[i] == '\r') |
| 4498 | ta_buf[i] = '\n'; |
| 4499 | # ifdef FEAT_MBYTE |
| 4500 | if (has_mbyte) |
| 4501 | i += (*mb_ptr2len_len)(ta_buf + i, |
| 4502 | ta_len + len - i) - 1; |
| 4503 | # endif |
| 4504 | } |
| 4505 | |
| 4506 | /* |
| 4507 | * For pipes: echo the typed characters. For a pty this |
| 4508 | * does not seem to work. |
| 4509 | */ |
| 4510 | for (i = ta_len; i < ta_len + len; ++i) |
| 4511 | { |
| 4512 | if (ta_buf[i] == '\n' || ta_buf[i] == '\b') |
| 4513 | msg_putchar(ta_buf[i]); |
| 4514 | # ifdef FEAT_MBYTE |
| 4515 | else if (has_mbyte) |
| 4516 | { |
| 4517 | int l = (*mb_ptr2len)(ta_buf + i); |
| 4518 | |
| 4519 | msg_outtrans_len(ta_buf + i, l); |
| 4520 | i += l - 1; |
| 4521 | } |
| 4522 | # endif |
| 4523 | else |
| 4524 | msg_outtrans_len(ta_buf + i, 1); |
| 4525 | } |
| 4526 | windgoto(msg_row, msg_col); |
| 4527 | out_flush(); |
| 4528 | |
| 4529 | ta_len += len; |
| 4530 | |
| 4531 | /* |
| 4532 | * Write the characters to the child, unless EOF has been |
| 4533 | * typed for pipes. Write one character at a time, to |
| 4534 | * avoid losing too much typeahead. When writing buffer |
| 4535 | * lines, drop the typed characters (only check for |
| 4536 | * CTRL-C). |
| 4537 | */ |
| 4538 | if (options & SHELL_WRITE) |
| 4539 | ta_len = 0; |
| 4540 | else if (g_hChildStd_IN_Wr != NULL) |
| 4541 | { |
| 4542 | WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf, |
| 4543 | 1, &len, NULL); |
| 4544 | // if we are typing in, we want to keep things reactive |
| 4545 | delay = 1; |
| 4546 | if (len > 0) |
| 4547 | { |
| 4548 | ta_len -= len; |
| 4549 | mch_memmove(ta_buf, ta_buf + len, ta_len); |
| 4550 | } |
| 4551 | } |
| 4552 | } |
| 4553 | } |
| 4554 | } |
| 4555 | |
| 4556 | if (ta_len) |
| 4557 | ui_inchar_undo(ta_buf, ta_len); |
| 4558 | |
| 4559 | if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT) |
| 4560 | { |
Bram Moolenaar | 2eba182 | 2011-08-27 15:10:04 +0200 | [diff] [blame] | 4561 | dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off); |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4562 | break; |
| 4563 | } |
| 4564 | |
| 4565 | ++noread_cnt; |
Bram Moolenaar | 2eba182 | 2011-08-27 15:10:04 +0200 | [diff] [blame] | 4566 | dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off); |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4567 | |
| 4568 | /* We start waiting for a very short time and then increase it, so |
| 4569 | * that we respond quickly when the process is quick, and don't |
| 4570 | * consume too much overhead when it's slow. */ |
| 4571 | if (delay < 50) |
| 4572 | delay += 10; |
| 4573 | } |
| 4574 | |
| 4575 | /* Close the pipe */ |
| 4576 | CloseHandle(g_hChildStd_OUT_Rd); |
| 4577 | if (g_hChildStd_IN_Wr != NULL) |
| 4578 | CloseHandle(g_hChildStd_IN_Wr); |
| 4579 | |
| 4580 | WaitForSingleObject(pi.hProcess, INFINITE); |
| 4581 | |
| 4582 | /* Get the command exit code */ |
| 4583 | GetExitCodeProcess(pi.hProcess, &ret); |
| 4584 | |
| 4585 | if (options & SHELL_READ) |
| 4586 | { |
| 4587 | if (ga.ga_len > 0) |
| 4588 | { |
| 4589 | append_ga_line(&ga); |
| 4590 | /* remember that the NL was missing */ |
| 4591 | curbuf->b_no_eol_lnum = curwin->w_cursor.lnum; |
| 4592 | } |
| 4593 | else |
| 4594 | curbuf->b_no_eol_lnum = 0; |
| 4595 | ga_clear(&ga); |
| 4596 | } |
| 4597 | |
| 4598 | /* Close the handles to the subprocess, so that it goes away */ |
| 4599 | CloseHandle(pi.hThread); |
| 4600 | CloseHandle(pi.hProcess); |
| 4601 | |
| 4602 | return ret; |
| 4603 | } |
| 4604 | |
| 4605 | static int |
| 4606 | mch_system(char *cmd, int options) |
| 4607 | { |
| 4608 | /* if we can pipe and the shelltemp option is off */ |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 4609 | if (!p_stmp) |
Bram Moolenaar | 4b9669f | 2011-07-07 16:20:52 +0200 | [diff] [blame] | 4610 | return mch_system_piped(cmd, options); |
| 4611 | else |
| 4612 | return mch_system_classic(cmd, options); |
| 4613 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4614 | #else |
| 4615 | |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 4616 | # ifdef FEAT_MBYTE |
| 4617 | static int |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 4618 | mch_system(char *cmd, int options) |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 4619 | { |
| 4620 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 4621 | { |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 4622 | WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL); |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 4623 | if (wcmd != NULL) |
| 4624 | { |
| 4625 | int ret = _wsystem(wcmd); |
| 4626 | vim_free(wcmd); |
| 4627 | return ret; |
| 4628 | } |
| 4629 | } |
| 4630 | return system(cmd); |
| 4631 | } |
| 4632 | # else |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 4633 | # define mch_system(c, o) system(c) |
Bram Moolenaar | 910cffb | 2013-12-11 17:58:35 +0100 | [diff] [blame] | 4634 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4635 | |
| 4636 | #endif |
| 4637 | |
| 4638 | /* |
| 4639 | * Either execute a command by calling the shell or start a new shell |
| 4640 | */ |
| 4641 | int |
| 4642 | mch_call_shell( |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 4643 | char_u *cmd, |
| 4644 | int options) /* SHELL_*, see vim.h */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4645 | { |
| 4646 | int x = 0; |
| 4647 | int tmode = cur_tmode; |
| 4648 | #ifdef FEAT_TITLE |
Bram Moolenaar | 799d6ab | 2014-10-16 16:16:37 +0200 | [diff] [blame] | 4649 | char szShellTitle[512]; |
Bram Moolenaar | 1df52d7 | 2014-10-15 22:50:10 +0200 | [diff] [blame] | 4650 | # ifdef FEAT_MBYTE |
Bram Moolenaar | 799d6ab | 2014-10-16 16:16:37 +0200 | [diff] [blame] | 4651 | int did_set_title = FALSE; |
| 4652 | |
Bram Moolenaar | 1df52d7 | 2014-10-15 22:50:10 +0200 | [diff] [blame] | 4653 | /* Change the title to reflect that we are in a subshell. */ |
| 4654 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 4655 | { |
| 4656 | WCHAR szShellTitle[512]; |
| 4657 | |
| 4658 | if (GetConsoleTitleW(szShellTitle, |
| 4659 | sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0) |
| 4660 | { |
| 4661 | if (cmd == NULL) |
| 4662 | wcscat(szShellTitle, L" :sh"); |
| 4663 | else |
| 4664 | { |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 4665 | WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL); |
Bram Moolenaar | 1df52d7 | 2014-10-15 22:50:10 +0200 | [diff] [blame] | 4666 | |
| 4667 | if (wn != NULL) |
| 4668 | { |
| 4669 | wcscat(szShellTitle, L" - !"); |
| 4670 | if ((wcslen(szShellTitle) + wcslen(wn) < |
| 4671 | sizeof(szShellTitle)/sizeof(WCHAR))) |
| 4672 | wcscat(szShellTitle, wn); |
| 4673 | SetConsoleTitleW(szShellTitle); |
| 4674 | vim_free(wn); |
Bram Moolenaar | 799d6ab | 2014-10-16 16:16:37 +0200 | [diff] [blame] | 4675 | did_set_title = TRUE; |
Bram Moolenaar | 1df52d7 | 2014-10-15 22:50:10 +0200 | [diff] [blame] | 4676 | } |
| 4677 | } |
| 4678 | } |
| 4679 | } |
Bram Moolenaar | 799d6ab | 2014-10-16 16:16:37 +0200 | [diff] [blame] | 4680 | if (!did_set_title) |
| 4681 | # endif |
| 4682 | /* Change the title to reflect that we are in a subshell. */ |
| 4683 | if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4684 | { |
Bram Moolenaar | 799d6ab | 2014-10-16 16:16:37 +0200 | [diff] [blame] | 4685 | if (cmd == NULL) |
| 4686 | strcat(szShellTitle, " :sh"); |
| 4687 | else |
| 4688 | { |
| 4689 | strcat(szShellTitle, " - !"); |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 4690 | if ((strlen(szShellTitle) + strlen((char *)cmd) |
| 4691 | < sizeof(szShellTitle))) |
| 4692 | strcat(szShellTitle, (char *)cmd); |
Bram Moolenaar | 799d6ab | 2014-10-16 16:16:37 +0200 | [diff] [blame] | 4693 | } |
| 4694 | SetConsoleTitle(szShellTitle); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4695 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4696 | #endif |
| 4697 | |
| 4698 | out_flush(); |
| 4699 | |
| 4700 | #ifdef MCH_WRITE_DUMP |
| 4701 | if (fdDump) |
| 4702 | { |
| 4703 | fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options); |
| 4704 | fflush(fdDump); |
| 4705 | } |
| 4706 | #endif |
| 4707 | |
| 4708 | /* |
| 4709 | * Catch all deadly signals while running the external command, because a |
| 4710 | * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us. |
| 4711 | */ |
| 4712 | signal(SIGINT, SIG_IGN); |
| 4713 | #if defined(__GNUC__) && !defined(__MINGW32__) |
| 4714 | signal(SIGKILL, SIG_IGN); |
| 4715 | #else |
| 4716 | signal(SIGBREAK, SIG_IGN); |
| 4717 | #endif |
| 4718 | signal(SIGILL, SIG_IGN); |
| 4719 | signal(SIGFPE, SIG_IGN); |
| 4720 | signal(SIGSEGV, SIG_IGN); |
| 4721 | signal(SIGTERM, SIG_IGN); |
| 4722 | signal(SIGABRT, SIG_IGN); |
| 4723 | |
| 4724 | if (options & SHELL_COOKED) |
| 4725 | settmode(TMODE_COOK); /* set to normal mode */ |
| 4726 | |
| 4727 | if (cmd == NULL) |
| 4728 | { |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 4729 | x = mch_system((char *)p_sh, options); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4730 | } |
| 4731 | else |
| 4732 | { |
| 4733 | /* we use "command" or "cmd" to start the shell; slow but easy */ |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4734 | char_u *newcmd = NULL; |
| 4735 | char_u *cmdbase = cmd; |
| 4736 | long_u cmdlen; |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4737 | |
| 4738 | /* Skip a leading ", ( and "(. */ |
| 4739 | if (*cmdbase == '"' ) |
| 4740 | ++cmdbase; |
| 4741 | if (*cmdbase == '(') |
| 4742 | ++cmdbase; |
| 4743 | |
Bram Moolenaar | 1c46544 | 2017-03-12 20:10:05 +0100 | [diff] [blame] | 4744 | if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5])) |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4745 | { |
| 4746 | STARTUPINFO si; |
| 4747 | PROCESS_INFORMATION pi; |
| 4748 | DWORD flags = CREATE_NEW_CONSOLE; |
Bram Moolenaar | b2964f2 | 2017-03-21 19:29:26 +0100 | [diff] [blame] | 4749 | INT n_show_cmd = SW_SHOWNORMAL; |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4750 | char_u *p; |
| 4751 | |
Bram Moolenaar | fcc3f46 | 2014-01-24 19:55:37 +0100 | [diff] [blame] | 4752 | ZeroMemory(&si, sizeof(si)); |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4753 | si.cb = sizeof(si); |
| 4754 | si.lpReserved = NULL; |
| 4755 | si.lpDesktop = NULL; |
| 4756 | si.lpTitle = NULL; |
| 4757 | si.dwFlags = 0; |
| 4758 | si.cbReserved2 = 0; |
| 4759 | si.lpReserved2 = NULL; |
| 4760 | |
| 4761 | cmdbase = skipwhite(cmdbase + 5); |
| 4762 | if ((STRNICMP(cmdbase, "/min", 4) == 0) |
Bram Moolenaar | 1c46544 | 2017-03-12 20:10:05 +0100 | [diff] [blame] | 4763 | && VIM_ISWHITE(cmdbase[4])) |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4764 | { |
| 4765 | cmdbase = skipwhite(cmdbase + 4); |
| 4766 | si.dwFlags = STARTF_USESHOWWINDOW; |
| 4767 | si.wShowWindow = SW_SHOWMINNOACTIVE; |
Bram Moolenaar | b2964f2 | 2017-03-21 19:29:26 +0100 | [diff] [blame] | 4768 | n_show_cmd = SW_SHOWMINNOACTIVE; |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4769 | } |
| 4770 | else if ((STRNICMP(cmdbase, "/b", 2) == 0) |
Bram Moolenaar | 1c46544 | 2017-03-12 20:10:05 +0100 | [diff] [blame] | 4771 | && VIM_ISWHITE(cmdbase[2])) |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4772 | { |
| 4773 | cmdbase = skipwhite(cmdbase + 2); |
| 4774 | flags = CREATE_NO_WINDOW; |
| 4775 | si.dwFlags = STARTF_USESTDHANDLES; |
| 4776 | si.hStdInput = CreateFile("\\\\.\\NUL", // File name |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4777 | GENERIC_READ, // Access flags |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4778 | 0, // Share flags |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4779 | NULL, // Security att. |
| 4780 | OPEN_EXISTING, // Open flags |
| 4781 | FILE_ATTRIBUTE_NORMAL, // File att. |
| 4782 | NULL); // Temp file |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4783 | si.hStdOutput = si.hStdInput; |
| 4784 | si.hStdError = si.hStdInput; |
| 4785 | } |
| 4786 | |
| 4787 | /* Remove a trailing ", ) and )" if they have a match |
| 4788 | * at the start of the command. */ |
| 4789 | if (cmdbase > cmd) |
| 4790 | { |
| 4791 | p = cmdbase + STRLEN(cmdbase); |
| 4792 | if (p > cmdbase && p[-1] == '"' && *cmd == '"') |
| 4793 | *--p = NUL; |
| 4794 | if (p > cmdbase && p[-1] == ')' |
| 4795 | && (*cmd =='(' || cmd[1] == '(')) |
| 4796 | *--p = NUL; |
| 4797 | } |
| 4798 | |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4799 | newcmd = cmdbase; |
| 4800 | unescape_shellxquote(cmdbase, p_sxe); |
| 4801 | |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4802 | /* |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4803 | * If creating new console, arguments are passed to the |
| 4804 | * 'cmd.exe' as-is. If it's not, arguments are not treated |
| 4805 | * correctly for current 'cmd.exe'. So unescape characters in |
| 4806 | * shellxescape except '|' for avoiding to be treated as |
| 4807 | * argument to them. Pass the arguments to sub-shell. |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4808 | */ |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4809 | if (flags != CREATE_NEW_CONSOLE) |
| 4810 | { |
| 4811 | char_u *subcmd; |
Bram Moolenaar | ee7d100 | 2012-02-22 15:34:08 +0100 | [diff] [blame] | 4812 | char_u *cmd_shell = mch_getenv("COMSPEC"); |
| 4813 | |
| 4814 | if (cmd_shell == NULL || *cmd_shell == NUL) |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 4815 | cmd_shell = (char_u *)default_shell(); |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4816 | |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 4817 | subcmd = vim_strsave_escaped_ext(cmdbase, |
| 4818 | (char_u *)"|", '^', FALSE); |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4819 | if (subcmd != NULL) |
| 4820 | { |
| 4821 | /* make "cmd.exe /c arguments" */ |
| 4822 | cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5; |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4823 | newcmd = lalloc(cmdlen, TRUE); |
| 4824 | if (newcmd != NULL) |
| 4825 | vim_snprintf((char *)newcmd, cmdlen, "%s /c %s", |
Bram Moolenaar | ee7d100 | 2012-02-22 15:34:08 +0100 | [diff] [blame] | 4826 | cmd_shell, subcmd); |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4827 | else |
| 4828 | newcmd = cmdbase; |
Bram Moolenaar | ee7d100 | 2012-02-22 15:34:08 +0100 | [diff] [blame] | 4829 | vim_free(subcmd); |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4830 | } |
| 4831 | } |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4832 | |
| 4833 | /* |
| 4834 | * Now, start the command as a process, so that it doesn't |
| 4835 | * inherit our handles which causes unpleasant dangling swap |
| 4836 | * files if we exit before the spawned process |
| 4837 | */ |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 4838 | if (vim_create_process((char *)newcmd, FALSE, flags, &si, &pi)) |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4839 | x = 0; |
Bram Moolenaar | b2964f2 | 2017-03-21 19:29:26 +0100 | [diff] [blame] | 4840 | else if (vim_shell_execute((char *)newcmd, n_show_cmd) |
| 4841 | > (HINSTANCE)32) |
| 4842 | x = 0; |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4843 | else |
| 4844 | { |
| 4845 | x = -1; |
| 4846 | #ifdef FEAT_GUI_W32 |
| 4847 | EMSG(_("E371: Command not found")); |
| 4848 | #endif |
| 4849 | } |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4850 | |
| 4851 | if (newcmd != cmdbase) |
| 4852 | vim_free(newcmd); |
| 4853 | |
Bram Moolenaar | fcc3f46 | 2014-01-24 19:55:37 +0100 | [diff] [blame] | 4854 | if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL) |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4855 | { |
Bram Moolenaar | fcc3f46 | 2014-01-24 19:55:37 +0100 | [diff] [blame] | 4856 | /* Close the handle to \\.\NUL created above. */ |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4857 | CloseHandle(si.hStdInput); |
| 4858 | } |
| 4859 | /* Close the handles to the subprocess, so that it goes away */ |
| 4860 | CloseHandle(pi.hThread); |
| 4861 | CloseHandle(pi.hProcess); |
| 4862 | } |
| 4863 | else |
| 4864 | { |
Bram Moolenaar | fb7df7b | 2012-02-22 13:07:05 +0100 | [diff] [blame] | 4865 | cmdlen = ( |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4866 | #ifdef FEAT_GUI_W32 |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 4867 | (!p_stmp ? 0 : STRLEN(vimrun_path)) + |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4868 | #endif |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 4869 | STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10); |
| 4870 | |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4871 | newcmd = lalloc(cmdlen, TRUE); |
| 4872 | if (newcmd != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4873 | { |
| 4874 | #if defined(FEAT_GUI_W32) |
| 4875 | if (need_vimrun_warning) |
| 4876 | { |
Bram Moolenaar | 63e4344 | 2016-11-19 17:28:44 +0100 | [diff] [blame] | 4877 | char *msg = _("VIMRUN.EXE not found in your $PATH.\n" |
| 4878 | "External commands will not pause after completion.\n" |
| 4879 | "See :help win32-vimrun for more information."); |
| 4880 | char *title = _("Vim Warning"); |
| 4881 | # ifdef FEAT_MBYTE |
| 4882 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 4883 | { |
| 4884 | WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL); |
| 4885 | WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL); |
| 4886 | |
| 4887 | if (wmsg != NULL && wtitle != NULL) |
| 4888 | MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING); |
| 4889 | vim_free(wmsg); |
| 4890 | vim_free(wtitle); |
| 4891 | } |
| 4892 | else |
| 4893 | # endif |
| 4894 | MessageBox(NULL, msg, title, MB_ICONWARNING); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4895 | need_vimrun_warning = FALSE; |
| 4896 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 4897 | if (!s_dont_use_vimrun && p_stmp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4898 | /* Use vimrun to execute the command. It opens a console |
| 4899 | * window, which can be closed without killing Vim. */ |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 4900 | vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4901 | vimrun_path, |
| 4902 | (msg_silent != 0 || (options & SHELL_DOOUT)) |
| 4903 | ? "-s " : "", |
| 4904 | p_sh, p_shcf, cmd); |
| 4905 | else |
| 4906 | #endif |
Bram Moolenaar | cc448b3 | 2010-07-14 16:52:17 +0200 | [diff] [blame] | 4907 | vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 4908 | p_sh, p_shcf, cmd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4909 | x = mch_system((char *)newcmd, options); |
Bram Moolenaar | 6b707b4 | 2012-02-21 21:22:44 +0100 | [diff] [blame] | 4910 | vim_free(newcmd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4911 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4912 | } |
| 4913 | } |
| 4914 | |
| 4915 | if (tmode == TMODE_RAW) |
| 4916 | settmode(TMODE_RAW); /* set to raw mode */ |
| 4917 | |
| 4918 | /* Print the return value, unless "vimrun" was used. */ |
| 4919 | if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent |
| 4920 | #if defined(FEAT_GUI_W32) |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 4921 | && ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4922 | #endif |
| 4923 | ) |
| 4924 | { |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 4925 | smsg((char_u *)_("shell returned %d"), x); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4926 | msg_putchar('\n'); |
| 4927 | } |
| 4928 | #ifdef FEAT_TITLE |
| 4929 | resettitle(); |
| 4930 | #endif |
| 4931 | |
| 4932 | signal(SIGINT, SIG_DFL); |
| 4933 | #if defined(__GNUC__) && !defined(__MINGW32__) |
| 4934 | signal(SIGKILL, SIG_DFL); |
| 4935 | #else |
| 4936 | signal(SIGBREAK, SIG_DFL); |
| 4937 | #endif |
| 4938 | signal(SIGILL, SIG_DFL); |
| 4939 | signal(SIGFPE, SIG_DFL); |
| 4940 | signal(SIGSEGV, SIG_DFL); |
| 4941 | signal(SIGTERM, SIG_DFL); |
| 4942 | signal(SIGABRT, SIG_DFL); |
| 4943 | |
| 4944 | return x; |
| 4945 | } |
| 4946 | |
Bram Moolenaar | 509ce2a | 2016-03-11 22:52:15 +0100 | [diff] [blame] | 4947 | #if defined(FEAT_JOB_CHANNEL) || defined(PROTO) |
Bram Moolenaar | 7bffaa9 | 2016-03-10 21:46:03 +0100 | [diff] [blame] | 4948 | static HANDLE |
| 4949 | job_io_file_open( |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 4950 | char_u *fname, |
| 4951 | DWORD dwDesiredAccess, |
| 4952 | DWORD dwShareMode, |
| 4953 | LPSECURITY_ATTRIBUTES lpSecurityAttributes, |
| 4954 | DWORD dwCreationDisposition, |
| 4955 | DWORD dwFlagsAndAttributes) |
Bram Moolenaar | 7bffaa9 | 2016-03-10 21:46:03 +0100 | [diff] [blame] | 4956 | { |
| 4957 | HANDLE h; |
| 4958 | # ifdef FEAT_MBYTE |
| 4959 | WCHAR *wn = NULL; |
| 4960 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 4961 | { |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 4962 | wn = enc_to_utf16(fname, NULL); |
| 4963 | if (wn != NULL) |
| 4964 | { |
| 4965 | h = CreateFileW(wn, dwDesiredAccess, dwShareMode, |
| 4966 | lpSecurityAttributes, dwCreationDisposition, |
| 4967 | dwFlagsAndAttributes, NULL); |
| 4968 | vim_free(wn); |
| 4969 | } |
Bram Moolenaar | 7bffaa9 | 2016-03-10 21:46:03 +0100 | [diff] [blame] | 4970 | } |
| 4971 | if (wn == NULL) |
| 4972 | # endif |
Bram Moolenaar | 972c3b8 | 2017-01-12 21:44:49 +0100 | [diff] [blame] | 4973 | h = CreateFile((LPCSTR)fname, dwDesiredAccess, dwShareMode, |
| 4974 | lpSecurityAttributes, dwCreationDisposition, |
| 4975 | dwFlagsAndAttributes, NULL); |
Bram Moolenaar | 7bffaa9 | 2016-03-10 21:46:03 +0100 | [diff] [blame] | 4976 | return h; |
| 4977 | } |
| 4978 | |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 4979 | void |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 4980 | mch_job_start(char *cmd, job_T *job, jobopt_T *options) |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 4981 | { |
| 4982 | STARTUPINFO si; |
| 4983 | PROCESS_INFORMATION pi; |
Bram Moolenaar | 14207f4 | 2016-10-27 21:13:10 +0200 | [diff] [blame] | 4984 | HANDLE jo; |
Bram Moolenaar | d5d3d30 | 2016-03-09 20:54:51 +0100 | [diff] [blame] | 4985 | SECURITY_ATTRIBUTES saAttr; |
| 4986 | channel_T *channel = NULL; |
Bram Moolenaar | d807036 | 2016-02-15 21:56:54 +0100 | [diff] [blame] | 4987 | HANDLE ifd[2]; |
| 4988 | HANDLE ofd[2]; |
| 4989 | HANDLE efd[2]; |
Bram Moolenaar | d5d3d30 | 2016-03-09 20:54:51 +0100 | [diff] [blame] | 4990 | |
| 4991 | int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL; |
| 4992 | int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL; |
| 4993 | int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL; |
| 4994 | int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE; |
| 4995 | int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE; |
| 4996 | int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE; |
| 4997 | int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT; |
| 4998 | |
| 4999 | if (use_out_for_err && use_null_for_out) |
| 5000 | use_null_for_err = TRUE; |
Bram Moolenaar | d807036 | 2016-02-15 21:56:54 +0100 | [diff] [blame] | 5001 | |
| 5002 | ifd[0] = INVALID_HANDLE_VALUE; |
| 5003 | ifd[1] = INVALID_HANDLE_VALUE; |
| 5004 | ofd[0] = INVALID_HANDLE_VALUE; |
| 5005 | ofd[1] = INVALID_HANDLE_VALUE; |
| 5006 | efd[0] = INVALID_HANDLE_VALUE; |
| 5007 | efd[1] = INVALID_HANDLE_VALUE; |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5008 | |
Bram Moolenaar | 14207f4 | 2016-10-27 21:13:10 +0200 | [diff] [blame] | 5009 | jo = CreateJobObject(NULL, NULL); |
| 5010 | if (jo == NULL) |
| 5011 | { |
| 5012 | job->jv_status = JOB_FAILED; |
| 5013 | goto failed; |
| 5014 | } |
| 5015 | |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5016 | ZeroMemory(&pi, sizeof(pi)); |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5017 | ZeroMemory(&si, sizeof(si)); |
| 5018 | si.cb = sizeof(si); |
Bram Moolenaar | d807036 | 2016-02-15 21:56:54 +0100 | [diff] [blame] | 5019 | si.dwFlags |= STARTF_USESHOWWINDOW; |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5020 | si.wShowWindow = SW_HIDE; |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5021 | |
Bram Moolenaar | d807036 | 2016-02-15 21:56:54 +0100 | [diff] [blame] | 5022 | saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); |
| 5023 | saAttr.bInheritHandle = TRUE; |
| 5024 | saAttr.lpSecurityDescriptor = NULL; |
Bram Moolenaar | 13d6fb1 | 2016-03-08 18:40:52 +0100 | [diff] [blame] | 5025 | |
Bram Moolenaar | b69fccf | 2016-03-06 23:06:25 +0100 | [diff] [blame] | 5026 | if (use_file_for_in) |
| 5027 | { |
| 5028 | char_u *fname = options->jo_io_name[PART_IN]; |
| 5029 | |
Bram Moolenaar | 7bffaa9 | 2016-03-10 21:46:03 +0100 | [diff] [blame] | 5030 | ifd[0] = job_io_file_open(fname, GENERIC_READ, |
| 5031 | FILE_SHARE_READ | FILE_SHARE_WRITE, |
| 5032 | &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL); |
| 5033 | if (ifd[0] == INVALID_HANDLE_VALUE) |
Bram Moolenaar | 94d0191 | 2016-03-08 13:48:51 +0100 | [diff] [blame] | 5034 | { |
| 5035 | EMSG2(_(e_notopen), fname); |
| 5036 | goto failed; |
| 5037 | } |
Bram Moolenaar | b69fccf | 2016-03-06 23:06:25 +0100 | [diff] [blame] | 5038 | } |
Bram Moolenaar | d5d3d30 | 2016-03-09 20:54:51 +0100 | [diff] [blame] | 5039 | else if (!use_null_for_in && |
| 5040 | (!CreatePipe(&ifd[0], &ifd[1], &saAttr, 0) |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 5041 | || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0))) |
Bram Moolenaar | b69fccf | 2016-03-06 23:06:25 +0100 | [diff] [blame] | 5042 | goto failed; |
| 5043 | |
Bram Moolenaar | 13d6fb1 | 2016-03-08 18:40:52 +0100 | [diff] [blame] | 5044 | if (use_file_for_out) |
| 5045 | { |
| 5046 | char_u *fname = options->jo_io_name[PART_OUT]; |
| 5047 | |
Bram Moolenaar | 7bffaa9 | 2016-03-10 21:46:03 +0100 | [diff] [blame] | 5048 | ofd[1] = job_io_file_open(fname, GENERIC_WRITE, |
| 5049 | FILE_SHARE_READ | FILE_SHARE_WRITE, |
| 5050 | &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL); |
| 5051 | if (ofd[1] == INVALID_HANDLE_VALUE) |
Bram Moolenaar | 13d6fb1 | 2016-03-08 18:40:52 +0100 | [diff] [blame] | 5052 | { |
| 5053 | EMSG2(_(e_notopen), fname); |
| 5054 | goto failed; |
| 5055 | } |
| 5056 | } |
Bram Moolenaar | d5d3d30 | 2016-03-09 20:54:51 +0100 | [diff] [blame] | 5057 | else if (!use_null_for_out && |
| 5058 | (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0) |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 5059 | || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0))) |
Bram Moolenaar | b69fccf | 2016-03-06 23:06:25 +0100 | [diff] [blame] | 5060 | goto failed; |
| 5061 | |
Bram Moolenaar | 13d6fb1 | 2016-03-08 18:40:52 +0100 | [diff] [blame] | 5062 | if (use_file_for_err) |
| 5063 | { |
| 5064 | char_u *fname = options->jo_io_name[PART_ERR]; |
| 5065 | |
Bram Moolenaar | 7bffaa9 | 2016-03-10 21:46:03 +0100 | [diff] [blame] | 5066 | efd[1] = job_io_file_open(fname, GENERIC_WRITE, |
| 5067 | FILE_SHARE_READ | FILE_SHARE_WRITE, |
| 5068 | &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL); |
| 5069 | if (efd[1] == INVALID_HANDLE_VALUE) |
Bram Moolenaar | 13d6fb1 | 2016-03-08 18:40:52 +0100 | [diff] [blame] | 5070 | { |
| 5071 | EMSG2(_(e_notopen), fname); |
| 5072 | goto failed; |
| 5073 | } |
| 5074 | } |
Bram Moolenaar | d5d3d30 | 2016-03-09 20:54:51 +0100 | [diff] [blame] | 5075 | else if (!use_out_for_err && !use_null_for_err && |
| 5076 | (!CreatePipe(&efd[0], &efd[1], &saAttr, 0) |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 5077 | || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0))) |
Bram Moolenaar | d807036 | 2016-02-15 21:56:54 +0100 | [diff] [blame] | 5078 | goto failed; |
Bram Moolenaar | 13d6fb1 | 2016-03-08 18:40:52 +0100 | [diff] [blame] | 5079 | |
Bram Moolenaar | d807036 | 2016-02-15 21:56:54 +0100 | [diff] [blame] | 5080 | si.dwFlags |= STARTF_USESTDHANDLES; |
| 5081 | si.hStdInput = ifd[0]; |
Bram Moolenaar | d5d3d30 | 2016-03-09 20:54:51 +0100 | [diff] [blame] | 5082 | si.hStdOutput = ofd[1]; |
| 5083 | si.hStdError = use_out_for_err ? ofd[1] : efd[1]; |
| 5084 | |
| 5085 | if (!use_null_for_in || !use_null_for_out || !use_null_for_err) |
| 5086 | { |
Bram Moolenaar | de27989 | 2016-03-11 22:19:44 +0100 | [diff] [blame] | 5087 | if (options->jo_set & JO_CHANNEL) |
| 5088 | { |
| 5089 | channel = options->jo_channel; |
| 5090 | if (channel != NULL) |
| 5091 | ++channel->ch_refcount; |
| 5092 | } |
| 5093 | else |
| 5094 | channel = add_channel(); |
Bram Moolenaar | d5d3d30 | 2016-03-09 20:54:51 +0100 | [diff] [blame] | 5095 | if (channel == NULL) |
| 5096 | goto failed; |
| 5097 | } |
Bram Moolenaar | d807036 | 2016-02-15 21:56:54 +0100 | [diff] [blame] | 5098 | |
| 5099 | if (!vim_create_process(cmd, TRUE, |
Bram Moolenaar | 14207f4 | 2016-10-27 21:13:10 +0200 | [diff] [blame] | 5100 | CREATE_SUSPENDED | |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5101 | CREATE_DEFAULT_ERROR_MODE | |
| 5102 | CREATE_NEW_PROCESS_GROUP | |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5103 | CREATE_NEW_CONSOLE, |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5104 | &si, &pi)) |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5105 | { |
Bram Moolenaar | 14207f4 | 2016-10-27 21:13:10 +0200 | [diff] [blame] | 5106 | CloseHandle(jo); |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5107 | job->jv_status = JOB_FAILED; |
Bram Moolenaar | 7b3ca76 | 2016-02-14 19:13:43 +0100 | [diff] [blame] | 5108 | goto failed; |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5109 | } |
Bram Moolenaar | 7b3ca76 | 2016-02-14 19:13:43 +0100 | [diff] [blame] | 5110 | |
Bram Moolenaar | 14207f4 | 2016-10-27 21:13:10 +0200 | [diff] [blame] | 5111 | if (!AssignProcessToJobObject(jo, pi.hProcess)) |
| 5112 | { |
| 5113 | /* if failing, switch the way to terminate |
| 5114 | * process with TerminateProcess. */ |
| 5115 | CloseHandle(jo); |
| 5116 | jo = NULL; |
| 5117 | } |
| 5118 | ResumeThread(pi.hThread); |
Bram Moolenaar | 75578a3 | 2016-03-10 16:33:31 +0100 | [diff] [blame] | 5119 | CloseHandle(pi.hThread); |
Bram Moolenaar | 7b3ca76 | 2016-02-14 19:13:43 +0100 | [diff] [blame] | 5120 | job->jv_proc_info = pi; |
Bram Moolenaar | 14207f4 | 2016-10-27 21:13:10 +0200 | [diff] [blame] | 5121 | job->jv_job_object = jo; |
Bram Moolenaar | 7b3ca76 | 2016-02-14 19:13:43 +0100 | [diff] [blame] | 5122 | job->jv_status = JOB_STARTED; |
| 5123 | |
Bram Moolenaar | 641ad6c | 2016-09-01 18:32:11 +0200 | [diff] [blame] | 5124 | CloseHandle(ifd[0]); |
| 5125 | CloseHandle(ofd[1]); |
| 5126 | if (!use_out_for_err && !use_null_for_err) |
Bram Moolenaar | c25558b | 2016-03-03 21:02:23 +0100 | [diff] [blame] | 5127 | CloseHandle(efd[1]); |
Bram Moolenaar | d807036 | 2016-02-15 21:56:54 +0100 | [diff] [blame] | 5128 | |
Bram Moolenaar | 7b3ca76 | 2016-02-14 19:13:43 +0100 | [diff] [blame] | 5129 | job->jv_channel = channel; |
Bram Moolenaar | d5d3d30 | 2016-03-09 20:54:51 +0100 | [diff] [blame] | 5130 | if (channel != NULL) |
| 5131 | { |
| 5132 | channel_set_pipes(channel, |
| 5133 | use_file_for_in || use_null_for_in |
| 5134 | ? INVALID_FD : (sock_T)ifd[1], |
| 5135 | use_file_for_out || use_null_for_out |
| 5136 | ? INVALID_FD : (sock_T)ofd[0], |
| 5137 | use_out_for_err || use_file_for_err || use_null_for_err |
| 5138 | ? INVALID_FD : (sock_T)efd[0]); |
| 5139 | channel_set_job(channel, job, options); |
Bram Moolenaar | d5d3d30 | 2016-03-09 20:54:51 +0100 | [diff] [blame] | 5140 | } |
Bram Moolenaar | 7b3ca76 | 2016-02-14 19:13:43 +0100 | [diff] [blame] | 5141 | return; |
| 5142 | |
| 5143 | failed: |
Bram Moolenaar | d807036 | 2016-02-15 21:56:54 +0100 | [diff] [blame] | 5144 | CloseHandle(ifd[0]); |
| 5145 | CloseHandle(ofd[0]); |
| 5146 | CloseHandle(efd[0]); |
| 5147 | CloseHandle(ifd[1]); |
| 5148 | CloseHandle(ofd[1]); |
| 5149 | CloseHandle(efd[1]); |
Bram Moolenaar | de27989 | 2016-03-11 22:19:44 +0100 | [diff] [blame] | 5150 | channel_unref(channel); |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5151 | } |
| 5152 | |
| 5153 | char * |
| 5154 | mch_job_status(job_T *job) |
| 5155 | { |
| 5156 | DWORD dwExitCode = 0; |
| 5157 | |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5158 | if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode) |
| 5159 | || dwExitCode != STILL_ACTIVE) |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5160 | { |
Bram Moolenaar | eab089d | 2016-02-21 19:32:02 +0100 | [diff] [blame] | 5161 | job->jv_exitval = (int)dwExitCode; |
Bram Moolenaar | 7df915d | 2016-11-17 17:25:32 +0100 | [diff] [blame] | 5162 | if (job->jv_status < JOB_ENDED) |
Bram Moolenaar | 97792de | 2016-10-15 18:36:49 +0200 | [diff] [blame] | 5163 | { |
| 5164 | ch_log(job->jv_channel, "Job ended"); |
| 5165 | job->jv_status = JOB_ENDED; |
| 5166 | } |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5167 | return "dead"; |
| 5168 | } |
| 5169 | return "run"; |
| 5170 | } |
| 5171 | |
Bram Moolenaar | 97792de | 2016-10-15 18:36:49 +0200 | [diff] [blame] | 5172 | job_T * |
| 5173 | mch_detect_ended_job(job_T *job_list) |
| 5174 | { |
| 5175 | HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS]; |
| 5176 | job_T *jobArray[MAXIMUM_WAIT_OBJECTS]; |
| 5177 | job_T *job = job_list; |
| 5178 | |
| 5179 | while (job != NULL) |
| 5180 | { |
| 5181 | DWORD n; |
| 5182 | DWORD result; |
| 5183 | |
| 5184 | for (n = 0; n < MAXIMUM_WAIT_OBJECTS |
| 5185 | && job != NULL; job = job->jv_next) |
| 5186 | { |
| 5187 | if (job->jv_status == JOB_STARTED) |
| 5188 | { |
| 5189 | jobHandles[n] = job->jv_proc_info.hProcess; |
| 5190 | jobArray[n] = job; |
| 5191 | ++n; |
| 5192 | } |
| 5193 | } |
| 5194 | if (n == 0) |
| 5195 | continue; |
| 5196 | result = WaitForMultipleObjects(n, jobHandles, FALSE, 0); |
| 5197 | if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n) |
| 5198 | { |
| 5199 | job_T *wait_job = jobArray[result - WAIT_OBJECT_0]; |
| 5200 | |
| 5201 | if (STRCMP(mch_job_status(wait_job), "dead") == 0) |
| 5202 | return wait_job; |
| 5203 | } |
| 5204 | } |
| 5205 | return NULL; |
| 5206 | } |
| 5207 | |
Bram Moolenaar | fb63090 | 2016-10-29 14:55:00 +0200 | [diff] [blame] | 5208 | static BOOL |
| 5209 | terminate_all(HANDLE process, int code) |
| 5210 | { |
| 5211 | PROCESSENTRY32 pe; |
| 5212 | HANDLE h = INVALID_HANDLE_VALUE; |
| 5213 | DWORD pid = GetProcessId(process); |
| 5214 | |
| 5215 | if (pid != 0) |
| 5216 | { |
| 5217 | h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); |
| 5218 | if (h != INVALID_HANDLE_VALUE) |
| 5219 | { |
| 5220 | pe.dwSize = sizeof(PROCESSENTRY32); |
| 5221 | if (!Process32First(h, &pe)) |
| 5222 | goto theend; |
| 5223 | |
| 5224 | do |
| 5225 | { |
| 5226 | if (pe.th32ParentProcessID == pid) |
| 5227 | { |
| 5228 | HANDLE ph = OpenProcess( |
| 5229 | PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID); |
| 5230 | if (ph != NULL) |
| 5231 | { |
| 5232 | terminate_all(ph, code); |
| 5233 | CloseHandle(ph); |
| 5234 | } |
| 5235 | } |
| 5236 | } while (Process32Next(h, &pe)); |
| 5237 | |
| 5238 | CloseHandle(h); |
| 5239 | } |
| 5240 | } |
| 5241 | |
| 5242 | theend: |
| 5243 | return TerminateProcess(process, code); |
| 5244 | } |
| 5245 | |
| 5246 | /* |
| 5247 | * Send a (deadly) signal to "job". |
| 5248 | * Return FAIL if it didn't work. |
| 5249 | */ |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5250 | int |
| 5251 | mch_stop_job(job_T *job, char_u *how) |
| 5252 | { |
Bram Moolenaar | 923d926 | 2016-02-25 20:56:01 +0100 | [diff] [blame] | 5253 | int ret; |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5254 | |
Bram Moolenaar | 923d926 | 2016-02-25 20:56:01 +0100 | [diff] [blame] | 5255 | if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL) |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5256 | { |
Bram Moolenaar | fb63090 | 2016-10-29 14:55:00 +0200 | [diff] [blame] | 5257 | /* deadly signal */ |
Bram Moolenaar | 14207f4 | 2016-10-27 21:13:10 +0200 | [diff] [blame] | 5258 | if (job->jv_job_object != NULL) |
| 5259 | return TerminateJobObject(job->jv_job_object, 0) ? OK : FAIL; |
Bram Moolenaar | fb63090 | 2016-10-29 14:55:00 +0200 | [diff] [blame] | 5260 | return terminate_all(job->jv_proc_info.hProcess, 0) ? OK : FAIL; |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5261 | } |
| 5262 | |
| 5263 | if (!AttachConsole(job->jv_proc_info.dwProcessId)) |
| 5264 | return FAIL; |
| 5265 | ret = GenerateConsoleCtrlEvent( |
Bram Moolenaar | 923d926 | 2016-02-25 20:56:01 +0100 | [diff] [blame] | 5266 | STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT, |
| 5267 | job->jv_proc_info.dwProcessId) |
| 5268 | ? OK : FAIL; |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5269 | FreeConsole(); |
| 5270 | return ret; |
| 5271 | } |
| 5272 | |
| 5273 | /* |
| 5274 | * Clear the data related to "job". |
| 5275 | */ |
| 5276 | void |
| 5277 | mch_clear_job(job_T *job) |
| 5278 | { |
| 5279 | if (job->jv_status != JOB_FAILED) |
| 5280 | { |
Bram Moolenaar | 14207f4 | 2016-10-27 21:13:10 +0200 | [diff] [blame] | 5281 | if (job->jv_job_object != NULL) |
| 5282 | CloseHandle(job->jv_job_object); |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5283 | CloseHandle(job->jv_proc_info.hProcess); |
| 5284 | } |
Bram Moolenaar | 942d6b2 | 2016-02-07 19:57:16 +0100 | [diff] [blame] | 5285 | } |
| 5286 | #endif |
| 5287 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5288 | |
| 5289 | #ifndef FEAT_GUI_W32 |
| 5290 | |
| 5291 | /* |
| 5292 | * Start termcap mode |
| 5293 | */ |
| 5294 | static void |
| 5295 | termcap_mode_start(void) |
| 5296 | { |
| 5297 | DWORD cmodein; |
| 5298 | |
| 5299 | if (g_fTermcapMode) |
| 5300 | return; |
| 5301 | |
| 5302 | SaveConsoleBuffer(&g_cbNonTermcap); |
| 5303 | |
| 5304 | if (g_cbTermcap.IsValid) |
| 5305 | { |
| 5306 | /* |
| 5307 | * We've been in termcap mode before. Restore certain screen |
| 5308 | * characteristics, including the buffer size and the window |
| 5309 | * size. Since we will be redrawing the screen, we don't need |
| 5310 | * to restore the actual contents of the buffer. |
| 5311 | */ |
| 5312 | RestoreConsoleBuffer(&g_cbTermcap, FALSE); |
| 5313 | SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow); |
| 5314 | Rows = g_cbTermcap.Info.dwSize.Y; |
| 5315 | Columns = g_cbTermcap.Info.dwSize.X; |
| 5316 | } |
| 5317 | else |
| 5318 | { |
| 5319 | /* |
| 5320 | * This is our first time entering termcap mode. Clear the console |
| 5321 | * screen buffer, and resize the buffer to match the current window |
| 5322 | * size. We will use this as the size of our editing environment. |
| 5323 | */ |
| 5324 | ClearConsoleBuffer(g_attrCurrent); |
| 5325 | ResizeConBufAndWindow(g_hConOut, Columns, Rows); |
| 5326 | } |
| 5327 | |
| 5328 | #ifdef FEAT_TITLE |
| 5329 | resettitle(); |
| 5330 | #endif |
| 5331 | |
| 5332 | GetConsoleMode(g_hConIn, &cmodein); |
| 5333 | #ifdef FEAT_MOUSE |
| 5334 | if (g_fMouseActive) |
| 5335 | cmodein |= ENABLE_MOUSE_INPUT; |
| 5336 | else |
| 5337 | cmodein &= ~ENABLE_MOUSE_INPUT; |
| 5338 | #endif |
| 5339 | cmodein |= ENABLE_WINDOW_INPUT; |
| 5340 | SetConsoleMode(g_hConIn, cmodein); |
| 5341 | |
| 5342 | redraw_later_clear(); |
| 5343 | g_fTermcapMode = TRUE; |
| 5344 | } |
| 5345 | |
| 5346 | |
| 5347 | /* |
| 5348 | * End termcap mode |
| 5349 | */ |
| 5350 | static void |
| 5351 | termcap_mode_end(void) |
| 5352 | { |
| 5353 | DWORD cmodein; |
| 5354 | ConsoleBuffer *cb; |
| 5355 | COORD coord; |
| 5356 | DWORD dwDummy; |
| 5357 | |
| 5358 | if (!g_fTermcapMode) |
| 5359 | return; |
| 5360 | |
| 5361 | SaveConsoleBuffer(&g_cbTermcap); |
| 5362 | |
| 5363 | GetConsoleMode(g_hConIn, &cmodein); |
| 5364 | cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT); |
| 5365 | SetConsoleMode(g_hConIn, cmodein); |
| 5366 | |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 5367 | #ifdef FEAT_RESTORE_ORIG_SCREEN |
| 5368 | cb = exiting ? &g_cbOrig : &g_cbNonTermcap; |
| 5369 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5370 | cb = &g_cbNonTermcap; |
Bram Moolenaar | 4c0aac5 | 2015-10-30 16:46:55 +0100 | [diff] [blame] | 5371 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5372 | RestoreConsoleBuffer(cb, p_rs); |
| 5373 | SetConsoleCursorInfo(g_hConOut, &g_cci); |
| 5374 | |
| 5375 | if (p_rs || exiting) |
| 5376 | { |
| 5377 | /* |
| 5378 | * Clear anything that happens to be on the current line. |
| 5379 | */ |
| 5380 | coord.X = 0; |
| 5381 | coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1)); |
| 5382 | FillConsoleOutputCharacter(g_hConOut, ' ', |
| 5383 | cb->Info.dwSize.X, coord, &dwDummy); |
| 5384 | /* |
| 5385 | * The following is just for aesthetics. If we are exiting without |
| 5386 | * restoring the screen, then we want to have a prompt string |
| 5387 | * appear at the bottom line. However, the command interpreter |
| 5388 | * seems to always advance the cursor one line before displaying |
| 5389 | * the prompt string, which causes the screen to scroll. To |
| 5390 | * counter this, move the cursor up one line before exiting. |
| 5391 | */ |
| 5392 | if (exiting && !p_rs) |
| 5393 | coord.Y--; |
| 5394 | /* |
| 5395 | * Position the cursor at the leftmost column of the desired row. |
| 5396 | */ |
| 5397 | SetConsoleCursorPosition(g_hConOut, coord); |
| 5398 | } |
| 5399 | |
| 5400 | g_fTermcapMode = FALSE; |
| 5401 | } |
| 5402 | #endif /* FEAT_GUI_W32 */ |
| 5403 | |
| 5404 | |
| 5405 | #ifdef FEAT_GUI_W32 |
| 5406 | void |
| 5407 | mch_write( |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 5408 | char_u *s UNUSED, |
| 5409 | int len UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5410 | { |
| 5411 | /* never used */ |
| 5412 | } |
| 5413 | |
| 5414 | #else |
| 5415 | |
| 5416 | /* |
| 5417 | * clear `n' chars, starting from `coord' |
| 5418 | */ |
| 5419 | static void |
| 5420 | clear_chars( |
| 5421 | COORD coord, |
| 5422 | DWORD n) |
| 5423 | { |
| 5424 | DWORD dwDummy; |
| 5425 | |
| 5426 | FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy); |
| 5427 | FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy); |
| 5428 | } |
| 5429 | |
| 5430 | |
| 5431 | /* |
| 5432 | * Clear the screen |
| 5433 | */ |
| 5434 | static void |
| 5435 | clear_screen(void) |
| 5436 | { |
| 5437 | g_coord.X = g_coord.Y = 0; |
| 5438 | clear_chars(g_coord, Rows * Columns); |
| 5439 | } |
| 5440 | |
| 5441 | |
| 5442 | /* |
| 5443 | * Clear to end of display |
| 5444 | */ |
| 5445 | static void |
| 5446 | clear_to_end_of_display(void) |
| 5447 | { |
| 5448 | clear_chars(g_coord, (Rows - g_coord.Y - 1) |
| 5449 | * Columns + (Columns - g_coord.X)); |
| 5450 | } |
| 5451 | |
| 5452 | |
| 5453 | /* |
| 5454 | * Clear to end of line |
| 5455 | */ |
| 5456 | static void |
| 5457 | clear_to_end_of_line(void) |
| 5458 | { |
| 5459 | clear_chars(g_coord, Columns - g_coord.X); |
| 5460 | } |
| 5461 | |
| 5462 | |
| 5463 | /* |
| 5464 | * Scroll the scroll region up by `cLines' lines |
| 5465 | */ |
| 5466 | static void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5467 | scroll(unsigned cLines) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5468 | { |
| 5469 | COORD oldcoord = g_coord; |
| 5470 | |
| 5471 | gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1); |
| 5472 | delete_lines(cLines); |
| 5473 | |
| 5474 | g_coord = oldcoord; |
| 5475 | } |
| 5476 | |
| 5477 | |
| 5478 | /* |
| 5479 | * Set the scroll region |
| 5480 | */ |
| 5481 | static void |
| 5482 | set_scroll_region( |
| 5483 | unsigned left, |
| 5484 | unsigned top, |
| 5485 | unsigned right, |
| 5486 | unsigned bottom) |
| 5487 | { |
| 5488 | if (left >= right |
| 5489 | || top >= bottom |
| 5490 | || right > (unsigned) Columns - 1 |
| 5491 | || bottom > (unsigned) Rows - 1) |
| 5492 | return; |
| 5493 | |
| 5494 | g_srScrollRegion.Left = left; |
| 5495 | g_srScrollRegion.Top = top; |
| 5496 | g_srScrollRegion.Right = right; |
| 5497 | g_srScrollRegion.Bottom = bottom; |
| 5498 | } |
| 5499 | |
| 5500 | |
| 5501 | /* |
| 5502 | * Insert `cLines' lines at the current cursor position |
| 5503 | */ |
| 5504 | static void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5505 | insert_lines(unsigned cLines) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5506 | { |
| 5507 | SMALL_RECT source; |
| 5508 | COORD dest; |
| 5509 | CHAR_INFO fill; |
| 5510 | |
| 5511 | dest.X = 0; |
| 5512 | dest.Y = g_coord.Y + cLines; |
| 5513 | |
| 5514 | source.Left = 0; |
| 5515 | source.Top = g_coord.Y; |
| 5516 | source.Right = g_srScrollRegion.Right; |
| 5517 | source.Bottom = g_srScrollRegion.Bottom - cLines; |
| 5518 | |
| 5519 | fill.Char.AsciiChar = ' '; |
| 5520 | fill.Attributes = g_attrCurrent; |
| 5521 | |
| 5522 | ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill); |
| 5523 | |
| 5524 | /* Here we have to deal with a win32 console flake: If the scroll |
| 5525 | * region looks like abc and we scroll c to a and fill with d we get |
| 5526 | * cbd... if we scroll block c one line at a time to a, we get cdd... |
| 5527 | * vim expects cdd consistently... So we have to deal with that |
| 5528 | * here... (this also occurs scrolling the same way in the other |
| 5529 | * direction). */ |
| 5530 | |
| 5531 | if (source.Bottom < dest.Y) |
| 5532 | { |
| 5533 | COORD coord; |
| 5534 | |
| 5535 | coord.X = 0; |
| 5536 | coord.Y = source.Bottom; |
| 5537 | clear_chars(coord, Columns * (dest.Y - source.Bottom)); |
| 5538 | } |
| 5539 | } |
| 5540 | |
| 5541 | |
| 5542 | /* |
| 5543 | * Delete `cLines' lines at the current cursor position |
| 5544 | */ |
| 5545 | static void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5546 | delete_lines(unsigned cLines) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5547 | { |
| 5548 | SMALL_RECT source; |
| 5549 | COORD dest; |
| 5550 | CHAR_INFO fill; |
| 5551 | int nb; |
| 5552 | |
| 5553 | dest.X = 0; |
| 5554 | dest.Y = g_coord.Y; |
| 5555 | |
| 5556 | source.Left = 0; |
| 5557 | source.Top = g_coord.Y + cLines; |
| 5558 | source.Right = g_srScrollRegion.Right; |
| 5559 | source.Bottom = g_srScrollRegion.Bottom; |
| 5560 | |
| 5561 | fill.Char.AsciiChar = ' '; |
| 5562 | fill.Attributes = g_attrCurrent; |
| 5563 | |
| 5564 | ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill); |
| 5565 | |
| 5566 | /* Here we have to deal with a win32 console flake: If the scroll |
| 5567 | * region looks like abc and we scroll c to a and fill with d we get |
| 5568 | * cbd... if we scroll block c one line at a time to a, we get cdd... |
| 5569 | * vim expects cdd consistently... So we have to deal with that |
| 5570 | * here... (this also occurs scrolling the same way in the other |
| 5571 | * direction). */ |
| 5572 | |
| 5573 | nb = dest.Y + (source.Bottom - source.Top) + 1; |
| 5574 | |
| 5575 | if (nb < source.Top) |
| 5576 | { |
| 5577 | COORD coord; |
| 5578 | |
| 5579 | coord.X = 0; |
| 5580 | coord.Y = nb; |
| 5581 | clear_chars(coord, Columns * (source.Top - nb)); |
| 5582 | } |
| 5583 | } |
| 5584 | |
| 5585 | |
| 5586 | /* |
| 5587 | * Set the cursor position |
| 5588 | */ |
| 5589 | static void |
| 5590 | gotoxy( |
| 5591 | unsigned x, |
| 5592 | unsigned y) |
| 5593 | { |
| 5594 | if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows) |
| 5595 | return; |
| 5596 | |
| 5597 | /* external cursor coords are 1-based; internal are 0-based */ |
| 5598 | g_coord.X = x - 1; |
| 5599 | g_coord.Y = y - 1; |
| 5600 | SetConsoleCursorPosition(g_hConOut, g_coord); |
| 5601 | } |
| 5602 | |
| 5603 | |
| 5604 | /* |
| 5605 | * Set the current text attribute = (foreground | background) |
| 5606 | * See ../doc/os_win32.txt for the numbers. |
| 5607 | */ |
| 5608 | static void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5609 | textattr(WORD wAttr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5610 | { |
Bram Moolenaar | 6383b92 | 2015-03-24 17:12:19 +0100 | [diff] [blame] | 5611 | g_attrCurrent = wAttr & 0xff; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5612 | |
| 5613 | SetConsoleTextAttribute(g_hConOut, wAttr); |
| 5614 | } |
| 5615 | |
| 5616 | |
| 5617 | static void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5618 | textcolor(WORD wAttr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5619 | { |
Bram Moolenaar | 6383b92 | 2015-03-24 17:12:19 +0100 | [diff] [blame] | 5620 | g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5621 | |
| 5622 | SetConsoleTextAttribute(g_hConOut, g_attrCurrent); |
| 5623 | } |
| 5624 | |
| 5625 | |
| 5626 | static void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5627 | textbackground(WORD wAttr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5628 | { |
Bram Moolenaar | 6383b92 | 2015-03-24 17:12:19 +0100 | [diff] [blame] | 5629 | g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5630 | |
| 5631 | SetConsoleTextAttribute(g_hConOut, g_attrCurrent); |
| 5632 | } |
| 5633 | |
| 5634 | |
| 5635 | /* |
| 5636 | * restore the default text attribute (whatever we started with) |
| 5637 | */ |
| 5638 | static void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5639 | normvideo(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5640 | { |
| 5641 | textattr(g_attrDefault); |
| 5642 | } |
| 5643 | |
| 5644 | |
| 5645 | static WORD g_attrPreStandout = 0; |
| 5646 | |
| 5647 | /* |
| 5648 | * Make the text standout, by brightening it |
| 5649 | */ |
| 5650 | static void |
| 5651 | standout(void) |
| 5652 | { |
| 5653 | g_attrPreStandout = g_attrCurrent; |
| 5654 | textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY)); |
| 5655 | } |
| 5656 | |
| 5657 | |
| 5658 | /* |
| 5659 | * Turn off standout mode |
| 5660 | */ |
| 5661 | static void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5662 | standend(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5663 | { |
| 5664 | if (g_attrPreStandout) |
| 5665 | { |
| 5666 | textattr(g_attrPreStandout); |
| 5667 | g_attrPreStandout = 0; |
| 5668 | } |
| 5669 | } |
| 5670 | |
| 5671 | |
| 5672 | /* |
Bram Moolenaar | ff1d0d4 | 2007-05-10 17:24:16 +0000 | [diff] [blame] | 5673 | * Set normal fg/bg color, based on T_ME. Called when t_me has been set. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5674 | */ |
| 5675 | void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5676 | mch_set_normal_colors(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5677 | { |
| 5678 | char_u *p; |
| 5679 | int n; |
| 5680 | |
| 5681 | cterm_normal_fg_color = (g_attrDefault & 0xf) + 1; |
| 5682 | cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1; |
| 5683 | if (T_ME[0] == ESC && T_ME[1] == '|') |
| 5684 | { |
| 5685 | p = T_ME + 2; |
| 5686 | n = getdigits(&p); |
| 5687 | if (*p == 'm' && n > 0) |
| 5688 | { |
| 5689 | cterm_normal_fg_color = (n & 0xf) + 1; |
| 5690 | cterm_normal_bg_color = ((n >> 4) & 0xf) + 1; |
| 5691 | } |
| 5692 | } |
| 5693 | } |
| 5694 | |
| 5695 | |
| 5696 | /* |
| 5697 | * visual bell: flash the screen |
| 5698 | */ |
| 5699 | static void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5700 | visual_bell(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5701 | { |
| 5702 | COORD coordOrigin = {0, 0}; |
| 5703 | WORD attrFlash = ~g_attrCurrent & 0xff; |
| 5704 | |
| 5705 | DWORD dwDummy; |
| 5706 | LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD)); |
| 5707 | |
| 5708 | if (oldattrs == NULL) |
| 5709 | return; |
| 5710 | ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns, |
| 5711 | coordOrigin, &dwDummy); |
| 5712 | FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns, |
| 5713 | coordOrigin, &dwDummy); |
| 5714 | |
| 5715 | Sleep(15); /* wait for 15 msec */ |
| 5716 | WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns, |
| 5717 | coordOrigin, &dwDummy); |
| 5718 | vim_free(oldattrs); |
| 5719 | } |
| 5720 | |
| 5721 | |
| 5722 | /* |
| 5723 | * Make the cursor visible or invisible |
| 5724 | */ |
| 5725 | static void |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 5726 | cursor_visible(BOOL fVisible) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5727 | { |
| 5728 | s_cursor_visible = fVisible; |
| 5729 | #ifdef MCH_CURSOR_SHAPE |
| 5730 | mch_update_cursor(); |
| 5731 | #endif |
| 5732 | } |
| 5733 | |
| 5734 | |
| 5735 | /* |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5736 | * Write "cbToWrite" bytes in `pchBuf' to the screen. |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 5737 | * Returns the number of bytes actually written (at least one). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5738 | */ |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 5739 | static DWORD |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5740 | write_chars( |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 5741 | char_u *pchBuf, |
| 5742 | DWORD cbToWrite) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5743 | { |
| 5744 | COORD coord = g_coord; |
| 5745 | DWORD written; |
| 5746 | |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 5747 | #ifdef FEAT_MBYTE |
| 5748 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 5749 | { |
| 5750 | static WCHAR *unicodebuf = NULL; |
| 5751 | static int unibuflen = 0; |
| 5752 | int length; |
| 5753 | DWORD n, cchwritten, cells; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5754 | |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 5755 | length = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite, 0, 0); |
| 5756 | if (unicodebuf == NULL || length > unibuflen) |
| 5757 | { |
| 5758 | vim_free(unicodebuf); |
| 5759 | unicodebuf = (WCHAR *)lalloc(length * sizeof(WCHAR), FALSE); |
| 5760 | unibuflen = length; |
| 5761 | } |
| 5762 | MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite, |
| 5763 | unicodebuf, unibuflen); |
| 5764 | |
| 5765 | cells = mb_string2cells(pchBuf, cbToWrite); |
| 5766 | FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells, |
| 5767 | coord, &written); |
| 5768 | /* When writing fails or didn't write a single character, pretend one |
| 5769 | * character was written, otherwise we get stuck. */ |
| 5770 | if (WriteConsoleOutputCharacterW(g_hConOut, unicodebuf, length, |
| 5771 | coord, &cchwritten) == 0 |
| 5772 | || cchwritten == 0) |
| 5773 | cchwritten = 1; |
| 5774 | |
| 5775 | if (cchwritten == length) |
| 5776 | { |
| 5777 | written = cbToWrite; |
| 5778 | g_coord.X += (SHORT)cells; |
| 5779 | } |
| 5780 | else |
| 5781 | { |
| 5782 | char_u *p = pchBuf; |
| 5783 | for (n = 0; n < cchwritten; n++) |
Bram Moolenaar | 91acfff | 2017-03-12 19:22:36 +0100 | [diff] [blame] | 5784 | MB_CPTR_ADV(p); |
Bram Moolenaar | ac360bf | 2015-09-01 20:31:20 +0200 | [diff] [blame] | 5785 | written = p - pchBuf; |
| 5786 | g_coord.X += (SHORT)mb_string2cells(pchBuf, written); |
| 5787 | } |
| 5788 | } |
| 5789 | else |
| 5790 | #endif |
| 5791 | { |
| 5792 | FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cbToWrite, |
| 5793 | coord, &written); |
| 5794 | /* When writing fails or didn't write a single character, pretend one |
| 5795 | * character was written, otherwise we get stuck. */ |
| 5796 | if (WriteConsoleOutputCharacter(g_hConOut, (LPCSTR)pchBuf, cbToWrite, |
| 5797 | coord, &written) == 0 |
| 5798 | || written == 0) |
| 5799 | written = 1; |
| 5800 | |
| 5801 | g_coord.X += (SHORT) written; |
| 5802 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5803 | |
| 5804 | while (g_coord.X > g_srScrollRegion.Right) |
| 5805 | { |
| 5806 | g_coord.X -= (SHORT) Columns; |
| 5807 | if (g_coord.Y < g_srScrollRegion.Bottom) |
| 5808 | g_coord.Y++; |
| 5809 | } |
| 5810 | |
| 5811 | gotoxy(g_coord.X + 1, g_coord.Y + 1); |
| 5812 | |
| 5813 | return written; |
| 5814 | } |
| 5815 | |
| 5816 | |
| 5817 | /* |
| 5818 | * mch_write(): write the output buffer to the screen, translating ESC |
| 5819 | * sequences into calls to console output routines. |
| 5820 | */ |
| 5821 | void |
| 5822 | mch_write( |
| 5823 | char_u *s, |
| 5824 | int len) |
| 5825 | { |
| 5826 | s[len] = NUL; |
| 5827 | |
| 5828 | if (!term_console) |
| 5829 | { |
| 5830 | write(1, s, (unsigned)len); |
| 5831 | return; |
| 5832 | } |
| 5833 | |
| 5834 | /* translate ESC | sequences into faked bios calls */ |
| 5835 | while (len--) |
| 5836 | { |
| 5837 | /* optimization: use one single write_chars for runs of text, |
| 5838 | * rather than once per character It ain't curses, but it helps. */ |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 5839 | DWORD prefix = (DWORD)strcspn((char *)s, "\n\r\b\a\033"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5840 | |
| 5841 | if (p_wd) |
| 5842 | { |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5843 | WaitForChar(p_wd, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5844 | if (prefix != 0) |
| 5845 | prefix = 1; |
| 5846 | } |
| 5847 | |
| 5848 | if (prefix != 0) |
| 5849 | { |
| 5850 | DWORD nWritten; |
| 5851 | |
| 5852 | nWritten = write_chars(s, prefix); |
| 5853 | #ifdef MCH_WRITE_DUMP |
| 5854 | if (fdDump) |
| 5855 | { |
| 5856 | fputc('>', fdDump); |
| 5857 | fwrite(s, sizeof(char_u), nWritten, fdDump); |
| 5858 | fputs("<\n", fdDump); |
| 5859 | } |
| 5860 | #endif |
| 5861 | len -= (nWritten - 1); |
| 5862 | s += nWritten; |
| 5863 | } |
| 5864 | else if (s[0] == '\n') |
| 5865 | { |
| 5866 | /* \n, newline: go to the beginning of the next line or scroll */ |
| 5867 | if (g_coord.Y == g_srScrollRegion.Bottom) |
| 5868 | { |
| 5869 | scroll(1); |
| 5870 | gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1); |
| 5871 | } |
| 5872 | else |
| 5873 | { |
| 5874 | gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2); |
| 5875 | } |
| 5876 | #ifdef MCH_WRITE_DUMP |
| 5877 | if (fdDump) |
| 5878 | fputs("\\n\n", fdDump); |
| 5879 | #endif |
| 5880 | s++; |
| 5881 | } |
| 5882 | else if (s[0] == '\r') |
| 5883 | { |
| 5884 | /* \r, carriage return: go to beginning of line */ |
| 5885 | gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1); |
| 5886 | #ifdef MCH_WRITE_DUMP |
| 5887 | if (fdDump) |
| 5888 | fputs("\\r\n", fdDump); |
| 5889 | #endif |
| 5890 | s++; |
| 5891 | } |
| 5892 | else if (s[0] == '\b') |
| 5893 | { |
| 5894 | /* \b, backspace: move cursor one position left */ |
| 5895 | if (g_coord.X > g_srScrollRegion.Left) |
| 5896 | g_coord.X--; |
| 5897 | else if (g_coord.Y > g_srScrollRegion.Top) |
| 5898 | { |
| 5899 | g_coord.X = g_srScrollRegion.Right; |
| 5900 | g_coord.Y--; |
| 5901 | } |
| 5902 | gotoxy(g_coord.X + 1, g_coord.Y + 1); |
| 5903 | #ifdef MCH_WRITE_DUMP |
| 5904 | if (fdDump) |
| 5905 | fputs("\\b\n", fdDump); |
| 5906 | #endif |
| 5907 | s++; |
| 5908 | } |
| 5909 | else if (s[0] == '\a') |
| 5910 | { |
| 5911 | /* \a, bell */ |
| 5912 | MessageBeep(0xFFFFFFFF); |
| 5913 | #ifdef MCH_WRITE_DUMP |
| 5914 | if (fdDump) |
| 5915 | fputs("\\a\n", fdDump); |
| 5916 | #endif |
| 5917 | s++; |
| 5918 | } |
| 5919 | else if (s[0] == ESC && len >= 3-1 && s[1] == '|') |
| 5920 | { |
| 5921 | #ifdef MCH_WRITE_DUMP |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 5922 | char_u *old_s = s; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5923 | #endif |
Bram Moolenaar | c0197e2 | 2004-09-13 20:26:32 +0000 | [diff] [blame] | 5924 | char_u *p; |
| 5925 | int arg1 = 0, arg2 = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5926 | |
| 5927 | switch (s[2]) |
| 5928 | { |
| 5929 | /* one or two numeric arguments, separated by ';' */ |
| 5930 | |
| 5931 | case '0': case '1': case '2': case '3': case '4': |
| 5932 | case '5': case '6': case '7': case '8': case '9': |
| 5933 | p = s + 2; |
| 5934 | arg1 = getdigits(&p); /* no check for length! */ |
| 5935 | if (p > s + len) |
| 5936 | break; |
| 5937 | |
| 5938 | if (*p == ';') |
| 5939 | { |
| 5940 | ++p; |
| 5941 | arg2 = getdigits(&p); /* no check for length! */ |
| 5942 | if (p > s + len) |
| 5943 | break; |
| 5944 | |
| 5945 | if (*p == 'H') |
| 5946 | gotoxy(arg2, arg1); |
| 5947 | else if (*p == 'r') |
| 5948 | set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1); |
| 5949 | } |
| 5950 | else if (*p == 'A') |
| 5951 | { |
| 5952 | /* move cursor up arg1 lines in same column */ |
| 5953 | gotoxy(g_coord.X + 1, |
| 5954 | max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1); |
| 5955 | } |
| 5956 | else if (*p == 'C') |
| 5957 | { |
| 5958 | /* move cursor right arg1 columns in same line */ |
| 5959 | gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1, |
| 5960 | g_coord.Y + 1); |
| 5961 | } |
| 5962 | else if (*p == 'H') |
| 5963 | { |
| 5964 | gotoxy(1, arg1); |
| 5965 | } |
| 5966 | else if (*p == 'L') |
| 5967 | { |
| 5968 | insert_lines(arg1); |
| 5969 | } |
| 5970 | else if (*p == 'm') |
| 5971 | { |
| 5972 | if (arg1 == 0) |
| 5973 | normvideo(); |
| 5974 | else |
| 5975 | textattr((WORD) arg1); |
| 5976 | } |
| 5977 | else if (*p == 'f') |
| 5978 | { |
| 5979 | textcolor((WORD) arg1); |
| 5980 | } |
| 5981 | else if (*p == 'b') |
| 5982 | { |
| 5983 | textbackground((WORD) arg1); |
| 5984 | } |
| 5985 | else if (*p == 'M') |
| 5986 | { |
| 5987 | delete_lines(arg1); |
| 5988 | } |
| 5989 | |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 5990 | len -= (int)(p - s); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5991 | s = p + 1; |
| 5992 | break; |
| 5993 | |
| 5994 | |
| 5995 | /* Three-character escape sequences */ |
| 5996 | |
| 5997 | case 'A': |
| 5998 | /* move cursor up one line in same column */ |
| 5999 | gotoxy(g_coord.X + 1, |
| 6000 | max(g_srScrollRegion.Top, g_coord.Y - 1) + 1); |
| 6001 | goto got3; |
| 6002 | |
| 6003 | case 'B': |
| 6004 | visual_bell(); |
| 6005 | goto got3; |
| 6006 | |
| 6007 | case 'C': |
| 6008 | /* move cursor right one column in same line */ |
| 6009 | gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1, |
| 6010 | g_coord.Y + 1); |
| 6011 | goto got3; |
| 6012 | |
| 6013 | case 'E': |
| 6014 | termcap_mode_end(); |
| 6015 | goto got3; |
| 6016 | |
| 6017 | case 'F': |
| 6018 | standout(); |
| 6019 | goto got3; |
| 6020 | |
| 6021 | case 'f': |
| 6022 | standend(); |
| 6023 | goto got3; |
| 6024 | |
| 6025 | case 'H': |
| 6026 | gotoxy(1, 1); |
| 6027 | goto got3; |
| 6028 | |
| 6029 | case 'j': |
| 6030 | clear_to_end_of_display(); |
| 6031 | goto got3; |
| 6032 | |
| 6033 | case 'J': |
| 6034 | clear_screen(); |
| 6035 | goto got3; |
| 6036 | |
| 6037 | case 'K': |
| 6038 | clear_to_end_of_line(); |
| 6039 | goto got3; |
| 6040 | |
| 6041 | case 'L': |
| 6042 | insert_lines(1); |
| 6043 | goto got3; |
| 6044 | |
| 6045 | case 'M': |
| 6046 | delete_lines(1); |
| 6047 | goto got3; |
| 6048 | |
| 6049 | case 'S': |
| 6050 | termcap_mode_start(); |
| 6051 | goto got3; |
| 6052 | |
| 6053 | case 'V': |
| 6054 | cursor_visible(TRUE); |
| 6055 | goto got3; |
| 6056 | |
| 6057 | case 'v': |
| 6058 | cursor_visible(FALSE); |
| 6059 | goto got3; |
| 6060 | |
| 6061 | got3: |
| 6062 | s += 3; |
| 6063 | len -= 2; |
| 6064 | } |
| 6065 | |
| 6066 | #ifdef MCH_WRITE_DUMP |
| 6067 | if (fdDump) |
| 6068 | { |
| 6069 | fputs("ESC | ", fdDump); |
| 6070 | fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump); |
| 6071 | fputc('\n', fdDump); |
| 6072 | } |
| 6073 | #endif |
| 6074 | } |
| 6075 | else |
| 6076 | { |
| 6077 | /* Write a single character */ |
| 6078 | DWORD nWritten; |
| 6079 | |
| 6080 | nWritten = write_chars(s, 1); |
| 6081 | #ifdef MCH_WRITE_DUMP |
| 6082 | if (fdDump) |
| 6083 | { |
| 6084 | fputc('>', fdDump); |
| 6085 | fwrite(s, sizeof(char_u), nWritten, fdDump); |
| 6086 | fputs("<\n", fdDump); |
| 6087 | } |
| 6088 | #endif |
| 6089 | |
| 6090 | len -= (nWritten - 1); |
| 6091 | s += nWritten; |
| 6092 | } |
| 6093 | } |
| 6094 | |
| 6095 | #ifdef MCH_WRITE_DUMP |
| 6096 | if (fdDump) |
| 6097 | fflush(fdDump); |
| 6098 | #endif |
| 6099 | } |
| 6100 | |
| 6101 | #endif /* FEAT_GUI_W32 */ |
| 6102 | |
| 6103 | |
| 6104 | /* |
Bram Moolenaar | 0e0b3dd | 2016-03-17 17:58:56 +0100 | [diff] [blame] | 6105 | * Delay for "msec" milliseconds. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6106 | */ |
| 6107 | void |
| 6108 | mch_delay( |
| 6109 | long msec, |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 6110 | int ignoreinput UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6111 | { |
| 6112 | #ifdef FEAT_GUI_W32 |
| 6113 | Sleep((int)msec); /* never wait for input */ |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 6114 | #else /* Console */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6115 | if (ignoreinput) |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 6116 | # ifdef FEAT_MZSCHEME |
| 6117 | if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq) |
| 6118 | { |
| 6119 | int towait = p_mzq; |
| 6120 | |
| 6121 | /* if msec is large enough, wait by portions in p_mzq */ |
| 6122 | while (msec > 0) |
| 6123 | { |
| 6124 | mzvim_check_threads(); |
| 6125 | if (msec < towait) |
| 6126 | towait = msec; |
| 6127 | Sleep(towait); |
| 6128 | msec -= towait; |
| 6129 | } |
| 6130 | } |
| 6131 | else |
| 6132 | # endif |
| 6133 | Sleep((int)msec); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6134 | else |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 6135 | WaitForChar(msec, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6136 | #endif |
| 6137 | } |
| 6138 | |
| 6139 | |
| 6140 | /* |
Bram Moolenaar | 203258c | 2016-01-17 22:15:16 +0100 | [diff] [blame] | 6141 | * This version of remove is not scared by a readonly (backup) file. |
| 6142 | * This can also remove a symbolic link like Unix. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6143 | * Return 0 for success, -1 for failure. |
| 6144 | */ |
| 6145 | int |
| 6146 | mch_remove(char_u *name) |
| 6147 | { |
| 6148 | #ifdef FEAT_MBYTE |
| 6149 | WCHAR *wn = NULL; |
| 6150 | int n; |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 6151 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6152 | |
Bram Moolenaar | 203258c | 2016-01-17 22:15:16 +0100 | [diff] [blame] | 6153 | /* |
| 6154 | * On Windows, deleting a directory's symbolic link is done by |
| 6155 | * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact. |
| 6156 | */ |
| 6157 | if (mch_isdir(name) && mch_is_symbolic_link(name)) |
| 6158 | return mch_rmdir(name); |
| 6159 | |
Bram Moolenaar | 12b559e | 2013-06-12 22:41:37 +0200 | [diff] [blame] | 6160 | win32_setattrs(name, FILE_ATTRIBUTE_NORMAL); |
| 6161 | |
| 6162 | #ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6163 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 6164 | { |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 6165 | wn = enc_to_utf16(name, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6166 | if (wn != NULL) |
| 6167 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6168 | n = DeleteFileW(wn) ? 0 : -1; |
| 6169 | vim_free(wn); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6170 | return n; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6171 | } |
| 6172 | } |
| 6173 | #endif |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 6174 | return DeleteFile((LPCSTR)name) ? 0 : -1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6175 | } |
| 6176 | |
| 6177 | |
| 6178 | /* |
Bram Moolenaar | b9c31e7 | 2016-09-29 15:18:57 +0200 | [diff] [blame] | 6179 | * Check for an "interrupt signal": CTRL-break or CTRL-C. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6180 | */ |
| 6181 | void |
Bram Moolenaar | b9c31e7 | 2016-09-29 15:18:57 +0200 | [diff] [blame] | 6182 | mch_breakcheck(int force) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6183 | { |
| 6184 | #ifndef FEAT_GUI_W32 /* never used */ |
| 6185 | if (g_fCtrlCPressed || g_fCBrkPressed) |
| 6186 | { |
| 6187 | g_fCtrlCPressed = g_fCBrkPressed = FALSE; |
| 6188 | got_int = TRUE; |
| 6189 | } |
| 6190 | #endif |
| 6191 | } |
| 6192 | |
Bram Moolenaar | ee27397 | 2016-01-02 21:11:51 +0100 | [diff] [blame] | 6193 | /* physical RAM to leave for the OS */ |
| 6194 | #define WINNT_RESERVE_BYTES (256*1024*1024) |
Bram Moolenaar | ee27397 | 2016-01-02 21:11:51 +0100 | [diff] [blame] | 6195 | |
| 6196 | /* |
| 6197 | * How much main memory in KiB that can be used by VIM. |
| 6198 | */ |
Bram Moolenaar | ee27397 | 2016-01-02 21:11:51 +0100 | [diff] [blame] | 6199 | long_u |
Bram Moolenaar | 1266d67 | 2017-02-01 13:43:36 +0100 | [diff] [blame] | 6200 | mch_total_mem(int special UNUSED) |
Bram Moolenaar | ee27397 | 2016-01-02 21:11:51 +0100 | [diff] [blame] | 6201 | { |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6202 | MEMORYSTATUSEX ms; |
| 6203 | |
Bram Moolenaar | ee27397 | 2016-01-02 21:11:51 +0100 | [diff] [blame] | 6204 | PlatformId(); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6205 | /* Need to use GlobalMemoryStatusEx() when there is more memory than |
| 6206 | * what fits in 32 bits. But it's not always available. */ |
| 6207 | ms.dwLength = sizeof(MEMORYSTATUSEX); |
| 6208 | GlobalMemoryStatusEx(&ms); |
| 6209 | if (ms.ullAvailVirtual < ms.ullTotalPhys) |
Bram Moolenaar | ee27397 | 2016-01-02 21:11:51 +0100 | [diff] [blame] | 6210 | { |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6211 | /* Process address space fits in physical RAM, use all of it. */ |
| 6212 | return (long_u)(ms.ullAvailVirtual / 1024); |
Bram Moolenaar | ee27397 | 2016-01-02 21:11:51 +0100 | [diff] [blame] | 6213 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6214 | if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES) |
Bram Moolenaar | ee27397 | 2016-01-02 21:11:51 +0100 | [diff] [blame] | 6215 | { |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6216 | /* Catch old NT box or perverse hardware setup. */ |
| 6217 | return (long_u)((ms.ullTotalPhys / 2) / 1024); |
Bram Moolenaar | ee27397 | 2016-01-02 21:11:51 +0100 | [diff] [blame] | 6218 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6219 | /* Use physical RAM less reserve for OS + data. */ |
| 6220 | return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024); |
Bram Moolenaar | ee27397 | 2016-01-02 21:11:51 +0100 | [diff] [blame] | 6221 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6222 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6223 | #ifdef FEAT_MBYTE |
| 6224 | /* |
| 6225 | * Same code as below, but with wide functions and no comments. |
| 6226 | * Return 0 for success, non-zero for failure. |
| 6227 | */ |
| 6228 | int |
| 6229 | mch_wrename(WCHAR *wold, WCHAR *wnew) |
| 6230 | { |
| 6231 | WCHAR *p; |
| 6232 | int i; |
| 6233 | WCHAR szTempFile[_MAX_PATH + 1]; |
| 6234 | WCHAR szNewPath[_MAX_PATH + 1]; |
| 6235 | HANDLE hf; |
| 6236 | |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6237 | p = wold; |
| 6238 | for (i = 0; wold[i] != NUL; ++i) |
| 6239 | if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':') |
| 6240 | && wold[i + 1] != 0) |
| 6241 | p = wold + i + 1; |
| 6242 | if ((int)(wold + i - p) < 8 || p[6] != '~') |
| 6243 | return (MoveFileW(wold, wnew) == 0); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6244 | |
| 6245 | if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL) |
| 6246 | return -1; |
| 6247 | *p = NUL; |
| 6248 | |
| 6249 | if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0) |
| 6250 | return -2; |
| 6251 | |
| 6252 | if (!DeleteFileW(szTempFile)) |
| 6253 | return -3; |
| 6254 | |
| 6255 | if (!MoveFileW(wold, szTempFile)) |
| 6256 | return -4; |
| 6257 | |
| 6258 | if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW, |
| 6259 | FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE) |
| 6260 | return -5; |
| 6261 | if (!CloseHandle(hf)) |
| 6262 | return -6; |
| 6263 | |
| 6264 | if (!MoveFileW(szTempFile, wnew)) |
| 6265 | { |
| 6266 | (void)MoveFileW(szTempFile, wold); |
| 6267 | return -7; |
| 6268 | } |
| 6269 | |
| 6270 | DeleteFileW(szTempFile); |
| 6271 | |
| 6272 | if (!DeleteFileW(wold)) |
| 6273 | return -8; |
| 6274 | |
| 6275 | return 0; |
| 6276 | } |
| 6277 | #endif |
| 6278 | |
| 6279 | |
| 6280 | /* |
| 6281 | * mch_rename() works around a bug in rename (aka MoveFile) in |
| 6282 | * Windows 95: rename("foo.bar", "foo.bar~") will generate a |
| 6283 | * file whose short file name is "FOO.BAR" (its long file name will |
| 6284 | * be correct: "foo.bar~"). Because a file can be accessed by |
| 6285 | * either its SFN or its LFN, "foo.bar" has effectively been |
| 6286 | * renamed to "foo.bar", which is not at all what was wanted. This |
| 6287 | * seems to happen only when renaming files with three-character |
| 6288 | * extensions by appending a suffix that does not include ".". |
| 6289 | * Windows NT gets it right, however, with an SFN of "FOO~1.BAR". |
| 6290 | * |
| 6291 | * There is another problem, which isn't really a bug but isn't right either: |
| 6292 | * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be |
| 6293 | * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with |
| 6294 | * service pack 6. Doesn't seem to happen on Windows 98. |
| 6295 | * |
| 6296 | * Like rename(), returns 0 upon success, non-zero upon failure. |
| 6297 | * Should probably set errno appropriately when errors occur. |
| 6298 | */ |
| 6299 | int |
| 6300 | mch_rename( |
| 6301 | const char *pszOldFile, |
| 6302 | const char *pszNewFile) |
| 6303 | { |
| 6304 | char szTempFile[_MAX_PATH+1]; |
| 6305 | char szNewPath[_MAX_PATH+1]; |
| 6306 | char *pszFilePart; |
| 6307 | HANDLE hf; |
| 6308 | #ifdef FEAT_MBYTE |
| 6309 | WCHAR *wold = NULL; |
| 6310 | WCHAR *wnew = NULL; |
| 6311 | int retval = -1; |
| 6312 | |
| 6313 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 6314 | { |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 6315 | wold = enc_to_utf16((char_u *)pszOldFile, NULL); |
| 6316 | wnew = enc_to_utf16((char_u *)pszNewFile, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6317 | if (wold != NULL && wnew != NULL) |
| 6318 | retval = mch_wrename(wold, wnew); |
| 6319 | vim_free(wold); |
| 6320 | vim_free(wnew); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6321 | return retval; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6322 | } |
| 6323 | #endif |
| 6324 | |
| 6325 | /* |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6326 | * No need to play tricks unless the file name contains a "~" as the |
| 6327 | * seventh character. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6328 | */ |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6329 | pszFilePart = (char *)gettail((char_u *)pszOldFile); |
| 6330 | if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~') |
| 6331 | return rename(pszOldFile, pszNewFile); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6332 | |
| 6333 | /* Get base path of new file name. Undocumented feature: If pszNewFile is |
| 6334 | * a directory, no error is returned and pszFilePart will be NULL. */ |
| 6335 | if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0 |
| 6336 | || pszFilePart == NULL) |
| 6337 | return -1; |
| 6338 | *pszFilePart = NUL; |
| 6339 | |
| 6340 | /* Get (and create) a unique temporary file name in directory of new file */ |
| 6341 | if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0) |
| 6342 | return -2; |
| 6343 | |
| 6344 | /* blow the temp file away */ |
| 6345 | if (!DeleteFile(szTempFile)) |
| 6346 | return -3; |
| 6347 | |
| 6348 | /* rename old file to the temp file */ |
| 6349 | if (!MoveFile(pszOldFile, szTempFile)) |
| 6350 | return -4; |
| 6351 | |
| 6352 | /* now create an empty file called pszOldFile; this prevents the operating |
| 6353 | * system using pszOldFile as an alias (SFN) if we're renaming within the |
| 6354 | * same directory. For example, we're editing a file called |
| 6355 | * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt |
| 6356 | * to filena~1.txt~ (i.e., we're making a backup while writing it), the |
| 6357 | * SFN for filena~1.txt~ will be filena~1.txt, by default, which will |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 6358 | * cause all sorts of problems later in buf_write(). So, we create an |
| 6359 | * empty file called filena~1.txt and the system will have to find some |
| 6360 | * other SFN for filena~1.txt~, such as filena~2.txt |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6361 | */ |
| 6362 | if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW, |
| 6363 | FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE) |
| 6364 | return -5; |
| 6365 | if (!CloseHandle(hf)) |
| 6366 | return -6; |
| 6367 | |
| 6368 | /* rename the temp file to the new file */ |
| 6369 | if (!MoveFile(szTempFile, pszNewFile)) |
| 6370 | { |
| 6371 | /* Renaming failed. Rename the file back to its old name, so that it |
| 6372 | * looks like nothing happened. */ |
| 6373 | (void)MoveFile(szTempFile, pszOldFile); |
| 6374 | |
| 6375 | return -7; |
| 6376 | } |
| 6377 | |
| 6378 | /* Seems to be left around on Novell filesystems */ |
| 6379 | DeleteFile(szTempFile); |
| 6380 | |
| 6381 | /* finally, remove the empty old file */ |
| 6382 | if (!DeleteFile(pszOldFile)) |
| 6383 | return -8; |
| 6384 | |
| 6385 | return 0; /* success */ |
| 6386 | } |
| 6387 | |
| 6388 | /* |
| 6389 | * Get the default shell for the current hardware platform |
| 6390 | */ |
| 6391 | char * |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6392 | default_shell(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6393 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6394 | PlatformId(); |
| 6395 | |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6396 | return "cmd.exe"; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6397 | } |
| 6398 | |
| 6399 | /* |
| 6400 | * mch_access() extends access() to do more detailed check on network drives. |
| 6401 | * Returns 0 if file "n" has access rights according to "p", -1 otherwise. |
| 6402 | */ |
| 6403 | int |
| 6404 | mch_access(char *n, int p) |
| 6405 | { |
| 6406 | HANDLE hFile; |
| 6407 | DWORD am; |
| 6408 | int retval = -1; /* default: fail */ |
| 6409 | #ifdef FEAT_MBYTE |
| 6410 | WCHAR *wn = NULL; |
| 6411 | |
| 6412 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 6413 | wn = enc_to_utf16((char_u *)n, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6414 | #endif |
| 6415 | |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 6416 | if (mch_isdir((char_u *)n)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6417 | { |
| 6418 | char TempName[_MAX_PATH + 16] = ""; |
| 6419 | #ifdef FEAT_MBYTE |
| 6420 | WCHAR TempNameW[_MAX_PATH + 16] = L""; |
| 6421 | #endif |
| 6422 | |
| 6423 | if (p & R_OK) |
| 6424 | { |
| 6425 | /* Read check is performed by seeing if we can do a find file on |
| 6426 | * the directory for any file. */ |
| 6427 | #ifdef FEAT_MBYTE |
| 6428 | if (wn != NULL) |
| 6429 | { |
| 6430 | int i; |
| 6431 | WIN32_FIND_DATAW d; |
| 6432 | |
| 6433 | for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i) |
| 6434 | TempNameW[i] = wn[i]; |
| 6435 | if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/') |
| 6436 | TempNameW[i++] = '\\'; |
| 6437 | TempNameW[i++] = '*'; |
| 6438 | TempNameW[i++] = 0; |
| 6439 | |
| 6440 | hFile = FindFirstFileW(TempNameW, &d); |
| 6441 | if (hFile == INVALID_HANDLE_VALUE) |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6442 | goto getout; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6443 | else |
| 6444 | (void)FindClose(hFile); |
| 6445 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6446 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6447 | #endif |
| 6448 | { |
| 6449 | char *pch; |
| 6450 | WIN32_FIND_DATA d; |
| 6451 | |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 6452 | vim_strncpy((char_u *)TempName, (char_u *)n, _MAX_PATH); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6453 | pch = TempName + STRLEN(TempName) - 1; |
| 6454 | if (*pch != '\\' && *pch != '/') |
| 6455 | *++pch = '\\'; |
| 6456 | *++pch = '*'; |
| 6457 | *++pch = NUL; |
| 6458 | |
| 6459 | hFile = FindFirstFile(TempName, &d); |
| 6460 | if (hFile == INVALID_HANDLE_VALUE) |
| 6461 | goto getout; |
| 6462 | (void)FindClose(hFile); |
| 6463 | } |
| 6464 | } |
| 6465 | |
| 6466 | if (p & W_OK) |
| 6467 | { |
| 6468 | /* Trying to create a temporary file in the directory should catch |
| 6469 | * directories on read-only network shares. However, in |
| 6470 | * directories whose ACL allows writes but denies deletes will end |
| 6471 | * up keeping the temporary file :-(. */ |
| 6472 | #ifdef FEAT_MBYTE |
| 6473 | if (wn != NULL) |
| 6474 | { |
| 6475 | if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW)) |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6476 | goto getout; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6477 | else |
| 6478 | DeleteFileW(TempNameW); |
| 6479 | } |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6480 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6481 | #endif |
| 6482 | { |
| 6483 | if (!GetTempFileName(n, "VIM", 0, TempName)) |
| 6484 | goto getout; |
| 6485 | mch_remove((char_u *)TempName); |
| 6486 | } |
| 6487 | } |
| 6488 | } |
| 6489 | else |
| 6490 | { |
| 6491 | /* Trying to open the file for the required access does ACL, read-only |
| 6492 | * network share, and file attribute checks. */ |
| 6493 | am = ((p & W_OK) ? GENERIC_WRITE : 0) |
| 6494 | | ((p & R_OK) ? GENERIC_READ : 0); |
| 6495 | #ifdef FEAT_MBYTE |
| 6496 | if (wn != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6497 | hFile = CreateFileW(wn, am, 0, NULL, OPEN_EXISTING, 0, NULL); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6498 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6499 | #endif |
| 6500 | hFile = CreateFile(n, am, 0, NULL, OPEN_EXISTING, 0, NULL); |
| 6501 | if (hFile == INVALID_HANDLE_VALUE) |
| 6502 | goto getout; |
| 6503 | CloseHandle(hFile); |
| 6504 | } |
| 6505 | |
| 6506 | retval = 0; /* success */ |
| 6507 | getout: |
| 6508 | #ifdef FEAT_MBYTE |
| 6509 | vim_free(wn); |
| 6510 | #endif |
| 6511 | return retval; |
| 6512 | } |
| 6513 | |
| 6514 | #if defined(FEAT_MBYTE) || defined(PROTO) |
| 6515 | /* |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 6516 | * Version of open() that may use UTF-16 file name. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6517 | */ |
| 6518 | int |
Bram Moolenaar | b6843a0 | 2017-08-02 22:07:12 +0200 | [diff] [blame] | 6519 | mch_open(const char *name, int flags, int mode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6520 | { |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 6521 | /* _wopen() does not work with Borland C 5.5: creates a read-only file. */ |
| 6522 | # ifndef __BORLANDC__ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6523 | WCHAR *wn; |
| 6524 | int f; |
| 6525 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 6526 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6527 | { |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 6528 | wn = enc_to_utf16((char_u *)name, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6529 | if (wn != NULL) |
| 6530 | { |
| 6531 | f = _wopen(wn, flags, mode); |
| 6532 | vim_free(wn); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6533 | return f; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6534 | } |
| 6535 | } |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 6536 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6537 | |
Bram Moolenaar | f9e6c3b | 2014-11-05 18:36:03 +0100 | [diff] [blame] | 6538 | /* open() can open a file which name is longer than _MAX_PATH bytes |
| 6539 | * and shorter than _MAX_PATH characters successfully, but sometimes it |
| 6540 | * causes unexpected error in another part. We make it an error explicitly |
| 6541 | * here. */ |
| 6542 | if (strlen(name) >= _MAX_PATH) |
| 6543 | return -1; |
| 6544 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6545 | return open(name, flags, mode); |
| 6546 | } |
| 6547 | |
| 6548 | /* |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 6549 | * Version of fopen() that may use UTF-16 file name. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6550 | */ |
| 6551 | FILE * |
Bram Moolenaar | b6843a0 | 2017-08-02 22:07:12 +0200 | [diff] [blame] | 6552 | mch_fopen(const char *name, const char *mode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6553 | { |
| 6554 | WCHAR *wn, *wm; |
| 6555 | FILE *f = NULL; |
| 6556 | |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6557 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6558 | { |
Bram Moolenaar | e6a91fd | 2008-07-24 18:51:11 +0000 | [diff] [blame] | 6559 | # if defined(DEBUG) && _MSC_VER >= 1400 |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 6560 | /* Work around an annoying assertion in the Microsoft debug CRT |
| 6561 | * when mode's text/binary setting doesn't match _get_fmode(). */ |
| 6562 | char newMode = mode[strlen(mode) - 1]; |
| 6563 | int oldMode = 0; |
| 6564 | |
| 6565 | _get_fmode(&oldMode); |
| 6566 | if (newMode == 't') |
| 6567 | _set_fmode(_O_TEXT); |
| 6568 | else if (newMode == 'b') |
| 6569 | _set_fmode(_O_BINARY); |
| 6570 | # endif |
Bram Moolenaar | 6aa2cd4 | 2016-02-16 15:06:59 +0100 | [diff] [blame] | 6571 | wn = enc_to_utf16((char_u *)name, NULL); |
| 6572 | wm = enc_to_utf16((char_u *)mode, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6573 | if (wn != NULL && wm != NULL) |
| 6574 | f = _wfopen(wn, wm); |
| 6575 | vim_free(wn); |
| 6576 | vim_free(wm); |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 6577 | |
Bram Moolenaar | e6a91fd | 2008-07-24 18:51:11 +0000 | [diff] [blame] | 6578 | # if defined(DEBUG) && _MSC_VER >= 1400 |
Bram Moolenaar | 0fde290 | 2008-03-16 13:54:13 +0000 | [diff] [blame] | 6579 | _set_fmode(oldMode); |
| 6580 | # endif |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6581 | return f; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6582 | } |
| 6583 | |
Bram Moolenaar | f9e6c3b | 2014-11-05 18:36:03 +0100 | [diff] [blame] | 6584 | /* fopen() can open a file which name is longer than _MAX_PATH bytes |
| 6585 | * and shorter than _MAX_PATH characters successfully, but sometimes it |
| 6586 | * causes unexpected error in another part. We make it an error explicitly |
| 6587 | * here. */ |
| 6588 | if (strlen(name) >= _MAX_PATH) |
| 6589 | return NULL; |
| 6590 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6591 | return fopen(name, mode); |
| 6592 | } |
| 6593 | #endif |
| 6594 | |
| 6595 | #ifdef FEAT_MBYTE |
| 6596 | /* |
| 6597 | * SUB STREAM (aka info stream) handling: |
| 6598 | * |
| 6599 | * NTFS can have sub streams for each file. Normal contents of file is |
| 6600 | * stored in the main stream, and extra contents (author information and |
| 6601 | * title and so on) can be stored in sub stream. After Windows 2000, user |
| 6602 | * can access and store those informations in sub streams via explorer's |
| 6603 | * property menuitem in right click menu. Those informations in sub streams |
| 6604 | * were lost when copying only the main stream. So we have to copy sub |
| 6605 | * streams. |
| 6606 | * |
| 6607 | * Incomplete explanation: |
| 6608 | * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp |
| 6609 | * More useful info and an example: |
| 6610 | * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams |
| 6611 | */ |
| 6612 | |
| 6613 | /* |
| 6614 | * Copy info stream data "substream". Read from the file with BackupRead(sh) |
| 6615 | * and write to stream "substream" of file "to". |
| 6616 | * Errors are ignored. |
| 6617 | */ |
| 6618 | static void |
| 6619 | copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len) |
| 6620 | { |
| 6621 | HANDLE hTo; |
| 6622 | WCHAR *to_name; |
| 6623 | |
| 6624 | to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR)); |
| 6625 | wcscpy(to_name, to); |
| 6626 | wcscat(to_name, substream); |
| 6627 | |
| 6628 | hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS, |
| 6629 | FILE_ATTRIBUTE_NORMAL, NULL); |
| 6630 | if (hTo != INVALID_HANDLE_VALUE) |
| 6631 | { |
| 6632 | long done; |
| 6633 | DWORD todo; |
| 6634 | DWORD readcnt, written; |
| 6635 | char buf[4096]; |
| 6636 | |
| 6637 | /* Copy block of bytes at a time. Abort when something goes wrong. */ |
| 6638 | for (done = 0; done < len; done += written) |
| 6639 | { |
| 6640 | /* (size_t) cast for Borland C 5.5 */ |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6641 | todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf) |
| 6642 | : (size_t)(len - done)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6643 | if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt, |
| 6644 | FALSE, FALSE, context) |
| 6645 | || readcnt != todo |
| 6646 | || !WriteFile(hTo, buf, todo, &written, NULL) |
| 6647 | || written != todo) |
| 6648 | break; |
| 6649 | } |
| 6650 | CloseHandle(hTo); |
| 6651 | } |
| 6652 | |
| 6653 | free(to_name); |
| 6654 | } |
| 6655 | |
| 6656 | /* |
| 6657 | * Copy info streams from file "from" to file "to". |
| 6658 | */ |
| 6659 | static void |
| 6660 | copy_infostreams(char_u *from, char_u *to) |
| 6661 | { |
| 6662 | WCHAR *fromw; |
| 6663 | WCHAR *tow; |
| 6664 | HANDLE sh; |
| 6665 | WIN32_STREAM_ID sid; |
| 6666 | int headersize; |
| 6667 | WCHAR streamname[_MAX_PATH]; |
| 6668 | DWORD readcount; |
| 6669 | void *context = NULL; |
| 6670 | DWORD lo, hi; |
| 6671 | int len; |
| 6672 | |
| 6673 | /* Convert the file names to wide characters. */ |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 6674 | fromw = enc_to_utf16(from, NULL); |
| 6675 | tow = enc_to_utf16(to, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6676 | if (fromw != NULL && tow != NULL) |
| 6677 | { |
| 6678 | /* Open the file for reading. */ |
| 6679 | sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL, |
| 6680 | OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); |
| 6681 | if (sh != INVALID_HANDLE_VALUE) |
| 6682 | { |
| 6683 | /* Use BackupRead() to find the info streams. Repeat until we |
| 6684 | * have done them all.*/ |
| 6685 | for (;;) |
| 6686 | { |
| 6687 | /* Get the header to find the length of the stream name. If |
| 6688 | * the "readcount" is zero we have done all info streams. */ |
| 6689 | ZeroMemory(&sid, sizeof(WIN32_STREAM_ID)); |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6690 | headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6691 | if (!BackupRead(sh, (LPBYTE)&sid, headersize, |
| 6692 | &readcount, FALSE, FALSE, &context) |
| 6693 | || readcount == 0) |
| 6694 | break; |
| 6695 | |
| 6696 | /* We only deal with streams that have a name. The normal |
| 6697 | * file data appears to be without a name, even though docs |
| 6698 | * suggest it is called "::$DATA". */ |
| 6699 | if (sid.dwStreamNameSize > 0) |
| 6700 | { |
| 6701 | /* Read the stream name. */ |
| 6702 | if (!BackupRead(sh, (LPBYTE)streamname, |
| 6703 | sid.dwStreamNameSize, |
| 6704 | &readcount, FALSE, FALSE, &context)) |
| 6705 | break; |
| 6706 | |
| 6707 | /* Copy an info stream with a name ":anything:$DATA". |
| 6708 | * Skip "::$DATA", it has no stream name (examples suggest |
| 6709 | * it might be used for the normal file contents). |
| 6710 | * Note that BackupRead() counts bytes, but the name is in |
| 6711 | * wide characters. */ |
| 6712 | len = readcount / sizeof(WCHAR); |
| 6713 | streamname[len] = 0; |
| 6714 | if (len > 7 && wcsicmp(streamname + len - 6, |
| 6715 | L":$DATA") == 0) |
| 6716 | { |
| 6717 | streamname[len - 6] = 0; |
| 6718 | copy_substream(sh, &context, tow, streamname, |
Bram Moolenaar | f4b8e57 | 2004-06-24 15:53:16 +0000 | [diff] [blame] | 6719 | (long)sid.Size.u.LowPart); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6720 | } |
| 6721 | } |
| 6722 | |
| 6723 | /* Advance to the next stream. We might try seeking too far, |
| 6724 | * but BackupSeek() doesn't skip over stream borders, thus |
| 6725 | * that's OK. */ |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 6726 | (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6727 | &lo, &hi, &context); |
| 6728 | } |
| 6729 | |
| 6730 | /* Clear the context. */ |
| 6731 | (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context); |
| 6732 | |
| 6733 | CloseHandle(sh); |
| 6734 | } |
| 6735 | } |
| 6736 | vim_free(fromw); |
| 6737 | vim_free(tow); |
| 6738 | } |
| 6739 | #endif |
| 6740 | |
| 6741 | /* |
| 6742 | * Copy file attributes from file "from" to file "to". |
| 6743 | * For Windows NT and later we copy info streams. |
| 6744 | * Always returns zero, errors are ignored. |
| 6745 | */ |
| 6746 | int |
| 6747 | mch_copy_file_attribute(char_u *from, char_u *to) |
| 6748 | { |
| 6749 | #ifdef FEAT_MBYTE |
| 6750 | /* File streams only work on Windows NT and later. */ |
| 6751 | PlatformId(); |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6752 | copy_infostreams(from, to); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6753 | #endif |
| 6754 | return 0; |
| 6755 | } |
| 6756 | |
| 6757 | #if defined(MYRESETSTKOFLW) || defined(PROTO) |
| 6758 | /* |
| 6759 | * Recreate a destroyed stack guard page in win32. |
| 6760 | * Written by Benjamin Peterson. |
| 6761 | */ |
| 6762 | |
| 6763 | /* These magic numbers are from the MS header files */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6764 | #define MIN_STACK_WINNT 2 |
| 6765 | |
| 6766 | /* |
| 6767 | * This function does the same thing as _resetstkoflw(), which is only |
| 6768 | * available in DevStudio .net and later. |
| 6769 | * Returns 0 for failure, 1 for success. |
| 6770 | */ |
| 6771 | int |
| 6772 | myresetstkoflw(void) |
| 6773 | { |
| 6774 | BYTE *pStackPtr; |
| 6775 | BYTE *pGuardPage; |
| 6776 | BYTE *pStackBase; |
| 6777 | BYTE *pLowestPossiblePage; |
| 6778 | MEMORY_BASIC_INFORMATION mbi; |
| 6779 | SYSTEM_INFO si; |
| 6780 | DWORD nPageSize; |
| 6781 | DWORD dummy; |
| 6782 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6783 | PlatformId(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6784 | |
| 6785 | /* We need to know the system page size. */ |
| 6786 | GetSystemInfo(&si); |
| 6787 | nPageSize = si.dwPageSize; |
| 6788 | |
| 6789 | /* ...and the current stack pointer */ |
| 6790 | pStackPtr = (BYTE*)_alloca(1); |
| 6791 | |
| 6792 | /* ...and the base of the stack. */ |
| 6793 | if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0) |
| 6794 | return 0; |
| 6795 | pStackBase = (BYTE*)mbi.AllocationBase; |
| 6796 | |
| 6797 | /* ...and the page thats min_stack_req pages away from stack base; this is |
| 6798 | * the lowest page we could use. */ |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6799 | pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6800 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6801 | { |
Bram Moolenaar | cea912a | 2016-10-12 14:20:24 +0200 | [diff] [blame] | 6802 | /* We want the first committed page in the stack Start at the stack |
| 6803 | * base and move forward through memory until we find a committed block. |
| 6804 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6805 | BYTE *pBlock = pStackBase; |
| 6806 | |
Bram Moolenaar | a466c99 | 2005-07-09 21:03:22 +0000 | [diff] [blame] | 6807 | for (;;) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6808 | { |
| 6809 | if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0) |
| 6810 | return 0; |
| 6811 | |
| 6812 | pBlock += mbi.RegionSize; |
| 6813 | |
| 6814 | if (mbi.State & MEM_COMMIT) |
| 6815 | break; |
| 6816 | } |
| 6817 | |
| 6818 | /* mbi now describes the first committed block in the stack. */ |
| 6819 | if (mbi.Protect & PAGE_GUARD) |
| 6820 | return 1; |
| 6821 | |
| 6822 | /* decide where the guard page should start */ |
| 6823 | if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage) |
| 6824 | pGuardPage = pLowestPossiblePage; |
| 6825 | else |
| 6826 | pGuardPage = (BYTE*)mbi.BaseAddress; |
| 6827 | |
| 6828 | /* allocate the guard page */ |
| 6829 | if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE)) |
| 6830 | return 0; |
| 6831 | |
| 6832 | /* apply the guard attribute to the page */ |
| 6833 | if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD, |
| 6834 | &dummy)) |
| 6835 | return 0; |
| 6836 | } |
| 6837 | |
| 6838 | return 1; |
| 6839 | } |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6840 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6841 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6842 | |
| 6843 | #if defined(FEAT_MBYTE) || defined(PROTO) |
| 6844 | /* |
| 6845 | * The command line arguments in UCS2 |
| 6846 | */ |
Bram Moolenaar | d857f0e | 2005-06-21 22:37:39 +0000 | [diff] [blame] | 6847 | static int nArgsW = 0; |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6848 | static LPWSTR *ArglistW = NULL; |
| 6849 | static int global_argc = 0; |
| 6850 | static char **global_argv; |
| 6851 | |
| 6852 | static int used_file_argc = 0; /* last argument in global_argv[] used |
| 6853 | for the argument list. */ |
| 6854 | static int *used_file_indexes = NULL; /* indexes in global_argv[] for |
| 6855 | command line arguments added to |
| 6856 | the argument list */ |
| 6857 | static int used_file_count = 0; /* nr of entries in used_file_indexes */ |
| 6858 | static int used_file_literal = FALSE; /* take file names literally */ |
| 6859 | static int used_file_full_path = FALSE; /* file name was full path */ |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 6860 | static int used_file_diff_mode = FALSE; /* file name was with diff mode */ |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6861 | static int used_alist_count = 0; |
| 6862 | |
| 6863 | |
| 6864 | /* |
| 6865 | * Get the command line arguments. Unicode version. |
| 6866 | * Returns argc. Zero when something fails. |
| 6867 | */ |
| 6868 | int |
| 6869 | get_cmd_argsW(char ***argvp) |
| 6870 | { |
| 6871 | char **argv = NULL; |
| 6872 | int argc = 0; |
| 6873 | int i; |
| 6874 | |
Bram Moolenaar | 1499332 | 2014-09-09 12:25:33 +0200 | [diff] [blame] | 6875 | free_cmd_argsW(); |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6876 | ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW); |
| 6877 | if (ArglistW != NULL) |
| 6878 | { |
| 6879 | argv = malloc((nArgsW + 1) * sizeof(char *)); |
| 6880 | if (argv != NULL) |
| 6881 | { |
| 6882 | argc = nArgsW; |
| 6883 | argv[argc] = NULL; |
| 6884 | for (i = 0; i < argc; ++i) |
| 6885 | { |
| 6886 | int len; |
| 6887 | |
| 6888 | /* Convert each Unicode argument to the current codepage. */ |
| 6889 | WideCharToMultiByte_alloc(GetACP(), 0, |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 6890 | ArglistW[i], (int)wcslen(ArglistW[i]) + 1, |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6891 | (LPSTR *)&argv[i], &len, 0, 0); |
| 6892 | if (argv[i] == NULL) |
| 6893 | { |
| 6894 | /* Out of memory, clear everything. */ |
| 6895 | while (i > 0) |
| 6896 | free(argv[--i]); |
| 6897 | free(argv); |
Bram Moolenaar | 73c6163 | 2013-12-07 14:48:10 +0100 | [diff] [blame] | 6898 | argv = NULL; |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6899 | argc = 0; |
| 6900 | } |
| 6901 | } |
| 6902 | } |
| 6903 | } |
| 6904 | |
| 6905 | global_argc = argc; |
| 6906 | global_argv = argv; |
| 6907 | if (argc > 0) |
Bram Moolenaar | 1499332 | 2014-09-09 12:25:33 +0200 | [diff] [blame] | 6908 | { |
| 6909 | if (used_file_indexes != NULL) |
| 6910 | free(used_file_indexes); |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6911 | used_file_indexes = malloc(argc * sizeof(int)); |
Bram Moolenaar | 1499332 | 2014-09-09 12:25:33 +0200 | [diff] [blame] | 6912 | } |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6913 | |
| 6914 | if (argvp != NULL) |
| 6915 | *argvp = argv; |
| 6916 | return argc; |
| 6917 | } |
| 6918 | |
| 6919 | void |
| 6920 | free_cmd_argsW(void) |
| 6921 | { |
| 6922 | if (ArglistW != NULL) |
| 6923 | { |
| 6924 | GlobalFree(ArglistW); |
| 6925 | ArglistW = NULL; |
| 6926 | } |
| 6927 | } |
| 6928 | |
| 6929 | /* |
| 6930 | * Remember "name" is an argument that was added to the argument list. |
| 6931 | * This avoids that we have to re-parse the argument list when fix_arg_enc() |
| 6932 | * is called. |
| 6933 | */ |
| 6934 | void |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 6935 | used_file_arg(char *name, int literal, int full_path, int diff_mode) |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6936 | { |
| 6937 | int i; |
| 6938 | |
| 6939 | if (used_file_indexes == NULL) |
| 6940 | return; |
| 6941 | for (i = used_file_argc + 1; i < global_argc; ++i) |
| 6942 | if (STRCMP(global_argv[i], name) == 0) |
| 6943 | { |
| 6944 | used_file_argc = i; |
| 6945 | used_file_indexes[used_file_count++] = i; |
| 6946 | break; |
| 6947 | } |
| 6948 | used_file_literal = literal; |
| 6949 | used_file_full_path = full_path; |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 6950 | used_file_diff_mode = diff_mode; |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6951 | } |
| 6952 | |
| 6953 | /* |
| 6954 | * Remember the length of the argument list as it was. If it changes then we |
| 6955 | * leave it alone when 'encoding' is set. |
| 6956 | */ |
| 6957 | void |
| 6958 | set_alist_count(void) |
| 6959 | { |
| 6960 | used_alist_count = GARGCOUNT; |
| 6961 | } |
| 6962 | |
| 6963 | /* |
| 6964 | * Fix the encoding of the command line arguments. Invoked when 'encoding' |
| 6965 | * has been changed while starting up. Use the UCS-2 command line arguments |
| 6966 | * and convert them to 'encoding'. |
| 6967 | */ |
| 6968 | void |
| 6969 | fix_arg_enc(void) |
| 6970 | { |
| 6971 | int i; |
| 6972 | int idx; |
| 6973 | char_u *str; |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 6974 | int *fnum_list; |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6975 | |
| 6976 | /* Safety checks: |
| 6977 | * - if argument count differs between the wide and non-wide argument |
| 6978 | * list, something must be wrong. |
| 6979 | * - the file name arguments must have been located. |
| 6980 | * - the length of the argument list wasn't changed by the user. |
| 6981 | */ |
Bram Moolenaar | d857f0e | 2005-06-21 22:37:39 +0000 | [diff] [blame] | 6982 | if (global_argc != nArgsW |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6983 | || ArglistW == NULL |
| 6984 | || used_file_indexes == NULL |
| 6985 | || used_file_count == 0 |
| 6986 | || used_alist_count != GARGCOUNT) |
| 6987 | return; |
| 6988 | |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 6989 | /* Remember the buffer numbers for the arguments. */ |
| 6990 | fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT); |
| 6991 | if (fnum_list == NULL) |
| 6992 | return; /* out of memory */ |
| 6993 | for (i = 0; i < GARGCOUNT; ++i) |
| 6994 | fnum_list[i] = GARGLIST[i].ae_fnum; |
| 6995 | |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 6996 | /* Clear the argument list. Make room for the new arguments. */ |
| 6997 | alist_clear(&global_alist); |
| 6998 | if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL) |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 6999 | return; /* out of memory */ |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 7000 | |
| 7001 | for (i = 0; i < used_file_count; ++i) |
| 7002 | { |
| 7003 | idx = used_file_indexes[i]; |
Bram Moolenaar | 36f692d | 2008-11-20 16:10:17 +0000 | [diff] [blame] | 7004 | str = utf16_to_enc(ArglistW[idx], NULL); |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 7005 | if (str != NULL) |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 7006 | { |
Bram Moolenaar | 39d21e3 | 2017-08-05 23:09:31 +0200 | [diff] [blame] | 7007 | int literal = used_file_literal; |
| 7008 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 7009 | #ifdef FEAT_DIFF |
| 7010 | /* When using diff mode may need to concatenate file name to |
| 7011 | * directory name. Just like it's done in main(). */ |
| 7012 | if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0 |
| 7013 | && !mch_isdir(alist_name(&GARGLIST[0]))) |
| 7014 | { |
| 7015 | char_u *r; |
| 7016 | |
| 7017 | r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE); |
| 7018 | if (r != NULL) |
| 7019 | { |
| 7020 | vim_free(str); |
| 7021 | str = r; |
| 7022 | } |
| 7023 | } |
| 7024 | #endif |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 7025 | /* Re-use the old buffer by renaming it. When not using literal |
| 7026 | * names it's done by alist_expand() below. */ |
| 7027 | if (used_file_literal) |
| 7028 | buf_set_name(fnum_list[i], str); |
| 7029 | |
Bram Moolenaar | 39d21e3 | 2017-08-05 23:09:31 +0200 | [diff] [blame] | 7030 | /* Check backtick literal. backtick literal is already expanded in |
| 7031 | * main.c, so this part add str as literal. */ |
| 7032 | if (literal == FALSE) |
| 7033 | { |
| 7034 | int len = STRLEN(str); |
| 7035 | if (len > 2 && *str == '`' && *(str + len - 1) == '`') |
| 7036 | literal = TRUE; |
| 7037 | } |
| 7038 | alist_add(&global_alist, str, literal ? 2 : 0); |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 7039 | } |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 7040 | } |
| 7041 | |
| 7042 | if (!used_file_literal) |
| 7043 | { |
| 7044 | /* Now expand wildcards in the arguments. */ |
| 7045 | /* Temporarily add '(' and ')' to 'isfname'. These are valid |
| 7046 | * filename characters but are excluded from 'isfname' to make |
| 7047 | * "gf" work on a file name in parenthesis (e.g.: see vim.h). */ |
| 7048 | do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)"); |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 7049 | alist_expand(fnum_list, used_alist_count); |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 7050 | do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF"); |
| 7051 | } |
| 7052 | |
| 7053 | /* If wildcard expansion failed, we are editing the first file of the |
| 7054 | * arglist and there is no file name: Edit the first argument now. */ |
| 7055 | if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL) |
| 7056 | { |
| 7057 | do_cmdline_cmd((char_u *)":rewind"); |
| 7058 | if (GARGCOUNT == 1 && used_file_full_path) |
| 7059 | (void)vim_chdirfile(alist_name(&GARGLIST[0])); |
| 7060 | } |
Bram Moolenaar | 86b6835 | 2004-12-27 21:59:20 +0000 | [diff] [blame] | 7061 | |
| 7062 | set_alist_count(); |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 7063 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7064 | #endif |
Bram Moolenaar | 7c23d1d | 2017-02-01 13:14:16 +0100 | [diff] [blame] | 7065 | |
| 7066 | int |
| 7067 | mch_setenv(char *var, char *value, int x) |
| 7068 | { |
| 7069 | char_u *envbuf; |
| 7070 | |
| 7071 | envbuf = alloc((unsigned)(STRLEN(var) + STRLEN(value) + 2)); |
| 7072 | if (envbuf == NULL) |
| 7073 | return -1; |
| 7074 | |
| 7075 | sprintf((char *)envbuf, "%s=%s", var, value); |
| 7076 | |
| 7077 | #ifdef FEAT_MBYTE |
| 7078 | if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
| 7079 | { |
| 7080 | WCHAR *p = enc_to_utf16(envbuf, NULL); |
| 7081 | |
| 7082 | vim_free(envbuf); |
| 7083 | if (p == NULL) |
| 7084 | return -1; |
| 7085 | _wputenv(p); |
| 7086 | # ifdef libintl_wputenv |
| 7087 | libintl_wputenv(p); |
| 7088 | # endif |
| 7089 | /* Unlike Un*x systems, we can free the string for _wputenv(). */ |
| 7090 | vim_free(p); |
| 7091 | } |
| 7092 | else |
| 7093 | #endif |
| 7094 | { |
| 7095 | _putenv((char *)envbuf); |
| 7096 | # ifdef libintl_putenv |
| 7097 | libintl_putenv((char *)envbuf); |
| 7098 | # endif |
| 7099 | /* Unlike Un*x systems, we can free the string for _putenv(). */ |
| 7100 | vim_free(envbuf); |
| 7101 | } |
| 7102 | |
| 7103 | return 0; |
| 7104 | } |