blob: 2112b0c2aa7ab19021ff80b0fdd44c25dc5b5404 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * os_mswin.c
12 *
Bram Moolenaarcf7164a2016-02-20 13:55:06 +010013 * Routines for Win32.
Bram Moolenaar071d4272004-06-13 20:20:40 +000014 */
15
Bram Moolenaar071d4272004-06-13 20:20:40 +000016#include "vim.h"
17
Bram Moolenaar071d4272004-06-13 20:20:40 +000018#include <sys/types.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000019#include <signal.h>
20#include <limits.h>
Bram Moolenaar82881492012-11-20 16:53:39 +010021#ifndef PROTO
22# include <process.h>
23#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000024
25#undef chdir
26#ifdef __GNUC__
27# ifndef __MINGW32__
28# include <dirent.h>
29# endif
30#else
31# include <direct.h>
32#endif
33
Bram Moolenaar82881492012-11-20 16:53:39 +010034#ifndef PROTO
35# if defined(FEAT_TITLE) && !defined(FEAT_GUI_W32)
36# include <shellapi.h>
37# endif
38
39# if defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)
40# include <dlgs.h>
Bram Moolenaarcea912a2016-10-12 14:20:24 +020041# include <winspool.h>
Bram Moolenaar82881492012-11-20 16:53:39 +010042# include <commdlg.h>
Bram Moolenaarb04a98f2016-12-01 20:32:29 +010043# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000044
Bram Moolenaar82881492012-11-20 16:53:39 +010045#endif /* PROTO */
Bram Moolenaar071d4272004-06-13 20:20:40 +000046
47#ifdef __MINGW32__
48# ifndef FROM_LEFT_1ST_BUTTON_PRESSED
49# define FROM_LEFT_1ST_BUTTON_PRESSED 0x0001
50# endif
51# ifndef RIGHTMOST_BUTTON_PRESSED
52# define RIGHTMOST_BUTTON_PRESSED 0x0002
53# endif
54# ifndef FROM_LEFT_2ND_BUTTON_PRESSED
55# define FROM_LEFT_2ND_BUTTON_PRESSED 0x0004
56# endif
57# ifndef FROM_LEFT_3RD_BUTTON_PRESSED
58# define FROM_LEFT_3RD_BUTTON_PRESSED 0x0008
59# endif
60# ifndef FROM_LEFT_4TH_BUTTON_PRESSED
61# define FROM_LEFT_4TH_BUTTON_PRESSED 0x0010
62# endif
63
64/*
65 * EventFlags
66 */
67# ifndef MOUSE_MOVED
68# define MOUSE_MOVED 0x0001
69# endif
70# ifndef DOUBLE_CLICK
71# define DOUBLE_CLICK 0x0002
72# endif
73#endif
74
75/*
76 * When generating prototypes for Win32 on Unix, these lines make the syntax
77 * errors disappear. They do not need to be correct.
78 */
79#ifdef PROTO
80#define WINAPI
81#define WINBASEAPI
82typedef int BOOL;
83typedef int CALLBACK;
84typedef int COLORREF;
85typedef int CONSOLE_CURSOR_INFO;
86typedef int COORD;
87typedef int DWORD;
88typedef int ENUMLOGFONT;
89typedef int HANDLE;
90typedef int HDC;
91typedef int HFONT;
92typedef int HICON;
93typedef int HWND;
94typedef int INPUT_RECORD;
95typedef int KEY_EVENT_RECORD;
96typedef int LOGFONT;
97typedef int LPARAM;
98typedef int LPBOOL;
99typedef int LPCSTR;
100typedef int LPCWSTR;
101typedef int LPSTR;
102typedef int LPTSTR;
103typedef int LPWSTR;
104typedef int LRESULT;
105typedef int MOUSE_EVENT_RECORD;
106typedef int NEWTEXTMETRIC;
107typedef int PACL;
108typedef int PRINTDLG;
109typedef int PSECURITY_DESCRIPTOR;
110typedef int PSID;
111typedef int SECURITY_INFORMATION;
112typedef int SHORT;
113typedef int SMALL_RECT;
114typedef int TEXTMETRIC;
115typedef int UINT;
116typedef int WCHAR;
117typedef int WORD;
118typedef int WPARAM;
119typedef void VOID;
120#endif
121
122/* Record all output and all keyboard & mouse input */
123/* #define MCH_WRITE_DUMP */
124
125#ifdef MCH_WRITE_DUMP
126FILE* fdDump = NULL;
127#endif
128
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#ifndef FEAT_GUI_MSWIN
130extern char g_szOrigTitle[];
131#endif
132
133#ifdef FEAT_GUI
134extern HWND s_hwnd;
135#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136static HWND s_hwnd = 0; /* console window handle, set by GetConsoleHwnd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137#endif
138
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100139#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf12d9832016-01-29 21:11:25 +0100140int WSInitialized = FALSE; /* WinSock is initialized */
141#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142
143/* Don't generate prototypes here, because some systems do have these
144 * functions. */
145#if defined(__GNUC__) && !defined(PROTO)
146# ifndef __MINGW32__
147int _stricoll(char *a, char *b)
148{
149 // the ANSI-ish correct way is to use strxfrm():
150 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32
151 strxfrm(a_buff, a, 512);
152 strxfrm(b_buff, b, 512);
153 return strcoll(a_buff, b_buff);
154}
155
156char * _fullpath(char *buf, char *fname, int len)
157{
158 LPTSTR toss;
159
160 return (char *)GetFullPathName(fname, len, buf, &toss);
161}
162# endif
163
Bram Moolenaaraf62ff32013-03-19 14:48:29 +0100164# if !defined(__MINGW32__) || (__GNUC__ < 4)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000165int _chdrive(int drive)
166{
167 char temp [3] = "-:";
168 temp[0] = drive + 'A' - 1;
169 return !SetCurrentDirectory(temp);
170}
Bram Moolenaaraf62ff32013-03-19 14:48:29 +0100171# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172#else
173# ifdef __BORLANDC__
174/* being a more ANSI compliant compiler, BorlandC doesn't define _stricoll:
175 * but it does in BC 5.02! */
176# if __BORLANDC__ < 0x502
177int _stricoll(char *a, char *b)
178{
179# if 1
180 // this is fast but not correct:
181 return stricmp(a, b);
182# else
183 // the ANSI-ish correct way is to use strxfrm():
184 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32
185 strxfrm(a_buff, a, 512);
186 strxfrm(b_buff, b, 512);
187 return strcoll(a_buff, b_buff);
188# endif
189}
190# endif
191# endif
192#endif
193
194
195#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
196/*
197 * GUI version of mch_exit().
198 * Shut down and exit with status `r'
199 * Careful: mch_exit() may be called before mch_init()!
200 */
201 void
202mch_exit(int r)
203{
Bram Moolenaar955f1982017-02-05 15:10:51 +0100204 exiting = TRUE;
205
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 display_errors();
207
208 ml_close_all(TRUE); /* remove all memfiles */
209
210# ifdef FEAT_OLE
211 UninitOLE();
212# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100213# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 if (WSInitialized)
215 {
216 WSInitialized = FALSE;
217 WSACleanup();
218 }
219# endif
220#ifdef DYNAMIC_GETTEXT
221 dyn_libintl_end();
222#endif
223
224 if (gui.in_use)
225 gui_exit(r);
Bram Moolenaar85c79d32007-02-20 01:59:20 +0000226
227#ifdef EXITFREE
228 free_all_mem();
229#endif
230
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231 exit(r);
232}
233
234#endif /* FEAT_GUI_MSWIN */
235
236
237/*
238 * Init the tables for toupper() and tolower().
239 */
240 void
241mch_early_init(void)
242{
243 int i;
244
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 PlatformId();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
247 /* Init the tables for toupper() and tolower() */
248 for (i = 0; i < 256; ++i)
249 toupper_tab[i] = tolower_tab[i] = i;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100250 CharUpperBuff((LPSTR)toupper_tab, 256);
251 CharLowerBuff((LPSTR)tolower_tab, 256);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252}
253
254
255/*
256 * Return TRUE if the input comes from a terminal, FALSE otherwise.
257 */
258 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100259mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260{
261#ifdef FEAT_GUI_MSWIN
262 return OK; /* GUI always has a tty */
263#else
264 if (isatty(read_cmd_fd))
265 return TRUE;
266 return FALSE;
267#endif
268}
269
270#ifdef FEAT_TITLE
271/*
272 * mch_settitle(): set titlebar of our window
273 */
274 void
275mch_settitle(
276 char_u *title,
277 char_u *icon)
278{
279# ifdef FEAT_GUI_MSWIN
280 gui_mch_settitle(title, icon);
281# else
282 if (title != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000283 {
284# ifdef FEAT_MBYTE
285 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
286 {
287 /* Convert the title from 'encoding' to the active codepage. */
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000288 WCHAR *wp = enc_to_utf16(title, NULL);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000289
290 if (wp != NULL)
291 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200292 SetConsoleTitleW(wp);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000293 vim_free(wp);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200294 return;
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000295 }
296 }
297# endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100298 SetConsoleTitle((LPCSTR)title);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000299 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300# endif
301}
302
303
304/*
305 * Restore the window/icon title.
306 * which is one of:
Bram Moolenaar40385db2018-08-07 22:31:44 +0200307 * SAVE_RESTORE_TITLE: Just restore title
308 * SAVE_RESTORE_ICON: Just restore icon (which we don't have)
309 * SAVE_RESTORE_BOTH: Restore title and icon (which we don't have)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 */
311 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100312mch_restore_title(int which UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313{
314#ifndef FEAT_GUI_MSWIN
Bram Moolenaar1df52d72014-10-15 22:50:10 +0200315 SetConsoleTitle(g_szOrigTitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316#endif
317}
318
319
320/*
321 * Return TRUE if we can restore the title (we can)
322 */
323 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100324mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325{
326 return TRUE;
327}
328
329
330/*
331 * Return TRUE if we can restore the icon title (we can't)
332 */
333 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100334mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335{
336 return FALSE;
337}
338#endif /* FEAT_TITLE */
339
340
341/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000342 * Get absolute file name into buffer "buf" of length "len" bytes,
343 * turning all '/'s into '\\'s and getting the correct case of each component
344 * of the file name. Append a (back)slash to a directory name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345 * When 'shellslash' set do it the other way around.
346 * Return OK or FAIL.
347 */
348 int
349mch_FullName(
350 char_u *fname,
351 char_u *buf,
352 int len,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100353 int force UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354{
355 int nResult = FAIL;
356
357#ifdef __BORLANDC__
358 if (*fname == NUL) /* Borland behaves badly here - make it consistent */
359 nResult = mch_dirname(buf, len);
360 else
361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000363#ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200364 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000365 {
366 WCHAR *wname;
367 WCHAR wbuf[MAX_PATH];
368 char_u *cname = NULL;
369
370 /* Use the wide function:
371 * - convert the fname from 'encoding' to UCS2.
372 * - invoke _wfullpath()
373 * - convert the result from UCS2 to 'encoding'.
374 */
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000375 wname = enc_to_utf16(fname, NULL);
Bram Moolenaar374bf022014-11-05 19:33:24 +0100376 if (wname != NULL && _wfullpath(wbuf, wname, MAX_PATH) != NULL)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000377 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000378 cname = utf16_to_enc((short_u *)wbuf, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000379 if (cname != NULL)
380 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +0000381 vim_strncpy(buf, cname, len - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000382 nResult = OK;
383 }
384 }
385 vim_free(wname);
386 vim_free(cname);
387 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000388 if (nResult == FAIL) /* fall back to non-wide function */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000390 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100391 if (_fullpath((char *)buf, (const char *)fname, len - 1) == NULL)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000392 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +0000393 /* failed, use relative path name */
394 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000395 }
396 else
397 nResult = OK;
398 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400
401#ifdef USE_FNAME_CASE
402 fname_case(buf, len);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000403#else
404 slash_adjust(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405#endif
406
407 return nResult;
408}
409
410
411/*
412 * Return TRUE if "fname" does not depend on the current directory.
413 */
414 int
415mch_isFullName(char_u *fname)
416{
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200417#ifdef FEAT_MBYTE
418 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
419 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
420 * UTF-8. */
421 char szName[_MAX_PATH * 3 + 1];
422#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 char szName[_MAX_PATH + 1];
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200424#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425
426 /* A name like "d:/foo" and "//server/share" is absolute */
427 if ((fname[0] && fname[1] == ':' && (fname[2] == '/' || fname[2] == '\\'))
428 || (fname[0] == fname[1] && (fname[0] == '/' || fname[0] == '\\')))
429 return TRUE;
430
431 /* A name that can't be made absolute probably isn't absolute. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100432 if (mch_FullName(fname, (char_u *)szName, sizeof(szName) - 1, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433 return FALSE;
434
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100435 return pathcmp((const char *)fname, (const char *)szName, -1) == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436}
437
438/*
439 * Replace all slashes by backslashes.
440 * This used to be the other way around, but MS-DOS sometimes has problems
441 * with slashes (e.g. in a command name). We can't have mixed slashes and
442 * backslashes, because comparing file names will not work correctly. The
443 * commands that use a file name should try to avoid the need to type a
444 * backslash twice.
445 * When 'shellslash' set do it the other way around.
Bram Moolenaarb4f6a462015-10-13 19:43:17 +0200446 * When the path looks like a URL leave it unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447 */
448 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100449slash_adjust(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450{
Bram Moolenaarb4f6a462015-10-13 19:43:17 +0200451 if (path_with_url(p))
452 return;
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200453
454 if (*p == '`')
455 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +0200456 size_t len = STRLEN(p);
457
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200458 /* don't replace backslash in backtick quoted strings */
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200459 if (len > 2 && *(p + len - 1) == '`')
460 return;
461 }
462
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000463 while (*p)
464 {
465 if (*p == psepcN)
466 *p = psepc;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100467 MB_PTR_ADV(p);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000468 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469}
470
Bram Moolenaar8767f522016-07-01 17:17:39 +0200471/* Use 64-bit stat functions if available. */
472#ifdef HAVE_STAT64
473# undef stat
474# undef _stat
475# undef _wstat
476# undef _fstat
477# define stat _stat64
478# define _stat _stat64
479# define _wstat _wstat64
480# define _fstat _fstat64
481#endif
482
Bram Moolenaar9d1685d2014-01-14 12:18:45 +0100483#if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__)
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200484# define OPEN_OH_ARGTYPE intptr_t
485#else
486# define OPEN_OH_ARGTYPE long
487#endif
488
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200489 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200490stat_symlink_aware(const char *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200491{
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100492#if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
493 /* Work around for VC12 or earlier (and MinGW). stat() can't handle
494 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200495 * VC9 or earlier: stat() doesn't support a symlink at all. It retrieves
496 * status of a symlink itself.
497 * VC10: stat() supports a symlink to a normal file, but it doesn't support
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100498 * a symlink to a directory (always returns an error).
499 * VC11 and VC12: stat() doesn't return an error for a symlink to a
500 * directory, but it doesn't set S_IFDIR flag.
501 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200502 WIN32_FIND_DATA findData;
503 HANDLE hFind, h;
504 DWORD attr = 0;
505 BOOL is_symlink = FALSE;
506
507 hFind = FindFirstFile(name, &findData);
508 if (hFind != INVALID_HANDLE_VALUE)
509 {
510 attr = findData.dwFileAttributes;
511 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
512 && (findData.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
513 is_symlink = TRUE;
514 FindClose(hFind);
515 }
516 if (is_symlink)
517 {
518 h = CreateFile(name, FILE_READ_ATTRIBUTES,
519 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
520 OPEN_EXISTING,
521 (attr & FILE_ATTRIBUTE_DIRECTORY)
522 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
523 NULL);
524 if (h != INVALID_HANDLE_VALUE)
525 {
526 int fd, n;
527
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200528 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200529 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100530 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
531 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200532 _close(fd);
533 return n;
534 }
535 }
536#endif
537 return stat(name, stp);
538}
539
540#ifdef FEAT_MBYTE
541 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200542wstat_symlink_aware(const WCHAR *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200543{
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100544# if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
545 /* Work around for VC12 or earlier (and MinGW). _wstat() can't handle
546 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200547 * VC9 or earlier: _wstat() doesn't support a symlink at all. It retrieves
548 * status of a symlink itself.
549 * VC10: _wstat() supports a symlink to a normal file, but it doesn't
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100550 * support a symlink to a directory (always returns an error).
551 * VC11 and VC12: _wstat() doesn't return an error for a symlink to a
552 * directory, but it doesn't set S_IFDIR flag.
553 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200554 int n;
555 BOOL is_symlink = FALSE;
556 HANDLE hFind, h;
557 DWORD attr = 0;
558 WIN32_FIND_DATAW findDataW;
559
560 hFind = FindFirstFileW(name, &findDataW);
561 if (hFind != INVALID_HANDLE_VALUE)
562 {
563 attr = findDataW.dwFileAttributes;
564 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
565 && (findDataW.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
566 is_symlink = TRUE;
567 FindClose(hFind);
568 }
569 if (is_symlink)
570 {
571 h = CreateFileW(name, FILE_READ_ATTRIBUTES,
572 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
573 OPEN_EXISTING,
574 (attr & FILE_ATTRIBUTE_DIRECTORY)
575 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
576 NULL);
577 if (h != INVALID_HANDLE_VALUE)
578 {
579 int fd;
580
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200581 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200582 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100583 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
584 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200585 _close(fd);
586 return n;
587 }
588 }
589# endif
Bram Moolenaar8767f522016-07-01 17:17:39 +0200590 return _wstat(name, (struct _stat *)stp);
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200591}
592#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593
594/*
595 * stat() can't handle a trailing '/' or '\', remove it first.
596 */
597 int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200598vim_stat(const char *name, stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599{
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200600#ifdef FEAT_MBYTE
601 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
602 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
603 * UTF-8. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100604 char_u buf[_MAX_PATH * 3 + 1];
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200605#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100606 char_u buf[_MAX_PATH + 1];
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200607#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100608 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200610 vim_strncpy((char_u *)buf, (char_u *)name, sizeof(buf) - 1);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100611 p = buf + STRLEN(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 if (p > buf)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100613 MB_PTR_BACK(buf, p);
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100614
615 /* Remove trailing '\\' except root path. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 if (p > buf && (*p == '\\' || *p == '/') && p[-1] != ':')
617 *p = NUL;
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100618
619 if ((buf[0] == '\\' && buf[1] == '\\') || (buf[0] == '/' && buf[1] == '/'))
620 {
621 /* UNC root path must be followed by '\\'. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100622 p = vim_strpbrk(buf + 2, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100623 if (p != NULL)
624 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100625 p = vim_strpbrk(p + 1, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100626 if (p == NULL)
627 STRCAT(buf, "\\");
628 }
629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630#ifdef FEAT_MBYTE
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200631 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000633 WCHAR *wp = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 int n;
635
636 if (wp != NULL)
637 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200638 n = wstat_symlink_aware(wp, stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 vim_free(wp);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200640 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 }
642 }
643#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100644 return stat_symlink_aware((char *)buf, stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645}
646
647#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
648 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100649mch_settmode(int tmode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650{
651 /* nothing to do */
652}
653
654 int
655mch_get_shellsize(void)
656{
657 /* never used */
658 return OK;
659}
660
661 void
662mch_set_shellsize(void)
663{
664 /* never used */
665}
666
667/*
668 * Rows and/or Columns has changed.
669 */
670 void
671mch_new_shellsize(void)
672{
673 /* never used */
674}
675
676#endif
677
678/*
679 * We have no job control, so fake it by starting a new shell.
680 */
681 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100682mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683{
684 suspend_shell();
685}
686
687#if defined(USE_MCH_ERRMSG) || defined(PROTO)
688
689#ifdef display_errors
690# undef display_errors
691#endif
692
693/*
694 * Display the saved error message(s).
695 */
696 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100697display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698{
699 char *p;
700
701 if (error_ga.ga_data != NULL)
702 {
703 /* avoid putting up a message box with blanks only */
704 for (p = (char *)error_ga.ga_data; *p; ++p)
705 if (!isspace(*p))
706 {
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000707 (void)gui_mch_dialog(
708#ifdef FEAT_GUI
709 gui.starting ? VIM_INFO :
710#endif
711 VIM_ERROR,
712#ifdef FEAT_GUI
713 gui.starting ? (char_u *)_("Message") :
714#endif
715 (char_u *)_("Error"),
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100716 (char_u *)p, (char_u *)_("&Ok"),
717 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 break;
719 }
720 ga_clear(&error_ga);
721 }
722}
723#endif
724
725
726/*
727 * Return TRUE if "p" contain a wildcard that can be expanded by
728 * dos_expandpath().
729 */
730 int
731mch_has_exp_wildcard(char_u *p)
732{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100733 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 {
735 if (vim_strchr((char_u *)"?*[", *p) != NULL
736 || (*p == '~' && p[1] != NUL))
737 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 }
739 return FALSE;
740}
741
742/*
743 * Return TRUE if "p" contain a wildcard or a "~1" kind of thing (could be a
744 * shortened file name).
745 */
746 int
747mch_has_wildcard(char_u *p)
748{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100749 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 {
751 if (vim_strchr((char_u *)
752# ifdef VIM_BACKTICK
753 "?*$[`"
754# else
755 "?*$["
756# endif
757 , *p) != NULL
758 || (*p == '~' && p[1] != NUL))
759 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 }
761 return FALSE;
762}
763
764
765/*
766 * The normal _chdir() does not change the default drive. This one does.
767 * Returning 0 implies success; -1 implies failure.
768 */
769 int
770mch_chdir(char *path)
771{
772 if (path[0] == NUL) /* just checking... */
773 return -1;
774
Bram Moolenaara2974d72009-07-14 16:38:36 +0000775 if (p_verbose >= 5)
776 {
777 verbose_enter();
778 smsg((char_u *)"chdir(%s)", path);
779 verbose_leave();
780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 if (isalpha(path[0]) && path[1] == ':') /* has a drive name */
782 {
783 /* If we can change to the drive, skip that part of the path. If we
784 * can't then the current directory may be invalid, try using chdir()
785 * with the whole path. */
786 if (_chdrive(TOLOWER_ASC(path[0]) - 'a' + 1) == 0)
787 path += 2;
788 }
789
790 if (*path == NUL) /* drive name only */
791 return 0;
792
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000793#ifdef FEAT_MBYTE
794 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
795 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100796 WCHAR *p = enc_to_utf16((char_u *)path, NULL);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000797 int n;
798
799 if (p != NULL)
800 {
801 n = _wchdir(p);
802 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200803 return n;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000804 }
805 }
806#endif
807
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 return chdir(path); /* let the normal chdir() do the rest */
809}
810
811
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812#ifdef FEAT_GUI_MSWIN
813/*
814 * return non-zero if a character is available
815 */
816 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100817mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818{
819 /* never used */
820 return TRUE;
821}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200822
823# if defined(FEAT_TERMINAL) || defined(PROTO)
824/*
825 * Check for any pending input or messages.
826 */
827 int
828mch_check_messages(void)
829{
830 /* TODO: check for messages */
831 return TRUE;
832}
833# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834#endif
835
836
837/*
838 * set screen mode, always fails.
839 */
840 int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100841mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842{
843 EMSG(_(e_screenmode));
844 return FAIL;
845}
846
847
848#if defined(FEAT_LIBCALL) || defined(PROTO)
849/*
850 * Call a DLL routine which takes either a string or int param
851 * and returns an allocated string.
852 * Return OK if it worked, FAIL if not.
853 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854typedef LPTSTR (*MYSTRPROCSTR)(LPTSTR);
855typedef LPTSTR (*MYINTPROCSTR)(int);
856typedef int (*MYSTRPROCINT)(LPTSTR);
857typedef int (*MYINTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859/*
860 * Check if a pointer points to a valid NUL terminated string.
861 * Return the length of the string, including terminating NUL.
862 * Returns 0 for an invalid pointer, 1 for an empty string.
863 */
864 static size_t
865check_str_len(char_u *str)
866{
867 SYSTEM_INFO si;
868 MEMORY_BASIC_INFORMATION mbi;
869 size_t length = 0;
870 size_t i;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100871 const char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872
873 /* get page size */
874 GetSystemInfo(&si);
875
876 /* get memory information */
877 if (VirtualQuery(str, &mbi, sizeof(mbi)))
878 {
879 /* pre cast these (typing savers) */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000880 long_u dwStr = (long_u)str;
881 long_u dwBaseAddress = (long_u)mbi.BaseAddress;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882
883 /* get start address of page that str is on */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000884 long_u strPage = dwStr - (dwStr - dwBaseAddress) % si.dwPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885
886 /* get length from str to end of page */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000887 long_u pageLength = si.dwPageSize - (dwStr - strPage);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888
Bram Moolenaar442b4222010-05-24 21:34:22 +0200889 for (p = str; !IsBadReadPtr(p, (UINT)pageLength);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 p += pageLength, pageLength = si.dwPageSize)
891 for (i = 0; i < pageLength; ++i, ++length)
892 if (p[i] == NUL)
893 return length + 1;
894 }
895
896 return 0;
897}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200899/*
900 * Passed to do_in_runtimepath() to load a vim.ico file.
901 */
902 static void
903mch_icon_load_cb(char_u *fname, void *cookie)
904{
905 HANDLE *h = (HANDLE *)cookie;
906
907 *h = LoadImage(NULL,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100908 (LPSTR)fname,
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200909 IMAGE_ICON,
910 64,
911 64,
912 LR_LOADFROMFILE | LR_LOADMAP3DCOLORS);
913}
914
915/*
916 * Try loading an icon file from 'runtimepath'.
917 */
918 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100919mch_icon_load(HANDLE *iconp)
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200920{
921 return do_in_runtimepath((char_u *)"bitmaps/vim.ico",
Bram Moolenaar7f8989d2016-03-12 22:11:39 +0100922 0, mch_icon_load_cb, iconp);
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200923}
924
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 int
926mch_libcall(
927 char_u *libname,
928 char_u *funcname,
929 char_u *argstring, /* NULL when using a argint */
930 int argint,
931 char_u **string_result,/* NULL when using number_result */
932 int *number_result)
933{
934 HINSTANCE hinstLib;
935 MYSTRPROCSTR ProcAdd;
936 MYINTPROCSTR ProcAddI;
937 char_u *retval_str = NULL;
938 int retval_int = 0;
939 size_t len;
940
941 BOOL fRunTimeLinkSuccess = FALSE;
942
943 // Get a handle to the DLL module.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100944 hinstLib = vimLoadLib((char *)libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945
946 // If the handle is valid, try to get the function address.
947 if (hinstLib != NULL)
948 {
949#ifdef HAVE_TRY_EXCEPT
950 __try
951 {
952#endif
953 if (argstring != NULL)
954 {
955 /* Call with string argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100956 ProcAdd = (MYSTRPROCSTR)GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 if ((fRunTimeLinkSuccess = (ProcAdd != NULL)) != 0)
958 {
959 if (string_result == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100960 retval_int = ((MYSTRPROCINT)ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100962 retval_str = (char_u *)(ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 }
964 }
965 else
966 {
967 /* Call with number argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100968 ProcAddI = (MYINTPROCSTR) GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 if ((fRunTimeLinkSuccess = (ProcAddI != NULL)) != 0)
970 {
971 if (string_result == NULL)
972 retval_int = ((MYINTPROCINT)ProcAddI)(argint);
973 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100974 retval_str = (char_u *)(ProcAddI)(argint);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 }
976 }
977
978 // Save the string before we free the library.
979 // Assume that a "1" result is an illegal pointer.
980 if (string_result == NULL)
981 *number_result = retval_int;
982 else if (retval_str != NULL
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100983 && (len = check_str_len(retval_str)) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 {
985 *string_result = lalloc((long_u)len, TRUE);
986 if (*string_result != NULL)
987 mch_memmove(*string_result, retval_str, len);
988 }
989
990#ifdef HAVE_TRY_EXCEPT
991 }
992 __except(EXCEPTION_EXECUTE_HANDLER)
993 {
994 if (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW)
995 RESETSTKOFLW();
996 fRunTimeLinkSuccess = 0;
997 }
998#endif
999
1000 // Free the DLL module.
1001 (void)FreeLibrary(hinstLib);
1002 }
1003
1004 if (!fRunTimeLinkSuccess)
1005 {
1006 EMSG2(_(e_libcall), funcname);
1007 return FAIL;
1008 }
1009
1010 return OK;
1011}
1012#endif
1013
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014/*
1015 * Debugging helper: expose the MCH_WRITE_DUMP stuff to other modules
1016 */
1017 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001018DumpPutS(const char *psz UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019{
1020# ifdef MCH_WRITE_DUMP
1021 if (fdDump)
1022 {
1023 fputs(psz, fdDump);
1024 if (psz[strlen(psz) - 1] != '\n')
1025 fputc('\n', fdDump);
1026 fflush(fdDump);
1027 }
1028# endif
1029}
1030
1031#ifdef _DEBUG
1032
1033void __cdecl
1034Trace(
1035 char *pszFormat,
1036 ...)
1037{
1038 CHAR szBuff[2048];
1039 va_list args;
1040
1041 va_start(args, pszFormat);
1042 vsprintf(szBuff, pszFormat, args);
1043 va_end(args);
1044
1045 OutputDebugString(szBuff);
1046}
1047
1048#endif //_DEBUG
1049
Bram Moolenaar843ee412004-06-30 16:16:41 +00001050#if !defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001051# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052extern HWND g_hWnd; /* This is in os_win32.c. */
1053# endif
1054
1055/*
1056 * Showing the printer dialog is tricky since we have no GUI
1057 * window to parent it. The following routines are needed to
1058 * get the window parenting and Z-order to work properly.
1059 */
1060 static void
1061GetConsoleHwnd(void)
1062{
1063# define MY_BUFSIZE 1024 // Buffer size for console window titles.
1064
1065 char pszNewWindowTitle[MY_BUFSIZE]; // Contains fabricated WindowTitle.
1066 char pszOldWindowTitle[MY_BUFSIZE]; // Contains original WindowTitle.
1067
1068 /* Skip if it's already set. */
1069 if (s_hwnd != 0)
1070 return;
1071
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001072# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 /* Window handle may have been found by init code (Windows NT only) */
1074 if (g_hWnd != 0)
1075 {
1076 s_hwnd = g_hWnd;
1077 return;
1078 }
1079# endif
1080
1081 GetConsoleTitle(pszOldWindowTitle, MY_BUFSIZE);
1082
1083 wsprintf(pszNewWindowTitle, "%s/%d/%d",
1084 pszOldWindowTitle,
1085 GetTickCount(),
1086 GetCurrentProcessId());
1087 SetConsoleTitle(pszNewWindowTitle);
1088 Sleep(40);
1089 s_hwnd = FindWindow(NULL, pszNewWindowTitle);
1090
1091 SetConsoleTitle(pszOldWindowTitle);
1092}
Bram Moolenaar843ee412004-06-30 16:16:41 +00001093
1094/*
1095 * Console implementation of ":winpos".
1096 */
1097 int
1098mch_get_winpos(int *x, int *y)
1099{
1100 RECT rect;
1101
1102 GetConsoleHwnd();
1103 GetWindowRect(s_hwnd, &rect);
1104 *x = rect.left;
1105 *y = rect.top;
1106 return OK;
1107}
1108
1109/*
1110 * Console implementation of ":winpos x y".
1111 */
1112 void
1113mch_set_winpos(int x, int y)
1114{
1115 GetConsoleHwnd();
1116 SetWindowPos(s_hwnd, NULL, x, y, 0, 0,
1117 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
1118}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119#endif
1120
1121#if (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) || defined(PROTO)
1122
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123/*=================================================================
1124 * Win32 printer stuff
1125 */
1126
1127static HFONT prt_font_handles[2][2][2];
1128static PRINTDLG prt_dlg;
1129static const int boldface[2] = {FW_REGULAR, FW_BOLD};
1130static TEXTMETRIC prt_tm;
1131static int prt_line_height;
1132static int prt_number_width;
1133static int prt_left_margin;
1134static int prt_right_margin;
1135static int prt_top_margin;
1136static char_u szAppName[] = TEXT("VIM");
1137static HWND hDlgPrint;
1138static int *bUserAbort = NULL;
1139static char_u *prt_name = NULL;
1140
1141/* Defines which are also in vim.rc. */
1142#define IDC_BOX1 400
1143#define IDC_PRINTTEXT1 401
1144#define IDC_PRINTTEXT2 402
1145#define IDC_PROGRESS 403
1146
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001147#if !defined(FEAT_MBYTE)
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001148# define vimSetDlgItemText(h, i, s) SetDlgItemText(h, i, s)
1149#else
1150 static BOOL
1151vimSetDlgItemText(HWND hDlg, int nIDDlgItem, char_u *s)
1152{
1153 WCHAR *wp = NULL;
1154 BOOL ret;
1155
1156 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1157 {
1158 wp = enc_to_utf16(s, NULL);
1159 }
1160 if (wp != NULL)
1161 {
1162 ret = SetDlgItemTextW(hDlg, nIDDlgItem, wp);
1163 vim_free(wp);
1164 return ret;
1165 }
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001166 return SetDlgItemText(hDlg, nIDDlgItem, (LPCSTR)s);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001167}
1168#endif
1169
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170/*
1171 * Convert BGR to RGB for Windows GDI calls
1172 */
1173 static COLORREF
1174swap_me(COLORREF colorref)
1175{
1176 int temp;
1177 char *ptr = (char *)&colorref;
1178
1179 temp = *(ptr);
1180 *(ptr ) = *(ptr + 2);
1181 *(ptr + 2) = temp;
1182 return colorref;
1183}
1184
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001185/* Attempt to make this work for old and new compilers */
Bram Moolenaar9f733d12011-09-21 20:09:42 +02001186#if !defined(_WIN64) && (!defined(_MSC_VER) || _MSC_VER < 1300)
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001187# define PDP_RETVAL BOOL
1188#else
1189# define PDP_RETVAL INT_PTR
1190#endif
1191
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001192 static PDP_RETVAL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001193PrintDlgProc(
1194 HWND hDlg,
1195 UINT message,
1196 WPARAM wParam UNUSED,
1197 LPARAM lParam UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198{
1199#ifdef FEAT_GETTEXT
1200 NONCLIENTMETRICS nm;
1201 static HFONT hfont;
1202#endif
1203
1204 switch (message)
1205 {
1206 case WM_INITDIALOG:
1207#ifdef FEAT_GETTEXT
1208 nm.cbSize = sizeof(NONCLIENTMETRICS);
1209 if (SystemParametersInfo(
1210 SPI_GETNONCLIENTMETRICS,
1211 sizeof(NONCLIENTMETRICS),
1212 &nm,
1213 0))
1214 {
1215 char buff[MAX_PATH];
1216 int i;
1217
1218 /* Translate the dialog texts */
1219 hfont = CreateFontIndirect(&nm.lfMessageFont);
1220 for (i = IDC_PRINTTEXT1; i <= IDC_PROGRESS; i++)
1221 {
1222 SendDlgItemMessage(hDlg, i, WM_SETFONT, (WPARAM)hfont, 1);
1223 if (GetDlgItemText(hDlg,i, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001224 vimSetDlgItemText(hDlg,i, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 }
1226 SendDlgItemMessage(hDlg, IDCANCEL,
1227 WM_SETFONT, (WPARAM)hfont, 1);
1228 if (GetDlgItemText(hDlg,IDCANCEL, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001229 vimSetDlgItemText(hDlg,IDCANCEL, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 }
1231#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001232 SetWindowText(hDlg, (LPCSTR)szAppName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 if (prt_name != NULL)
1234 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001235 vimSetDlgItemText(hDlg, IDC_PRINTTEXT2, (char_u *)prt_name);
Bram Moolenaard23a8232018-02-10 18:45:26 +01001236 VIM_CLEAR(prt_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 }
1238 EnableMenuItem(GetSystemMenu(hDlg, FALSE), SC_CLOSE, MF_GRAYED);
1239#ifndef FEAT_GUI
1240 BringWindowToTop(s_hwnd);
1241#endif
1242 return TRUE;
1243
1244 case WM_COMMAND:
1245 *bUserAbort = TRUE;
1246 EnableWindow(GetParent(hDlg), TRUE);
1247 DestroyWindow(hDlg);
1248 hDlgPrint = NULL;
1249#ifdef FEAT_GETTEXT
1250 DeleteObject(hfont);
1251#endif
1252 return TRUE;
1253 }
1254 return FALSE;
1255}
1256
1257 static BOOL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001258AbortProc(HDC hdcPrn UNUSED, int iCode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259{
1260 MSG msg;
1261
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001262 while (!*bUserAbort && pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 {
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001264 if (!hDlgPrint || !pIsDialogMessage(hDlgPrint, &msg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 {
1266 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001267 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 }
1269 }
1270 return !*bUserAbort;
1271}
1272
1273#ifndef FEAT_GUI
1274
Bram Moolenaar26fdd7d2011-11-30 13:42:44 +01001275 static UINT_PTR CALLBACK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276PrintHookProc(
1277 HWND hDlg, // handle to dialog box
1278 UINT uiMsg, // message identifier
1279 WPARAM wParam, // message parameter
1280 LPARAM lParam // message parameter
1281 )
1282{
1283 HWND hwndOwner;
1284 RECT rc, rcDlg, rcOwner;
1285 PRINTDLG *pPD;
1286
1287 if (uiMsg == WM_INITDIALOG)
1288 {
1289 // Get the owner window and dialog box rectangles.
1290 if ((hwndOwner = GetParent(hDlg)) == NULL)
1291 hwndOwner = GetDesktopWindow();
1292
1293 GetWindowRect(hwndOwner, &rcOwner);
1294 GetWindowRect(hDlg, &rcDlg);
1295 CopyRect(&rc, &rcOwner);
1296
1297 // Offset the owner and dialog box rectangles so that
1298 // right and bottom values represent the width and
1299 // height, and then offset the owner again to discard
1300 // space taken up by the dialog box.
1301
1302 OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top);
1303 OffsetRect(&rc, -rc.left, -rc.top);
1304 OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom);
1305
1306 // The new position is the sum of half the remaining
1307 // space and the owner's original position.
1308
1309 SetWindowPos(hDlg,
1310 HWND_TOP,
1311 rcOwner.left + (rc.right / 2),
1312 rcOwner.top + (rc.bottom / 2),
1313 0, 0, // ignores size arguments
1314 SWP_NOSIZE);
1315
1316 /* tackle the printdlg copiesctrl problem */
1317 pPD = (PRINTDLG *)lParam;
1318 pPD->nCopies = (WORD)pPD->lCustData;
1319 SetDlgItemInt( hDlg, edt3, pPD->nCopies, FALSE );
1320 /* Bring the window to top */
1321 BringWindowToTop(GetParent(hDlg));
1322 SetForegroundWindow(hDlg);
1323 }
1324
1325 return FALSE;
1326}
1327#endif
1328
1329 void
1330mch_print_cleanup(void)
1331{
1332 int pifItalic;
1333 int pifBold;
1334 int pifUnderline;
1335
1336 for (pifBold = 0; pifBold <= 1; pifBold++)
1337 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1338 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1339 DeleteObject(prt_font_handles[pifBold][pifItalic][pifUnderline]);
1340
1341 if (prt_dlg.hDC != NULL)
1342 DeleteDC(prt_dlg.hDC);
1343 if (!*bUserAbort)
1344 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1345}
1346
1347 static int
1348to_device_units(int idx, int dpi, int physsize, int offset, int def_number)
1349{
1350 int ret = 0;
1351 int u;
1352 int nr;
1353
1354 u = prt_get_unit(idx);
1355 if (u == PRT_UNIT_NONE)
1356 {
1357 u = PRT_UNIT_PERC;
1358 nr = def_number;
1359 }
1360 else
1361 nr = printer_opts[idx].number;
1362
1363 switch (u)
1364 {
1365 case PRT_UNIT_PERC:
1366 ret = (physsize * nr) / 100;
1367 break;
1368 case PRT_UNIT_INCH:
1369 ret = (nr * dpi);
1370 break;
1371 case PRT_UNIT_MM:
1372 ret = (nr * 10 * dpi) / 254;
1373 break;
1374 case PRT_UNIT_POINT:
1375 ret = (nr * 10 * dpi) / 720;
1376 break;
1377 }
1378
1379 if (ret < offset)
1380 return 0;
1381 else
1382 return ret - offset;
1383}
1384
1385 static int
1386prt_get_cpl(void)
1387{
1388 int hr;
1389 int phyw;
1390 int dvoff;
1391 int rev_offset;
1392 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393
1394 GetTextMetrics(prt_dlg.hDC, &prt_tm);
1395 prt_line_height = prt_tm.tmHeight + prt_tm.tmExternalLeading;
1396
1397 hr = GetDeviceCaps(prt_dlg.hDC, HORZRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALWIDTH);
1399 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSX);
1401
1402 rev_offset = phyw - (dvoff + hr);
1403
1404 prt_left_margin = to_device_units(OPT_PRINT_LEFT, dpi, phyw, dvoff, 10);
1405 if (prt_use_number())
1406 {
1407 prt_number_width = PRINT_NUMBER_WIDTH * prt_tm.tmAveCharWidth;
1408 prt_left_margin += prt_number_width;
1409 }
1410 else
1411 prt_number_width = 0;
1412
1413 prt_right_margin = hr - to_device_units(OPT_PRINT_RIGHT, dpi, phyw,
1414 rev_offset, 5);
1415
1416 return (prt_right_margin - prt_left_margin) / prt_tm.tmAveCharWidth;
1417}
1418
1419 static int
1420prt_get_lpp(void)
1421{
1422 int vr;
1423 int phyw;
1424 int dvoff;
1425 int rev_offset;
1426 int bottom_margin;
1427 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428
1429 vr = GetDeviceCaps(prt_dlg.hDC, VERTRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALHEIGHT);
1431 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSY);
1433
1434 rev_offset = phyw - (dvoff + vr);
1435
1436 prt_top_margin = to_device_units(OPT_PRINT_TOP, dpi, phyw, dvoff, 5);
1437
1438 /* adjust top margin if there is a header */
1439 prt_top_margin += prt_line_height * prt_header_height();
1440
1441 bottom_margin = vr - to_device_units(OPT_PRINT_BOT, dpi, phyw,
1442 rev_offset, 5);
1443
1444 return (bottom_margin - prt_top_margin) / prt_line_height;
1445}
1446
1447 int
1448mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit)
1449{
1450 static HGLOBAL stored_dm = NULL;
1451 static HGLOBAL stored_devn = NULL;
1452 static int stored_nCopies = 1;
1453 static int stored_nFlags = 0;
1454
1455 LOGFONT fLogFont;
1456 int pifItalic;
1457 int pifBold;
1458 int pifUnderline;
1459
1460 DEVMODE *mem;
1461 DEVNAMES *devname;
1462 int i;
1463
1464 bUserAbort = &(psettings->user_abort);
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001465 vim_memset(&prt_dlg, 0, sizeof(PRINTDLG));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 prt_dlg.lStructSize = sizeof(PRINTDLG);
1467#ifndef FEAT_GUI
1468 GetConsoleHwnd(); /* get value of s_hwnd */
1469#endif
1470 prt_dlg.hwndOwner = s_hwnd;
1471 prt_dlg.Flags = PD_NOPAGENUMS | PD_NOSELECTION | PD_RETURNDC;
1472 if (!forceit)
1473 {
1474 prt_dlg.hDevMode = stored_dm;
1475 prt_dlg.hDevNames = stored_devn;
1476 prt_dlg.lCustData = stored_nCopies; // work around bug in print dialog
1477#ifndef FEAT_GUI
1478 /*
1479 * Use hook to prevent console window being sent to back
1480 */
1481 prt_dlg.lpfnPrintHook = PrintHookProc;
1482 prt_dlg.Flags |= PD_ENABLEPRINTHOOK;
1483#endif
1484 prt_dlg.Flags |= stored_nFlags;
1485 }
1486
1487 /*
1488 * If bang present, return default printer setup with no dialog
1489 * never show dialog if we are running over telnet
1490 */
1491 if (forceit
1492#ifndef FEAT_GUI
1493 || !term_console
1494#endif
1495 )
1496 {
1497 prt_dlg.Flags |= PD_RETURNDEFAULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498 /*
1499 * MSDN suggests setting the first parameter to WINSPOOL for
1500 * NT, but NULL appears to work just as well.
1501 */
1502 if (*p_pdev != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001503 prt_dlg.hDC = CreateDC(NULL, (LPCSTR)p_pdev, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 {
1506 prt_dlg.Flags |= PD_RETURNDEFAULT;
1507 if (PrintDlg(&prt_dlg) == 0)
1508 goto init_fail_dlg;
1509 }
1510 }
1511 else if (PrintDlg(&prt_dlg) == 0)
1512 goto init_fail_dlg;
1513 else
1514 {
1515 /*
1516 * keep the previous driver context
1517 */
1518 stored_dm = prt_dlg.hDevMode;
1519 stored_devn = prt_dlg.hDevNames;
1520 stored_nFlags = prt_dlg.Flags;
1521 stored_nCopies = prt_dlg.nCopies;
1522 }
1523
1524 if (prt_dlg.hDC == NULL)
1525 {
1526 EMSG(_("E237: Printer selection failed"));
1527 mch_print_cleanup();
1528 return FALSE;
1529 }
1530
1531 /* Not all printer drivers report the support of color (or grey) in the
1532 * same way. Let's set has_color if there appears to be some way to print
1533 * more than B&W. */
1534 i = GetDeviceCaps(prt_dlg.hDC, NUMCOLORS);
1535 psettings->has_color = (GetDeviceCaps(prt_dlg.hDC, BITSPIXEL) > 1
1536 || GetDeviceCaps(prt_dlg.hDC, PLANES) > 1
1537 || i > 2 || i == -1);
1538
1539 /* Ensure all font styles are baseline aligned */
1540 SetTextAlign(prt_dlg.hDC, TA_BASELINE|TA_LEFT);
1541
1542 /*
1543 * On some windows systems the nCopies parameter is not
1544 * passed back correctly. It must be retrieved from the
1545 * hDevMode struct.
1546 */
1547 mem = (DEVMODE *)GlobalLock(prt_dlg.hDevMode);
1548 if (mem != NULL)
1549 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 if (mem->dmCopies != 1)
1551 stored_nCopies = mem->dmCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 if ((mem->dmFields & DM_DUPLEX) && (mem->dmDuplex & ~DMDUP_SIMPLEX))
1553 psettings->duplex = TRUE;
1554 if ((mem->dmFields & DM_COLOR) && (mem->dmColor & DMCOLOR_COLOR))
1555 psettings->has_color = TRUE;
1556 }
1557 GlobalUnlock(prt_dlg.hDevMode);
1558
1559 devname = (DEVNAMES *)GlobalLock(prt_dlg.hDevNames);
1560 if (devname != 0)
1561 {
1562 char_u *printer_name = (char_u *)devname + devname->wDeviceOffset;
1563 char_u *port_name = (char_u *)devname +devname->wOutputOffset;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001564 char_u *text = (char_u *)_("to %s on %s");
Bram Moolenaarf191d552014-10-09 17:05:56 +02001565#ifdef FEAT_MBYTE
1566 char_u *printer_name_orig = printer_name;
1567 char_u *port_name_orig = port_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568
Bram Moolenaarf191d552014-10-09 17:05:56 +02001569 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1570 {
1571 char_u *to_free = NULL;
1572 int maxlen;
1573
Bram Moolenaar861d80a2014-10-16 20:35:36 +02001574 acp_to_enc(printer_name, (int)STRLEN(printer_name), &to_free,
1575 &maxlen);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001576 if (to_free != NULL)
1577 printer_name = to_free;
Bram Moolenaar861d80a2014-10-16 20:35:36 +02001578 acp_to_enc(port_name, (int)STRLEN(port_name), &to_free, &maxlen);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001579 if (to_free != NULL)
1580 port_name = to_free;
1581 }
1582#endif
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00001583 prt_name = alloc((unsigned)(STRLEN(printer_name) + STRLEN(port_name)
1584 + STRLEN(text)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 if (prt_name != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001586 wsprintf((char *)prt_name, (const char *)text,
1587 printer_name, port_name);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001588#ifdef FEAT_MBYTE
1589 if (printer_name != printer_name_orig)
1590 vim_free(printer_name);
1591 if (port_name != port_name_orig)
1592 vim_free(port_name);
1593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 }
1595 GlobalUnlock(prt_dlg.hDevNames);
1596
1597 /*
1598 * Initialise the font according to 'printfont'
1599 */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001600 vim_memset(&fLogFont, 0, sizeof(fLogFont));
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001601 if (get_logfont(&fLogFont, p_pfn, prt_dlg.hDC, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 {
1603 EMSG2(_("E613: Unknown printer font: %s"), p_pfn);
1604 mch_print_cleanup();
1605 return FALSE;
1606 }
1607
1608 for (pifBold = 0; pifBold <= 1; pifBold++)
1609 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1610 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1611 {
1612 fLogFont.lfWeight = boldface[pifBold];
1613 fLogFont.lfItalic = pifItalic;
1614 fLogFont.lfUnderline = pifUnderline;
1615 prt_font_handles[pifBold][pifItalic][pifUnderline]
1616 = CreateFontIndirect(&fLogFont);
1617 }
1618
1619 SetBkMode(prt_dlg.hDC, OPAQUE);
1620 SelectObject(prt_dlg.hDC, prt_font_handles[0][0][0]);
1621
1622 /*
1623 * Fill in the settings struct
1624 */
1625 psettings->chars_per_line = prt_get_cpl();
1626 psettings->lines_per_page = prt_get_lpp();
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001627 if (prt_dlg.Flags & PD_USEDEVMODECOPIESANDCOLLATE)
1628 {
1629 psettings->n_collated_copies = (prt_dlg.Flags & PD_COLLATE)
1630 ? prt_dlg.nCopies : 1;
1631 psettings->n_uncollated_copies = (prt_dlg.Flags & PD_COLLATE)
1632 ? 1 : prt_dlg.nCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001634 if (psettings->n_collated_copies == 0)
1635 psettings->n_collated_copies = 1;
1636
1637 if (psettings->n_uncollated_copies == 0)
1638 psettings->n_uncollated_copies = 1;
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01001639 }
1640 else
1641 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 psettings->n_collated_copies = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643 psettings->n_uncollated_copies = 1;
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001644 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645
1646 psettings->jobname = jobname;
1647
1648 return TRUE;
1649
1650init_fail_dlg:
1651 {
1652 DWORD err = CommDlgExtendedError();
1653
1654 if (err)
1655 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 char_u *buf;
1657
1658 /* I suspect FormatMessage() doesn't work for values returned by
1659 * CommDlgExtendedError(). What does? */
1660 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
1661 FORMAT_MESSAGE_FROM_SYSTEM |
1662 FORMAT_MESSAGE_IGNORE_INSERTS,
1663 NULL, err, 0, (LPTSTR)(&buf), 0, NULL);
1664 EMSG2(_("E238: Print error: %s"),
1665 buf == NULL ? (char_u *)_("Unknown") : buf);
1666 LocalFree((LPVOID)(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 }
1668 else
1669 msg_clr_eos(); /* Maybe canceled */
1670
1671 mch_print_cleanup();
1672 return FALSE;
1673 }
1674}
1675
1676
1677 int
1678mch_print_begin(prt_settings_T *psettings)
1679{
1680 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 char szBuffer[300];
Bram Moolenaar2290b1f2018-05-13 17:30:45 +02001682#if defined(FEAT_MBYTE)
1683 WCHAR *wp = NULL;
1684#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685
1686 hDlgPrint = CreateDialog(GetModuleHandle(NULL), TEXT("PrintDlgBox"),
1687 prt_dlg.hwndOwner, PrintDlgProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 SetAbortProc(prt_dlg.hDC, AbortProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 wsprintf(szBuffer, _("Printing '%s'"), gettail(psettings->jobname));
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001690 vimSetDlgItemText(hDlgPrint, IDC_PRINTTEXT1, (char_u *)szBuffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691
Bram Moolenaar2290b1f2018-05-13 17:30:45 +02001692#if defined(FEAT_MBYTE)
1693 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1694 wp = enc_to_utf16(psettings->jobname, NULL);
1695 if (wp != NULL)
1696 {
1697 DOCINFOW di;
1698
1699 vim_memset(&di, 0, sizeof(di));
1700 di.cbSize = sizeof(di);
1701 di.lpszDocName = wp;
1702 ret = StartDocW(prt_dlg.hDC, &di);
1703 vim_free(wp);
1704 }
1705 else
1706#endif
1707 {
1708 DOCINFO di;
1709
1710 vim_memset(&di, 0, sizeof(di));
1711 di.cbSize = sizeof(di);
1712 di.lpszDocName = (LPCSTR)psettings->jobname;
1713 ret = StartDoc(prt_dlg.hDC, &di);
1714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715
1716#ifdef FEAT_GUI
1717 /* Give focus back to main window (when using MDI). */
1718 SetFocus(s_hwnd);
1719#endif
1720
1721 return (ret > 0);
1722}
1723
1724 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001725mch_print_end(prt_settings_T *psettings UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726{
1727 EndDoc(prt_dlg.hDC);
1728 if (!*bUserAbort)
1729 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1730}
1731
1732 int
1733mch_print_end_page(void)
1734{
1735 return (EndPage(prt_dlg.hDC) > 0);
1736}
1737
1738 int
1739mch_print_begin_page(char_u *msg)
1740{
1741 if (msg != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001742 vimSetDlgItemText(hDlgPrint, IDC_PROGRESS, msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 return (StartPage(prt_dlg.hDC) > 0);
1744}
1745
1746 int
1747mch_print_blank_page(void)
1748{
1749 return (mch_print_begin_page(NULL) ? (mch_print_end_page()) : FALSE);
1750}
1751
1752static int prt_pos_x = 0;
1753static int prt_pos_y = 0;
1754
1755 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001756mch_print_start_line(int margin, int page_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757{
1758 if (margin)
1759 prt_pos_x = -prt_number_width;
1760 else
1761 prt_pos_x = 0;
1762 prt_pos_y = page_line * prt_line_height
1763 + prt_tm.tmAscent + prt_tm.tmExternalLeading;
1764}
1765
1766 int
1767mch_print_text_out(char_u *p, int len)
1768{
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001769#if defined(FEAT_PROPORTIONAL_FONTS) || defined(FEAT_MBYTE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 SIZE sz;
1771#endif
Bram Moolenaarcf7164a2016-02-20 13:55:06 +01001772#if defined(FEAT_MBYTE)
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001773 WCHAR *wp = NULL;
1774 int wlen = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001776 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1777 {
1778 wp = enc_to_utf16(p, &wlen);
1779 }
1780 if (wp != NULL)
1781 {
1782 int ret = FALSE;
1783
1784 TextOutW(prt_dlg.hDC, prt_pos_x + prt_left_margin,
1785 prt_pos_y + prt_top_margin, wp, wlen);
1786 GetTextExtentPoint32W(prt_dlg.hDC, wp, wlen, &sz);
1787 vim_free(wp);
1788 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1789 /* This is wrong when printing spaces for a TAB. */
1790 if (p[len] != NUL)
1791 {
1792 wlen = MB_PTR2LEN(p + len);
1793 wp = enc_to_utf16(p + len, &wlen);
1794 if (wp != NULL)
1795 {
1796 GetTextExtentPoint32W(prt_dlg.hDC, wp, 1, &sz);
1797 ret = (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1798 vim_free(wp);
1799 }
1800 }
1801 return ret;
1802 }
1803#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 TextOut(prt_dlg.hDC, prt_pos_x + prt_left_margin,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001805 prt_pos_y + prt_top_margin,
1806 (LPCSTR)p, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807#ifndef FEAT_PROPORTIONAL_FONTS
1808 prt_pos_x += len * prt_tm.tmAveCharWidth;
1809 return (prt_pos_x + prt_left_margin + prt_tm.tmAveCharWidth
1810 + prt_tm.tmOverhang > prt_right_margin);
1811#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001812 GetTextExtentPoint32(prt_dlg.hDC, (LPCSTR)p, len, &sz);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1814 /* This is wrong when printing spaces for a TAB. */
1815 if (p[len] == NUL)
1816 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 GetTextExtentPoint32(prt_dlg.hDC, p + len, 1, &sz);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 return (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1819#endif
1820}
1821
1822 void
1823mch_print_set_font(int iBold, int iItalic, int iUnderline)
1824{
1825 SelectObject(prt_dlg.hDC, prt_font_handles[iBold][iItalic][iUnderline]);
1826}
1827
1828 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001829mch_print_set_bg(long_u bgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001831 SetBkColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1832 swap_me((COLORREF)bgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 /*
1834 * With a white background we can draw characters transparent, which is
1835 * good for italic characters that overlap to the next char cell.
1836 */
1837 if (bgcol == 0xffffffUL)
1838 SetBkMode(prt_dlg.hDC, TRANSPARENT);
1839 else
1840 SetBkMode(prt_dlg.hDC, OPAQUE);
1841}
1842
1843 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001844mch_print_set_fg(long_u fgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001846 SetTextColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1847 swap_me((COLORREF)fgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848}
1849
1850#endif /*FEAT_PRINTER && !FEAT_POSTSCRIPT*/
1851
Bram Moolenaar58d98232005-07-23 22:25:46 +00001852
1853
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854#if defined(FEAT_SHORTCUT) || defined(PROTO)
Bram Moolenaar82881492012-11-20 16:53:39 +01001855# ifndef PROTO
1856# include <shlobj.h>
1857# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858
1859/*
1860 * When "fname" is the name of a shortcut (*.lnk) resolve the file it points
1861 * to and return that name in allocated memory.
1862 * Otherwise NULL is returned.
1863 */
1864 char_u *
1865mch_resolve_shortcut(char_u *fname)
1866{
1867 HRESULT hr;
1868 IShellLink *psl = NULL;
1869 IPersistFile *ppf = NULL;
1870 OLECHAR wsz[MAX_PATH];
1871 WIN32_FIND_DATA ffd; // we get those free of charge
Bram Moolenaar604729e2013-08-30 16:44:19 +02001872 CHAR buf[MAX_PATH]; // could have simply reused 'wsz'...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 char_u *rfname = NULL;
1874 int len;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001875# ifdef FEAT_MBYTE
1876 IShellLinkW *pslw = NULL;
1877 WIN32_FIND_DATAW ffdw; // we get those free of charge
1878# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879
1880 /* Check if the file name ends in ".lnk". Avoid calling
1881 * CoCreateInstance(), it's quite slow. */
1882 if (fname == NULL)
1883 return rfname;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001884 len = (int)STRLEN(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 if (len <= 4 || STRNICMP(fname + len - 4, ".lnk", 4) != 0)
1886 return rfname;
1887
1888 CoInitialize(NULL);
1889
Bram Moolenaar604729e2013-08-30 16:44:19 +02001890# ifdef FEAT_MBYTE
1891 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1892 {
1893 // create a link manager object and request its interface
1894 hr = CoCreateInstance(
1895 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1896 &IID_IShellLinkW, (void**)&pslw);
1897 if (hr == S_OK)
1898 {
1899 WCHAR *p = enc_to_utf16(fname, NULL);
1900
1901 if (p != NULL)
1902 {
1903 // Get a pointer to the IPersistFile interface.
1904 hr = pslw->lpVtbl->QueryInterface(
1905 pslw, &IID_IPersistFile, (void**)&ppf);
1906 if (hr != S_OK)
1907 goto shortcut_errorw;
1908
1909 // "load" the name and resolve the link
1910 hr = ppf->lpVtbl->Load(ppf, p, STGM_READ);
1911 if (hr != S_OK)
1912 goto shortcut_errorw;
1913# if 0 // This makes Vim wait a long time if the target does not exist.
1914 hr = pslw->lpVtbl->Resolve(pslw, NULL, SLR_NO_UI);
1915 if (hr != S_OK)
1916 goto shortcut_errorw;
1917# endif
1918
1919 // Get the path to the link target.
1920 ZeroMemory(wsz, MAX_PATH * sizeof(WCHAR));
1921 hr = pslw->lpVtbl->GetPath(pslw, wsz, MAX_PATH, &ffdw, 0);
1922 if (hr == S_OK && wsz[0] != NUL)
1923 rfname = utf16_to_enc(wsz, NULL);
1924
1925shortcut_errorw:
1926 vim_free(p);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01001927 goto shortcut_end;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001928 }
1929 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001930 goto shortcut_end;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001931 }
1932# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 // create a link manager object and request its interface
1934 hr = CoCreateInstance(
1935 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
1936 &IID_IShellLink, (void**)&psl);
1937 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001938 goto shortcut_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939
1940 // Get a pointer to the IPersistFile interface.
1941 hr = psl->lpVtbl->QueryInterface(
1942 psl, &IID_IPersistFile, (void**)&ppf);
1943 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001944 goto shortcut_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945
1946 // full path string must be in Unicode.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001947 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)fname, -1, wsz, MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00001949 // "load" the name and resolve the link
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 hr = ppf->lpVtbl->Load(ppf, wsz, STGM_READ);
1951 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001952 goto shortcut_end;
1953# if 0 // This makes Vim wait a long time if the target doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 hr = psl->lpVtbl->Resolve(psl, NULL, SLR_NO_UI);
1955 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02001956 goto shortcut_end;
1957# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958
1959 // Get the path to the link target.
1960 ZeroMemory(buf, MAX_PATH);
1961 hr = psl->lpVtbl->GetPath(psl, buf, MAX_PATH, &ffd, 0);
1962 if (hr == S_OK && buf[0] != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001963 rfname = vim_strsave((char_u *)buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964
Bram Moolenaar604729e2013-08-30 16:44:19 +02001965shortcut_end:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 // Release all interface pointers (both belong to the same object)
1967 if (ppf != NULL)
1968 ppf->lpVtbl->Release(ppf);
1969 if (psl != NULL)
1970 psl->lpVtbl->Release(psl);
Bram Moolenaar604729e2013-08-30 16:44:19 +02001971# ifdef FEAT_MBYTE
1972 if (pslw != NULL)
1973 pslw->lpVtbl->Release(pslw);
1974# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975
1976 CoUninitialize();
1977 return rfname;
1978}
1979#endif
1980
1981#if (defined(FEAT_EVAL) && !defined(FEAT_GUI)) || defined(PROTO)
1982/*
1983 * Bring ourselves to the foreground. Does work if the OS doesn't allow it.
1984 */
1985 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001986win32_set_foreground(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987{
1988# ifndef FEAT_GUI
1989 GetConsoleHwnd(); /* get value of s_hwnd */
1990# endif
1991 if (s_hwnd != 0)
1992 SetForegroundWindow(s_hwnd);
1993}
1994#endif
1995
1996#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
1997/*
1998 * Client-server code for Vim
1999 *
2000 * Originally written by Paul Moore
2001 */
2002
2003/* In order to handle inter-process messages, we need to have a window. But
2004 * the functions in this module can be called before the main GUI window is
2005 * created (and may also be called in the console version, where there is no
2006 * GUI window at all).
2007 *
2008 * So we create a hidden window, and arrange to destroy it on exit.
2009 */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002010HWND message_window = 0; /* window that's handling messages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011
2012#define VIM_CLASSNAME "VIM_MESSAGES"
2013#define VIM_CLASSNAME_LEN (sizeof(VIM_CLASSNAME) - 1)
2014
2015/* Communication is via WM_COPYDATA messages. The message type is send in
2016 * the dwData parameter. Types are defined here. */
2017#define COPYDATA_KEYS 0
2018#define COPYDATA_REPLY 1
2019#define COPYDATA_EXPR 10
2020#define COPYDATA_RESULT 11
2021#define COPYDATA_ERROR_RESULT 12
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002022#define COPYDATA_ENCODING 20
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023
2024/* This is a structure containing a server HWND and its name. */
2025struct server_id
2026{
2027 HWND hwnd;
2028 char_u *name;
2029};
2030
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002031/* Last received 'encoding' that the client uses. */
2032static char_u *client_enc = NULL;
2033
2034/*
2035 * Tell the other side what encoding we are using.
2036 * Errors are ignored.
2037 */
2038 static void
2039serverSendEnc(HWND target)
2040{
2041 COPYDATASTRUCT data;
2042
2043 data.dwData = COPYDATA_ENCODING;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002044#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002045 data.cbData = (DWORD)STRLEN(p_enc) + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002046 data.lpData = p_enc;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002047#else
Bram Moolenaar8765a4a2010-07-27 22:41:43 +02002048 data.cbData = (DWORD)STRLEN("latin1") + 1;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002049 data.lpData = "latin1";
2050#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002051 (void)SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2052 (LPARAM)(&data));
2053}
2054
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055/*
2056 * Clean up on exit. This destroys the hidden message window.
2057 */
2058 static void
2059#ifdef __BORLANDC__
2060 _RTLENTRYF
2061#endif
2062CleanUpMessaging(void)
2063{
2064 if (message_window != 0)
2065 {
2066 DestroyWindow(message_window);
2067 message_window = 0;
2068 }
2069}
2070
2071static int save_reply(HWND server, char_u *reply, int expr);
2072
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002073/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 * The window procedure for the hidden message window.
2075 * It handles callback messages and notifications from servers.
2076 * In order to process these messages, it is necessary to run a
2077 * message loop. Code which may run before the main message loop
2078 * is started (in the GUI) is careful to pump messages when it needs
2079 * to. Features which require message delivery during normal use will
2080 * not work in the console version - this basically means those
2081 * features which allow Vim to act as a server, rather than a client.
2082 */
2083 static LRESULT CALLBACK
2084Messaging_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
2085{
2086 if (msg == WM_COPYDATA)
2087 {
2088 /* This is a message from another Vim. The dwData member of the
2089 * COPYDATASTRUCT determines the type of message:
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002090 * COPYDATA_ENCODING:
2091 * The encoding that the client uses. Following messages will
2092 * use this encoding, convert if needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 * COPYDATA_KEYS:
2094 * A key sequence. We are a server, and a client wants these keys
2095 * adding to the input queue.
2096 * COPYDATA_REPLY:
2097 * A reply. We are a client, and a server has sent this message
2098 * in response to a request. (server2client())
2099 * COPYDATA_EXPR:
2100 * An expression. We are a server, and a client wants us to
2101 * evaluate this expression.
2102 * COPYDATA_RESULT:
2103 * A reply. We are a client, and a server has sent this message
2104 * in response to a COPYDATA_EXPR.
2105 * COPYDATA_ERROR_RESULT:
2106 * A reply. We are a client, and a server has sent this message
2107 * in response to a COPYDATA_EXPR that failed to evaluate.
2108 */
2109 COPYDATASTRUCT *data = (COPYDATASTRUCT*)lParam;
2110 HWND sender = (HWND)wParam;
2111 COPYDATASTRUCT reply;
2112 char_u *res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113 int retval;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002114 char_u *str;
2115 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116
2117 switch (data->dwData)
2118 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002119 case COPYDATA_ENCODING:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002120# ifdef FEAT_MBYTE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002121 /* Remember the encoding that the client uses. */
2122 vim_free(client_enc);
2123 client_enc = enc_canonize((char_u *)data->lpData);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002124# endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002125 return 1;
2126
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 case COPYDATA_KEYS:
2128 /* Remember who sent this, for <client> */
2129 clientWindow = sender;
2130
2131 /* Add the received keys to the input buffer. The loop waiting
2132 * for the user to do something should check the input buffer. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002133 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2134 server_to_input_buf(str);
2135 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136
2137# ifdef FEAT_GUI
2138 /* Wake up the main GUI loop. */
2139 if (s_hwnd != 0)
2140 PostMessage(s_hwnd, WM_NULL, 0, 0);
2141# endif
2142 return 1;
2143
2144 case COPYDATA_EXPR:
2145 /* Remember who sent this, for <client> */
2146 clientWindow = sender;
2147
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002148 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2149 res = eval_client_expr_to_string(str);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002150
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 if (res == NULL)
2152 {
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002153 char *err = _(e_invexprmsg);
2154 size_t len = STRLEN(str) + STRLEN(err) + 5;
2155
Bram Moolenaar1662ce12017-03-19 21:47:50 +01002156 res = alloc((unsigned)len);
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002157 if (res != NULL)
2158 vim_snprintf((char *)res, len, "%s: \"%s\"", err, str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 reply.dwData = COPYDATA_ERROR_RESULT;
2160 }
2161 else
2162 reply.dwData = COPYDATA_RESULT;
2163 reply.lpData = res;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002164 reply.cbData = (DWORD)STRLEN(res) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002166 serverSendEnc(sender);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02002167 retval = (int)SendMessage(sender, WM_COPYDATA,
2168 (WPARAM)message_window, (LPARAM)(&reply));
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002169 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 vim_free(res);
2171 return retval;
2172
2173 case COPYDATA_REPLY:
2174 case COPYDATA_RESULT:
2175 case COPYDATA_ERROR_RESULT:
2176 if (data->lpData != NULL)
2177 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002178 str = serverConvert(client_enc, (char_u *)data->lpData,
2179 &tofree);
2180 if (tofree == NULL)
2181 str = vim_strsave(str);
2182 if (save_reply(sender, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 (data->dwData == COPYDATA_REPLY ? 0 :
2184 (data->dwData == COPYDATA_RESULT ? 1 :
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002185 2))) == FAIL)
2186 vim_free(str);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002187 else if (data->dwData == COPYDATA_REPLY)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 {
Bram Moolenaar427d51c2013-06-16 16:01:25 +02002189 char_u winstr[30];
2190
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002191 sprintf((char *)winstr, PRINTF_HEX_LONG_U, (long_u)sender);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002192 apply_autocmds(EVENT_REMOTEREPLY, winstr, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 TRUE, curbuf);
2194 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 }
2196 return 1;
2197 }
2198
2199 return 0;
2200 }
2201
2202 else if (msg == WM_ACTIVATE && wParam == WA_ACTIVE)
2203 {
2204 /* When the message window is activated (brought to the foreground),
2205 * this actually applies to the text window. */
2206#ifndef FEAT_GUI
2207 GetConsoleHwnd(); /* get value of s_hwnd */
2208#endif
2209 if (s_hwnd != 0)
2210 {
2211 SetForegroundWindow(s_hwnd);
2212 return 0;
2213 }
2214 }
2215
2216 return DefWindowProc(hwnd, msg, wParam, lParam);
2217}
2218
2219/*
2220 * Initialise the message handling process. This involves creating a window
2221 * to handle messages - the window will not be visible.
2222 */
2223 void
2224serverInitMessaging(void)
2225{
2226 WNDCLASS wndclass;
2227 HINSTANCE s_hinst;
2228
2229 /* Clean up on exit */
2230 atexit(CleanUpMessaging);
2231
2232 /* Register a window class - we only really care
2233 * about the window procedure
2234 */
2235 s_hinst = (HINSTANCE)GetModuleHandle(0);
2236 wndclass.style = 0;
2237 wndclass.lpfnWndProc = Messaging_WndProc;
2238 wndclass.cbClsExtra = 0;
2239 wndclass.cbWndExtra = 0;
2240 wndclass.hInstance = s_hinst;
2241 wndclass.hIcon = NULL;
2242 wndclass.hCursor = NULL;
2243 wndclass.hbrBackground = NULL;
2244 wndclass.lpszMenuName = NULL;
2245 wndclass.lpszClassName = VIM_CLASSNAME;
2246 RegisterClass(&wndclass);
2247
2248 /* Create the message window. It will be hidden, so the details don't
2249 * matter. Don't use WS_OVERLAPPEDWINDOW, it will make a shortcut remove
2250 * focus from gvim. */
2251 message_window = CreateWindow(VIM_CLASSNAME, "",
2252 WS_POPUPWINDOW | WS_CAPTION,
2253 CW_USEDEFAULT, CW_USEDEFAULT,
2254 100, 100, NULL, NULL,
2255 s_hinst, NULL);
2256}
2257
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002258/* Used by serverSendToVim() to find an alternate server name. */
2259static char_u *altname_buf_ptr = NULL;
2260
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261/*
2262 * Get the title of the window "hwnd", which is the Vim server name, in
2263 * "name[namelen]" and return the length.
2264 * Returns zero if window "hwnd" is not a Vim server.
2265 */
2266 static int
2267getVimServerName(HWND hwnd, char *name, int namelen)
2268{
2269 int len;
2270 char buffer[VIM_CLASSNAME_LEN + 1];
2271
2272 /* Ignore windows which aren't Vim message windows */
2273 len = GetClassName(hwnd, buffer, sizeof(buffer));
2274 if (len != VIM_CLASSNAME_LEN || STRCMP(buffer, VIM_CLASSNAME) != 0)
2275 return 0;
2276
2277 /* Get the title of the window */
2278 return GetWindowText(hwnd, name, namelen);
2279}
2280
2281 static BOOL CALLBACK
2282enumWindowsGetServer(HWND hwnd, LPARAM lparam)
2283{
2284 struct server_id *id = (struct server_id *)lparam;
2285 char server[MAX_PATH];
2286
2287 /* Get the title of the window */
2288 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2289 return TRUE;
2290
2291 /* If this is the server we're looking for, return its HWND */
2292 if (STRICMP(server, id->name) == 0)
2293 {
2294 id->hwnd = hwnd;
2295 return FALSE;
2296 }
2297
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002298 /* If we are looking for an alternate server, remember this name. */
2299 if (altname_buf_ptr != NULL
2300 && STRNICMP(server, id->name, STRLEN(id->name)) == 0
2301 && vim_isdigit(server[STRLEN(id->name)]))
2302 {
2303 STRCPY(altname_buf_ptr, server);
2304 altname_buf_ptr = NULL; /* don't use another name */
2305 }
2306
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 /* Otherwise, keep looking */
2308 return TRUE;
2309}
2310
2311 static BOOL CALLBACK
2312enumWindowsGetNames(HWND hwnd, LPARAM lparam)
2313{
2314 garray_T *ga = (garray_T *)lparam;
2315 char server[MAX_PATH];
2316
2317 /* Get the title of the window */
2318 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2319 return TRUE;
2320
2321 /* Add the name to the list */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002322 ga_concat(ga, (char_u *)server);
2323 ga_concat(ga, (char_u *)"\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 return TRUE;
2325}
2326
2327 static HWND
2328findServer(char_u *name)
2329{
2330 struct server_id id;
2331
2332 id.name = name;
2333 id.hwnd = 0;
2334
2335 EnumWindows(enumWindowsGetServer, (LPARAM)(&id));
2336
2337 return id.hwnd;
2338}
2339
2340 void
2341serverSetName(char_u *name)
2342{
2343 char_u *ok_name;
2344 HWND hwnd = 0;
2345 int i = 0;
2346 char_u *p;
2347
2348 /* Leave enough space for a 9-digit suffix to ensure uniqueness! */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002349 ok_name = alloc((unsigned)STRLEN(name) + 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350
2351 STRCPY(ok_name, name);
2352 p = ok_name + STRLEN(name);
2353
2354 for (;;)
2355 {
2356 /* This is inefficient - we're doing an EnumWindows loop for each
2357 * possible name. It would be better to grab all names in one go,
2358 * and scan the list each time...
2359 */
2360 hwnd = findServer(ok_name);
2361 if (hwnd == 0)
2362 break;
2363
2364 ++i;
2365 if (i >= 1000)
2366 break;
2367
2368 sprintf((char *)p, "%d", i);
2369 }
2370
2371 if (hwnd != 0)
2372 vim_free(ok_name);
2373 else
2374 {
2375 /* Remember the name */
2376 serverName = ok_name;
2377#ifdef FEAT_TITLE
2378 need_maketitle = TRUE; /* update Vim window title later */
2379#endif
2380
2381 /* Update the message window title */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002382 SetWindowText(message_window, (LPCSTR)ok_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383
2384#ifdef FEAT_EVAL
2385 /* Set the servername variable */
2386 set_vim_var_string(VV_SEND_SERVER, serverName, -1);
2387#endif
2388 }
2389}
2390
2391 char_u *
2392serverGetVimNames(void)
2393{
2394 garray_T ga;
2395
2396 ga_init2(&ga, 1, 100);
2397
2398 EnumWindows(enumWindowsGetNames, (LPARAM)(&ga));
Bram Moolenaar269ec652004-07-29 08:43:53 +00002399 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400
2401 return ga.ga_data;
2402}
2403
2404 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002405serverSendReply(
2406 char_u *name, /* Where to send. */
2407 char_u *reply) /* What to send. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408{
2409 HWND target;
2410 COPYDATASTRUCT data;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002411 long_u n = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412
2413 /* The "name" argument is a magic cookie obtained from expand("<client>").
2414 * It should be of the form 0xXXXXX - i.e. a C hex literal, which is the
2415 * value of the client's message window HWND.
2416 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002417 sscanf((char *)name, SCANF_HEX_LONG_U, &n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 if (n == 0)
2419 return -1;
2420
2421 target = (HWND)n;
2422 if (!IsWindow(target))
2423 return -1;
2424
2425 data.dwData = COPYDATA_REPLY;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002426 data.cbData = (DWORD)STRLEN(reply) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 data.lpData = reply;
2428
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002429 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2431 (LPARAM)(&data)))
2432 return 0;
2433
2434 return -1;
2435}
2436
2437 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002438serverSendToVim(
2439 char_u *name, /* Where to send. */
2440 char_u *cmd, /* What to send. */
2441 char_u **result, /* Result of eval'ed expression */
2442 void *ptarget, /* HWND of server */
2443 int asExpr, /* Expression or keys? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002444 int timeout, /* timeout in seconds or zero */
Bram Moolenaar05540972016-01-30 20:31:25 +01002445 int silent) /* don't complain about no server */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446{
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002447 HWND target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 COPYDATASTRUCT data;
2449 char_u *retval = NULL;
2450 int retcode = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002451 char_u altname_buf[MAX_PATH];
2452
Bram Moolenaar7416f3e2017-03-18 18:10:13 +01002453 /* Execute locally if no display or target is ourselves */
2454 if (serverName != NULL && STRICMP(name, serverName) == 0)
2455 return sendToLocalVim(cmd, asExpr, result);
2456
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002457 /* If the server name does not end in a digit then we look for an
2458 * alternate name. e.g. when "name" is GVIM the we may find GVIM2. */
2459 if (STRLEN(name) > 1 && !vim_isdigit(name[STRLEN(name) - 1]))
2460 altname_buf_ptr = altname_buf;
2461 altname_buf[0] = NUL;
2462 target = findServer(name);
2463 altname_buf_ptr = NULL;
2464 if (target == 0 && altname_buf[0] != NUL)
2465 /* Use another server name we found. */
2466 target = findServer(altname_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467
2468 if (target == 0)
2469 {
2470 if (!silent)
2471 EMSG2(_(e_noserver), name);
2472 return -1;
2473 }
2474
2475 if (ptarget)
2476 *(HWND *)ptarget = target;
2477
2478 data.dwData = asExpr ? COPYDATA_EXPR : COPYDATA_KEYS;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002479 data.cbData = (DWORD)STRLEN(cmd) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 data.lpData = cmd;
2481
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002482 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2484 (LPARAM)(&data)) == 0)
2485 return -1;
2486
2487 if (asExpr)
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002488 retval = serverGetReply(target, &retcode, TRUE, TRUE, timeout);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489
2490 if (result == NULL)
2491 vim_free(retval);
2492 else
2493 *result = retval; /* Caller assumes responsibility for freeing */
2494
2495 return retcode;
2496}
2497
2498/*
2499 * Bring the server to the foreground.
2500 */
2501 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002502serverForeground(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503{
2504 HWND target = findServer(name);
2505
2506 if (target != 0)
2507 SetForegroundWindow(target);
2508}
2509
2510/* Replies from server need to be stored until the client picks them up via
2511 * remote_read(). So we maintain a list of server-id/reply pairs.
2512 * Note that there could be multiple replies from one server pending if the
2513 * client is slow picking them up.
2514 * We just store the replies in a simple list. When we remove an entry, we
2515 * move list entries down to fill the gap.
2516 * The server ID is simply the HWND.
2517 */
2518typedef struct
2519{
2520 HWND server; /* server window */
2521 char_u *reply; /* reply string */
2522 int expr_result; /* 0 for REPLY, 1 for RESULT 2 for error */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002523} reply_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524
2525static garray_T reply_list = {0, 0, sizeof(reply_T), 5, 0};
2526
2527#define REPLY_ITEM(i) ((reply_T *)(reply_list.ga_data) + (i))
2528#define REPLY_COUNT (reply_list.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529
2530/* Flag which is used to wait for a reply */
2531static int reply_received = 0;
2532
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002533/*
2534 * Store a reply. "reply" must be allocated memory (or NULL).
2535 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 static int
2537save_reply(HWND server, char_u *reply, int expr)
2538{
2539 reply_T *rep;
2540
2541 if (ga_grow(&reply_list, 1) == FAIL)
2542 return FAIL;
2543
2544 rep = REPLY_ITEM(REPLY_COUNT);
2545 rep->server = server;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002546 rep->reply = reply;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 rep->expr_result = expr;
2548 if (rep->reply == NULL)
2549 return FAIL;
2550
2551 ++REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 reply_received = 1;
2553 return OK;
2554}
2555
2556/*
2557 * Get a reply from server "server".
2558 * When "expr_res" is non NULL, get the result of an expression, otherwise a
2559 * server2client() message.
2560 * When non NULL, point to return code. 0 => OK, -1 => ERROR
2561 * If "remove" is TRUE, consume the message, the caller must free it then.
2562 * if "wait" is TRUE block until a message arrives (or the server exits).
2563 */
2564 char_u *
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002565serverGetReply(HWND server, int *expr_res, int remove, int wait, int timeout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566{
2567 int i;
2568 char_u *reply;
2569 reply_T *rep;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002570 int did_process = FALSE;
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002571 time_t start;
2572 time_t now;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573
2574 /* When waiting, loop until the message waiting for is received. */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002575 time(&start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 for (;;)
2577 {
2578 /* Reset this here, in case a message arrives while we are going
2579 * through the already received messages. */
2580 reply_received = 0;
2581
2582 for (i = 0; i < REPLY_COUNT; ++i)
2583 {
2584 rep = REPLY_ITEM(i);
2585 if (rep->server == server
2586 && ((rep->expr_result != 0) == (expr_res != NULL)))
2587 {
2588 /* Save the values we've found for later */
2589 reply = rep->reply;
2590 if (expr_res != NULL)
2591 *expr_res = rep->expr_result == 1 ? 0 : -1;
2592
2593 if (remove)
2594 {
2595 /* Move the rest of the list down to fill the gap */
2596 mch_memmove(rep, rep + 1,
2597 (REPLY_COUNT - i - 1) * sizeof(reply_T));
2598 --REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 }
2600
2601 /* Return the reply to the caller, who takes on responsibility
2602 * for freeing it if "remove" is TRUE. */
2603 return reply;
2604 }
2605 }
2606
2607 /* If we got here, we didn't find a reply. Return immediately if the
2608 * "wait" parameter isn't set. */
2609 if (!wait)
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002610 {
2611 /* Process pending messages once. Without this, looping on
2612 * remote_peek() would never get the reply. */
2613 if (!did_process)
2614 {
2615 did_process = TRUE;
2616 serverProcessPendingMessages();
2617 continue;
2618 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 break;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002620 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621
2622 /* We need to wait for a reply. Enter a message loop until the
2623 * "reply_received" flag gets set. */
2624
2625 /* Loop until we receive a reply */
2626 while (reply_received == 0)
2627 {
Bram Moolenaar42205552017-03-18 19:42:22 +01002628#ifdef FEAT_TIMERS
Bram Moolenaard23a8232018-02-10 18:45:26 +01002629 /* TODO: use the return value to decide how long to wait. */
Bram Moolenaar42205552017-03-18 19:42:22 +01002630 check_due_timer();
2631#endif
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002632 time(&now);
2633 if (timeout > 0 && (now - start) >= timeout)
2634 break;
2635
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 /* Wait for a SendMessage() call to us. This could be the reply
2637 * we are waiting for. Use a timeout of a second, to catch the
2638 * situation that the server died unexpectedly. */
2639 MsgWaitForMultipleObjects(0, NULL, TRUE, 1000, QS_ALLINPUT);
2640
2641 /* If the server has died, give up */
2642 if (!IsWindow(server))
2643 return NULL;
2644
2645 serverProcessPendingMessages();
2646 }
2647 }
2648
2649 return NULL;
2650}
2651
2652/*
2653 * Process any messages in the Windows message queue.
2654 */
2655 void
2656serverProcessPendingMessages(void)
2657{
2658 MSG msg;
2659
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002660 while (pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 {
2662 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002663 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 }
2665}
2666
2667#endif /* FEAT_CLIENTSERVER */
2668
2669#if defined(FEAT_GUI) || (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) \
2670 || defined(PROTO)
2671
2672struct charset_pair
2673{
2674 char *name;
2675 BYTE charset;
2676};
2677
2678static struct charset_pair
2679charset_pairs[] =
2680{
2681 {"ANSI", ANSI_CHARSET},
2682 {"CHINESEBIG5", CHINESEBIG5_CHARSET},
2683 {"DEFAULT", DEFAULT_CHARSET},
2684 {"HANGEUL", HANGEUL_CHARSET},
2685 {"OEM", OEM_CHARSET},
2686 {"SHIFTJIS", SHIFTJIS_CHARSET},
2687 {"SYMBOL", SYMBOL_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 {"ARABIC", ARABIC_CHARSET},
2689 {"BALTIC", BALTIC_CHARSET},
2690 {"EASTEUROPE", EASTEUROPE_CHARSET},
2691 {"GB2312", GB2312_CHARSET},
2692 {"GREEK", GREEK_CHARSET},
2693 {"HEBREW", HEBREW_CHARSET},
2694 {"JOHAB", JOHAB_CHARSET},
2695 {"MAC", MAC_CHARSET},
2696 {"RUSSIAN", RUSSIAN_CHARSET},
2697 {"THAI", THAI_CHARSET},
2698 {"TURKISH", TURKISH_CHARSET},
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002699#ifdef VIETNAMESE_CHARSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700 {"VIETNAMESE", VIETNAMESE_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701#endif
2702 {NULL, 0}
2703};
2704
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002705struct quality_pair
2706{
2707 char *name;
2708 DWORD quality;
2709};
2710
2711static struct quality_pair
2712quality_pairs[] = {
2713#ifdef CLEARTYPE_QUALITY
2714 {"CLEARTYPE", CLEARTYPE_QUALITY},
2715#endif
2716#ifdef ANTIALIASED_QUALITY
2717 {"ANTIALIASED", ANTIALIASED_QUALITY},
2718#endif
Bram Moolenaar73a733e2016-05-11 21:05:05 +02002719#ifdef NONANTIALIASED_QUALITY
2720 {"NONANTIALIASED", NONANTIALIASED_QUALITY},
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002721#endif
2722#ifdef PROOF_QUALITY
2723 {"PROOF", PROOF_QUALITY},
2724#endif
Bram Moolenaar4c9ce052016-04-04 21:06:19 +02002725#ifdef DRAFT_QUALITY
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002726 {"DRAFT", DRAFT_QUALITY},
2727#endif
2728 {"DEFAULT", DEFAULT_QUALITY},
2729 {NULL, 0}
2730};
2731
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732/*
2733 * Convert a charset ID to a name.
2734 * Return NULL when not recognized.
2735 */
2736 char *
2737charset_id2name(int id)
2738{
2739 struct charset_pair *cp;
2740
2741 for (cp = charset_pairs; cp->name != NULL; ++cp)
2742 if ((BYTE)id == cp->charset)
2743 break;
2744 return cp->name;
2745}
2746
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002747/*
2748 * Convert a quality ID to a name.
2749 * Return NULL when not recognized.
2750 */
2751 char *
2752quality_id2name(DWORD id)
2753{
2754 struct quality_pair *qp;
2755
2756 for (qp = quality_pairs; qp->name != NULL; ++qp)
2757 if (id == qp->quality)
2758 break;
2759 return qp->name;
2760}
2761
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762static const LOGFONT s_lfDefault =
2763{
2764 -12, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, DEFAULT_CHARSET,
2765 OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
2766 PROOF_QUALITY, FIXED_PITCH | FF_DONTCARE,
2767 "Fixedsys" /* see _ReadVimIni */
2768};
2769
2770/* Initialise the "current height" to -12 (same as s_lfDefault) just
2771 * in case the user specifies a font in "guifont" with no size before a font
2772 * with an explicit size has been set. This defaults the size to this value
2773 * (-12 equates to roughly 9pt).
2774 */
2775int current_font_height = -12; /* also used in gui_w48.c */
2776
2777/* Convert a string representing a point size into pixels. The string should
2778 * be a positive decimal number, with an optional decimal point (eg, "12", or
2779 * "10.5"). The pixel value is returned, and a pointer to the next unconverted
2780 * character is stored in *end. The flag "vertical" says whether this
2781 * calculation is for a vertical (height) size or a horizontal (width) one.
2782 */
2783 static int
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002784points_to_pixels(char_u *str, char_u **end, int vertical, long_i pprinter_dc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785{
2786 int pixels;
2787 int points = 0;
2788 int divisor = 0;
2789 HWND hwnd = (HWND)0;
2790 HDC hdc;
2791 HDC printer_dc = (HDC)pprinter_dc;
2792
2793 while (*str != NUL)
2794 {
2795 if (*str == '.' && divisor == 0)
2796 {
2797 /* Start keeping a divisor, for later */
2798 divisor = 1;
2799 }
2800 else
2801 {
2802 if (!VIM_ISDIGIT(*str))
2803 break;
2804
2805 points *= 10;
2806 points += *str - '0';
2807 divisor *= 10;
2808 }
2809 ++str;
2810 }
2811
2812 if (divisor == 0)
2813 divisor = 1;
2814
2815 if (printer_dc == NULL)
2816 {
2817 hwnd = GetDesktopWindow();
2818 hdc = GetWindowDC(hwnd);
2819 }
2820 else
2821 hdc = printer_dc;
2822
2823 pixels = MulDiv(points,
2824 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX),
2825 72 * divisor);
2826
2827 if (printer_dc == NULL)
2828 ReleaseDC(hwnd, hdc);
2829
2830 *end = str;
2831 return pixels;
2832}
2833
2834 static int CALLBACK
2835font_enumproc(
2836 ENUMLOGFONT *elf,
Bram Moolenaar1266d672017-02-01 13:43:36 +01002837 NEWTEXTMETRIC *ntm UNUSED,
2838 int type UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 LPARAM lparam)
2840{
2841 /* Return value:
2842 * 0 = terminate now (monospace & ANSI)
2843 * 1 = continue, still no luck...
2844 * 2 = continue, but we have an acceptable LOGFONT
2845 * (monospace, not ANSI)
2846 * We use these values, as EnumFontFamilies returns 1 if the
2847 * callback function is never called. So, we check the return as
2848 * 0 = perfect, 2 = OK, 1 = no good...
2849 * It's not pretty, but it works!
2850 */
2851
2852 LOGFONT *lf = (LOGFONT *)(lparam);
2853
2854#ifndef FEAT_PROPORTIONAL_FONTS
2855 /* Ignore non-monospace fonts without further ado */
2856 if ((ntm->tmPitchAndFamily & 1) != 0)
2857 return 1;
2858#endif
2859
2860 /* Remember this LOGFONT as a "possible" */
2861 *lf = elf->elfLogFont;
2862
2863 /* Terminate the scan as soon as we find an ANSI font */
2864 if (lf->lfCharSet == ANSI_CHARSET
2865 || lf->lfCharSet == OEM_CHARSET
2866 || lf->lfCharSet == DEFAULT_CHARSET)
2867 return 0;
2868
2869 /* Continue the scan - we have a non-ANSI font */
2870 return 2;
2871}
2872
2873 static int
2874init_logfont(LOGFONT *lf)
2875{
2876 int n;
2877 HWND hwnd = GetDesktopWindow();
2878 HDC hdc = GetWindowDC(hwnd);
2879
2880 n = EnumFontFamilies(hdc,
2881 (LPCSTR)lf->lfFaceName,
2882 (FONTENUMPROC)font_enumproc,
2883 (LPARAM)lf);
2884
2885 ReleaseDC(hwnd, hdc);
2886
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002887 /* If we couldn't find a usable font, return failure */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002888 if (n == 1)
2889 return FAIL;
2890
2891 /* Tidy up the rest of the LOGFONT structure. We set to a basic
2892 * font - get_logfont() sets bold, italic, etc based on the user's
2893 * input.
2894 */
2895 lf->lfHeight = current_font_height;
2896 lf->lfWidth = 0;
2897 lf->lfItalic = FALSE;
2898 lf->lfUnderline = FALSE;
2899 lf->lfStrikeOut = FALSE;
2900 lf->lfWeight = FW_NORMAL;
2901
2902 /* Return success */
2903 return OK;
2904}
2905
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002906/*
2907 * Get font info from "name" into logfont "lf".
2908 * Return OK for a valid name, FAIL otherwise.
2909 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 int
2911get_logfont(
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002912 LOGFONT *lf,
2913 char_u *name,
2914 HDC printer_dc,
2915 int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916{
2917 char_u *p;
2918 int i;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002919 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 static LOGFONT *lastlf = NULL;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002921#ifdef FEAT_MBYTE
2922 char_u *acpname = NULL;
2923#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924
2925 *lf = s_lfDefault;
2926 if (name == NULL)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00002927 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002929#ifdef FEAT_MBYTE
2930 /* Convert 'name' from 'encoding' to the current codepage, because
2931 * lf->lfFaceName uses the current codepage.
2932 * TODO: Use Wide APIs instead of ANSI APIs. */
2933 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2934 {
2935 int len;
Bram Moolenaar418f81b2016-02-16 20:12:02 +01002936 enc_to_acp(name, (int)STRLEN(name), &acpname, &len);
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002937 name = acpname;
2938 }
2939#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 if (STRCMP(name, "*") == 0)
2941 {
2942#if defined(FEAT_GUI_W32)
2943 CHOOSEFONT cf;
2944 /* if name is "*", bring up std font dialog: */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02002945 vim_memset(&cf, 0, sizeof(cf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 cf.lStructSize = sizeof(cf);
2947 cf.hwndOwner = s_hwnd;
2948 cf.Flags = CF_SCREENFONTS | CF_FIXEDPITCHONLY | CF_INITTOLOGFONTSTRUCT;
2949 if (lastlf != NULL)
2950 *lf = *lastlf;
2951 cf.lpLogFont = lf;
2952 cf.nFontType = 0 ; //REGULAR_FONTTYPE;
2953 if (ChooseFont(&cf))
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002954 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002955#endif
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002956 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957 }
2958
2959 /*
2960 * Split name up, it could be <name>:h<height>:w<width> etc.
2961 */
2962 for (p = name; *p && *p != ':'; p++)
2963 {
Bram Moolenaar38bc4952016-11-10 17:10:51 +01002964 if (p - name + 1 >= LF_FACESIZE)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002965 goto theend; /* Name too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 lf->lfFaceName[p - name] = *p;
2967 }
2968 if (p != name)
2969 lf->lfFaceName[p - name] = NUL;
2970
2971 /* First set defaults */
2972 lf->lfHeight = -12;
2973 lf->lfWidth = 0;
2974 lf->lfWeight = FW_NORMAL;
2975 lf->lfItalic = FALSE;
2976 lf->lfUnderline = FALSE;
2977 lf->lfStrikeOut = FALSE;
2978
2979 /*
2980 * If the font can't be found, try replacing '_' by ' '.
2981 */
2982 if (init_logfont(lf) == FAIL)
2983 {
2984 int did_replace = FALSE;
2985
2986 for (i = 0; lf->lfFaceName[i]; ++i)
Bram Moolenaar89e06c82017-08-11 20:55:55 +02002987 if (IsDBCSLeadByte(lf->lfFaceName[i]))
2988 ++i;
2989 else if (lf->lfFaceName[i] == '_')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 {
2991 lf->lfFaceName[i] = ' ';
2992 did_replace = TRUE;
2993 }
2994 if (!did_replace || init_logfont(lf) == FAIL)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01002995 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 }
2997
2998 while (*p == ':')
2999 p++;
3000
3001 /* Set the values found after ':' */
3002 while (*p)
3003 {
3004 switch (*p++)
3005 {
3006 case 'h':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003007 lf->lfHeight = - points_to_pixels(p, &p, TRUE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 break;
3009 case 'w':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003010 lf->lfWidth = points_to_pixels(p, &p, FALSE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 break;
3012 case 'b':
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 lf->lfWeight = FW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 break;
3015 case 'i':
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 lf->lfItalic = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 break;
3018 case 'u':
3019 lf->lfUnderline = TRUE;
3020 break;
3021 case 's':
3022 lf->lfStrikeOut = TRUE;
3023 break;
3024 case 'c':
3025 {
3026 struct charset_pair *cp;
3027
3028 for (cp = charset_pairs; cp->name != NULL; ++cp)
3029 if (STRNCMP(p, cp->name, strlen(cp->name)) == 0)
3030 {
3031 lf->lfCharSet = cp->charset;
3032 p += strlen(cp->name);
3033 break;
3034 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003035 if (cp->name == NULL && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 {
Bram Moolenaar051b7822005-05-19 21:00:46 +00003037 vim_snprintf((char *)IObuff, IOSIZE,
3038 _("E244: Illegal charset name \"%s\" in font name \"%s\""), p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039 EMSG(IObuff);
3040 break;
3041 }
3042 break;
3043 }
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003044 case 'q':
3045 {
3046 struct quality_pair *qp;
3047
3048 for (qp = quality_pairs; qp->name != NULL; ++qp)
3049 if (STRNCMP(p, qp->name, strlen(qp->name)) == 0)
3050 {
3051 lf->lfQuality = qp->quality;
3052 p += strlen(qp->name);
3053 break;
3054 }
3055 if (qp->name == NULL && verbose)
3056 {
3057 vim_snprintf((char *)IObuff, IOSIZE,
3058 _("E244: Illegal quality name \"%s\" in font name \"%s\""), p, name);
3059 EMSG(IObuff);
3060 break;
3061 }
3062 break;
3063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 default:
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003065 if (verbose)
3066 {
Bram Moolenaar051b7822005-05-19 21:00:46 +00003067 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003068 _("E245: Illegal char '%c' in font name \"%s\""),
3069 p[-1], name);
3070 EMSG(IObuff);
3071 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003072 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 }
3074 while (*p == ':')
3075 p++;
3076 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003077 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078
Bram Moolenaar071d4272004-06-13 20:20:40 +00003079theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 /* ron: init lastlf */
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003081 if (ret == OK && printer_dc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 {
3083 vim_free(lastlf);
3084 lastlf = (LOGFONT *)alloc(sizeof(LOGFONT));
3085 if (lastlf != NULL)
3086 mch_memmove(lastlf, lf, sizeof(LOGFONT));
3087 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003088#ifdef FEAT_MBYTE
3089 vim_free(acpname);
3090#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003092 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093}
3094
3095#endif /* defined(FEAT_GUI) || defined(FEAT_PRINTER) */
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003096
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003097#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003098/*
3099 * Initialize the Winsock dll.
3100 */
3101 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003102channel_init_winsock(void)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003103{
3104 WSADATA wsaData;
3105 int wsaerr;
3106
3107 if (WSInitialized)
3108 return;
3109
3110 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
3111 if (wsaerr == 0)
3112 WSInitialized = TRUE;
3113}
3114#endif