blob: 8dafaa35b1b78d60c3c3586d7065f44a24cc5017 [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;
Bram Moolenaarc447d8d2018-12-18 21:56:28 +0100117typedef int WNDENUMPROC;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118typedef int WORD;
119typedef int WPARAM;
120typedef void VOID;
121#endif
122
123/* Record all output and all keyboard & mouse input */
124/* #define MCH_WRITE_DUMP */
125
126#ifdef MCH_WRITE_DUMP
127FILE* fdDump = NULL;
128#endif
129
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130#ifndef FEAT_GUI_MSWIN
131extern char g_szOrigTitle[];
132#endif
133
134#ifdef FEAT_GUI
135extern HWND s_hwnd;
136#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137static HWND s_hwnd = 0; /* console window handle, set by GetConsoleHwnd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138#endif
139
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100140#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf12d9832016-01-29 21:11:25 +0100141int WSInitialized = FALSE; /* WinSock is initialized */
142#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143
144/* Don't generate prototypes here, because some systems do have these
145 * functions. */
146#if defined(__GNUC__) && !defined(PROTO)
147# ifndef __MINGW32__
148int _stricoll(char *a, char *b)
149{
150 // the ANSI-ish correct way is to use strxfrm():
151 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32
152 strxfrm(a_buff, a, 512);
153 strxfrm(b_buff, b, 512);
154 return strcoll(a_buff, b_buff);
155}
156
157char * _fullpath(char *buf, char *fname, int len)
158{
159 LPTSTR toss;
160
161 return (char *)GetFullPathName(fname, len, buf, &toss);
162}
163# endif
164
Bram Moolenaaraf62ff32013-03-19 14:48:29 +0100165# if !defined(__MINGW32__) || (__GNUC__ < 4)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166int _chdrive(int drive)
167{
168 char temp [3] = "-:";
169 temp[0] = drive + 'A' - 1;
170 return !SetCurrentDirectory(temp);
171}
Bram Moolenaaraf62ff32013-03-19 14:48:29 +0100172# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173#else
174# ifdef __BORLANDC__
175/* being a more ANSI compliant compiler, BorlandC doesn't define _stricoll:
176 * but it does in BC 5.02! */
177# if __BORLANDC__ < 0x502
178int _stricoll(char *a, char *b)
179{
180# if 1
181 // this is fast but not correct:
182 return stricmp(a, b);
183# else
184 // the ANSI-ish correct way is to use strxfrm():
185 char a_buff[512], b_buff[512]; // file names, so this is enough on Win32
186 strxfrm(a_buff, a, 512);
187 strxfrm(b_buff, b, 512);
188 return strcoll(a_buff, b_buff);
189# endif
190}
191# endif
192# endif
193#endif
194
195
196#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
197/*
198 * GUI version of mch_exit().
199 * Shut down and exit with status `r'
200 * Careful: mch_exit() may be called before mch_init()!
201 */
202 void
203mch_exit(int r)
204{
Bram Moolenaar955f1982017-02-05 15:10:51 +0100205 exiting = TRUE;
206
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 display_errors();
208
209 ml_close_all(TRUE); /* remove all memfiles */
210
211# ifdef FEAT_OLE
212 UninitOLE();
213# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +0100214# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 if (WSInitialized)
216 {
217 WSInitialized = FALSE;
218 WSACleanup();
219 }
220# endif
221#ifdef DYNAMIC_GETTEXT
222 dyn_libintl_end();
223#endif
224
225 if (gui.in_use)
226 gui_exit(r);
Bram Moolenaar85c79d32007-02-20 01:59:20 +0000227
228#ifdef EXITFREE
229 free_all_mem();
230#endif
231
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232 exit(r);
233}
234
235#endif /* FEAT_GUI_MSWIN */
236
237
238/*
239 * Init the tables for toupper() and tolower().
240 */
241 void
242mch_early_init(void)
243{
244 int i;
245
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246 PlatformId();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247
248 /* Init the tables for toupper() and tolower() */
249 for (i = 0; i < 256; ++i)
250 toupper_tab[i] = tolower_tab[i] = i;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100251 CharUpperBuff((LPSTR)toupper_tab, 256);
252 CharLowerBuff((LPSTR)tolower_tab, 256);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253}
254
255
256/*
257 * Return TRUE if the input comes from a terminal, FALSE otherwise.
258 */
259 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100260mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261{
262#ifdef FEAT_GUI_MSWIN
263 return OK; /* GUI always has a tty */
264#else
265 if (isatty(read_cmd_fd))
266 return TRUE;
267 return FALSE;
268#endif
269}
270
271#ifdef FEAT_TITLE
272/*
273 * mch_settitle(): set titlebar of our window
274 */
275 void
276mch_settitle(
277 char_u *title,
278 char_u *icon)
279{
280# ifdef FEAT_GUI_MSWIN
281 gui_mch_settitle(title, icon);
282# else
283 if (title != NULL)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000284 {
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000285 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 }
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100297 SetConsoleTitle((LPCSTR)title);
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000298 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299# endif
300}
301
302
303/*
304 * Restore the window/icon title.
305 * which is one of:
Bram Moolenaar40385db2018-08-07 22:31:44 +0200306 * SAVE_RESTORE_TITLE: Just restore title
307 * SAVE_RESTORE_ICON: Just restore icon (which we don't have)
308 * SAVE_RESTORE_BOTH: Restore title and icon (which we don't have)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 */
310 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100311mch_restore_title(int which UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312{
313#ifndef FEAT_GUI_MSWIN
Bram Moolenaar1df52d72014-10-15 22:50:10 +0200314 SetConsoleTitle(g_szOrigTitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315#endif
316}
317
318
319/*
320 * Return TRUE if we can restore the title (we can)
321 */
322 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100323mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324{
325 return TRUE;
326}
327
328
329/*
330 * Return TRUE if we can restore the icon title (we can't)
331 */
332 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100333mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334{
335 return FALSE;
336}
337#endif /* FEAT_TITLE */
338
339
340/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000341 * Get absolute file name into buffer "buf" of length "len" bytes,
342 * turning all '/'s into '\\'s and getting the correct case of each component
343 * of the file name. Append a (back)slash to a directory name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344 * When 'shellslash' set do it the other way around.
345 * Return OK or FAIL.
346 */
347 int
348mch_FullName(
349 char_u *fname,
350 char_u *buf,
351 int len,
Bram Moolenaar1266d672017-02-01 13:43:36 +0100352 int force UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353{
354 int nResult = FAIL;
355
356#ifdef __BORLANDC__
357 if (*fname == NUL) /* Borland behaves badly here - make it consistent */
358 nResult = mch_dirname(buf, len);
359 else
360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361 {
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200362 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000363 {
364 WCHAR *wname;
365 WCHAR wbuf[MAX_PATH];
366 char_u *cname = NULL;
367
368 /* Use the wide function:
369 * - convert the fname from 'encoding' to UCS2.
370 * - invoke _wfullpath()
371 * - convert the result from UCS2 to 'encoding'.
372 */
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000373 wname = enc_to_utf16(fname, NULL);
Bram Moolenaar374bf022014-11-05 19:33:24 +0100374 if (wname != NULL && _wfullpath(wbuf, wname, MAX_PATH) != NULL)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000375 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000376 cname = utf16_to_enc((short_u *)wbuf, NULL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000377 if (cname != NULL)
378 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +0000379 vim_strncpy(buf, cname, len - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000380 nResult = OK;
381 }
382 }
383 vim_free(wname);
384 vim_free(cname);
385 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000386 if (nResult == FAIL) /* fall back to non-wide function */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000387 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100388 if (_fullpath((char *)buf, (const char *)fname, len - 1) == NULL)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000389 {
Bram Moolenaarfe3ca8d2005-07-18 21:43:02 +0000390 /* failed, use relative path name */
391 vim_strncpy(buf, fname, len - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000392 }
393 else
394 nResult = OK;
395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397
398#ifdef USE_FNAME_CASE
399 fname_case(buf, len);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000400#else
401 slash_adjust(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402#endif
403
404 return nResult;
405}
406
407
408/*
409 * Return TRUE if "fname" does not depend on the current directory.
410 */
411 int
412mch_isFullName(char_u *fname)
413{
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200414 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
415 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
416 * UTF-8. */
417 char szName[_MAX_PATH * 3 + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418
419 /* A name like "d:/foo" and "//server/share" is absolute */
420 if ((fname[0] && fname[1] == ':' && (fname[2] == '/' || fname[2] == '\\'))
421 || (fname[0] == fname[1] && (fname[0] == '/' || fname[0] == '\\')))
422 return TRUE;
423
424 /* A name that can't be made absolute probably isn't absolute. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100425 if (mch_FullName(fname, (char_u *)szName, sizeof(szName) - 1, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 return FALSE;
427
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100428 return pathcmp((const char *)fname, (const char *)szName, -1) == 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429}
430
431/*
432 * Replace all slashes by backslashes.
433 * This used to be the other way around, but MS-DOS sometimes has problems
434 * with slashes (e.g. in a command name). We can't have mixed slashes and
435 * backslashes, because comparing file names will not work correctly. The
436 * commands that use a file name should try to avoid the need to type a
437 * backslash twice.
438 * When 'shellslash' set do it the other way around.
Bram Moolenaarb4f6a462015-10-13 19:43:17 +0200439 * When the path looks like a URL leave it unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 */
441 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100442slash_adjust(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443{
Bram Moolenaarb4f6a462015-10-13 19:43:17 +0200444 if (path_with_url(p))
445 return;
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200446
447 if (*p == '`')
448 {
Bram Moolenaar116a0f82017-08-07 21:17:57 +0200449 size_t len = STRLEN(p);
450
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200451 /* don't replace backslash in backtick quoted strings */
Bram Moolenaar39d21e32017-08-05 23:09:31 +0200452 if (len > 2 && *(p + len - 1) == '`')
453 return;
454 }
455
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000456 while (*p)
457 {
458 if (*p == psepcN)
459 *p = psepc;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100460 MB_PTR_ADV(p);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +0000461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462}
463
Bram Moolenaar8767f522016-07-01 17:17:39 +0200464/* Use 64-bit stat functions if available. */
465#ifdef HAVE_STAT64
466# undef stat
467# undef _stat
468# undef _wstat
469# undef _fstat
470# define stat _stat64
471# define _stat _stat64
472# define _wstat _wstat64
473# define _fstat _fstat64
474#endif
475
Bram Moolenaar9d1685d2014-01-14 12:18:45 +0100476#if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__)
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200477# define OPEN_OH_ARGTYPE intptr_t
478#else
479# define OPEN_OH_ARGTYPE long
480#endif
481
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200482 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200483stat_symlink_aware(const char *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200484{
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100485#if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
486 /* Work around for VC12 or earlier (and MinGW). stat() can't handle
487 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200488 * VC9 or earlier: stat() doesn't support a symlink at all. It retrieves
489 * status of a symlink itself.
490 * VC10: stat() supports a symlink to a normal file, but it doesn't support
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100491 * a symlink to a directory (always returns an error).
492 * VC11 and VC12: stat() doesn't return an error for a symlink to a
493 * directory, but it doesn't set S_IFDIR flag.
494 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200495 WIN32_FIND_DATA findData;
496 HANDLE hFind, h;
497 DWORD attr = 0;
498 BOOL is_symlink = FALSE;
499
500 hFind = FindFirstFile(name, &findData);
501 if (hFind != INVALID_HANDLE_VALUE)
502 {
503 attr = findData.dwFileAttributes;
504 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
505 && (findData.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
506 is_symlink = TRUE;
507 FindClose(hFind);
508 }
509 if (is_symlink)
510 {
511 h = CreateFile(name, FILE_READ_ATTRIBUTES,
512 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
513 OPEN_EXISTING,
514 (attr & FILE_ATTRIBUTE_DIRECTORY)
515 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
516 NULL);
517 if (h != INVALID_HANDLE_VALUE)
518 {
519 int fd, n;
520
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200521 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200522 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100523 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
524 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200525 _close(fd);
526 return n;
527 }
528 }
529#endif
530 return stat(name, stp);
531}
532
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200533 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200534wstat_symlink_aware(const WCHAR *name, stat_T *stp)
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200535{
Bram Moolenaara12a1612019-01-24 16:39:02 +0100536#if (defined(_MSC_VER) && (_MSC_VER < 1900)) || defined(__MINGW32__)
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100537 /* Work around for VC12 or earlier (and MinGW). _wstat() can't handle
538 * symlinks properly.
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200539 * VC9 or earlier: _wstat() doesn't support a symlink at all. It retrieves
540 * status of a symlink itself.
541 * VC10: _wstat() supports a symlink to a normal file, but it doesn't
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100542 * support a symlink to a directory (always returns an error).
543 * VC11 and VC12: _wstat() doesn't return an error for a symlink to a
544 * directory, but it doesn't set S_IFDIR flag.
545 * MinGW: Same as VC9. */
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200546 int n;
547 BOOL is_symlink = FALSE;
548 HANDLE hFind, h;
549 DWORD attr = 0;
550 WIN32_FIND_DATAW findDataW;
551
552 hFind = FindFirstFileW(name, &findDataW);
553 if (hFind != INVALID_HANDLE_VALUE)
554 {
555 attr = findDataW.dwFileAttributes;
556 if ((attr & FILE_ATTRIBUTE_REPARSE_POINT)
557 && (findDataW.dwReserved0 == IO_REPARSE_TAG_SYMLINK))
558 is_symlink = TRUE;
559 FindClose(hFind);
560 }
561 if (is_symlink)
562 {
563 h = CreateFileW(name, FILE_READ_ATTRIBUTES,
564 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
565 OPEN_EXISTING,
566 (attr & FILE_ATTRIBUTE_DIRECTORY)
567 ? FILE_FLAG_BACKUP_SEMANTICS : 0,
568 NULL);
569 if (h != INVALID_HANDLE_VALUE)
570 {
571 int fd;
572
Bram Moolenaar8962fda2013-09-29 19:05:21 +0200573 fd = _open_osfhandle((OPEN_OH_ARGTYPE)h, _O_RDONLY);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200574 n = _fstat(fd, (struct _stat *)stp);
Bram Moolenaarfce7b3d2016-01-19 19:00:32 +0100575 if ((n == 0) && (attr & FILE_ATTRIBUTE_DIRECTORY))
576 stp->st_mode = (stp->st_mode & ~S_IFREG) | S_IFDIR;
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200577 _close(fd);
578 return n;
579 }
580 }
Bram Moolenaara12a1612019-01-24 16:39:02 +0100581#endif
Bram Moolenaar8767f522016-07-01 17:17:39 +0200582 return _wstat(name, (struct _stat *)stp);
Bram Moolenaar2ee95f72013-09-25 19:13:38 +0200583}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584
585/*
586 * stat() can't handle a trailing '/' or '\', remove it first.
587 */
588 int
Bram Moolenaar8767f522016-07-01 17:17:39 +0200589vim_stat(const char *name, stat_T *stp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590{
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200591 /* WinNT and later can use _MAX_PATH wide characters for a pathname, which
592 * means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
593 * UTF-8. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100594 char_u buf[_MAX_PATH * 3 + 1];
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100595 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596
Bram Moolenaard2a203b2013-08-30 16:51:18 +0200597 vim_strncpy((char_u *)buf, (char_u *)name, sizeof(buf) - 1);
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100598 p = buf + STRLEN(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 if (p > buf)
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100600 MB_PTR_BACK(buf, p);
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100601
602 /* Remove trailing '\\' except root path. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000603 if (p > buf && (*p == '\\' || *p == '/') && p[-1] != ':')
604 *p = NUL;
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100605
606 if ((buf[0] == '\\' && buf[1] == '\\') || (buf[0] == '/' && buf[1] == '/'))
607 {
608 /* UNC root path must be followed by '\\'. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100609 p = vim_strpbrk(buf + 2, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100610 if (p != NULL)
611 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100612 p = vim_strpbrk(p + 1, (char_u *)"\\/");
Bram Moolenaarb1cb35f2014-01-10 13:05:20 +0100613 if (p == NULL)
614 STRCAT(buf, "\\");
615 }
616 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200617 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 {
Bram Moolenaar36f692d2008-11-20 16:10:17 +0000619 WCHAR *wp = enc_to_utf16(buf, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 int n;
621
622 if (wp != NULL)
623 {
Bram Moolenaar8767f522016-07-01 17:17:39 +0200624 n = wstat_symlink_aware(wp, stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 vim_free(wp);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200626 return n;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 }
628 }
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100629 return stat_symlink_aware((char *)buf, stp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630}
631
632#if defined(FEAT_GUI_MSWIN) || defined(PROTO)
633 void
Bram Moolenaar1266d672017-02-01 13:43:36 +0100634mch_settmode(int tmode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635{
636 /* nothing to do */
637}
638
639 int
640mch_get_shellsize(void)
641{
642 /* never used */
643 return OK;
644}
645
646 void
647mch_set_shellsize(void)
648{
649 /* never used */
650}
651
652/*
653 * Rows and/or Columns has changed.
654 */
655 void
656mch_new_shellsize(void)
657{
658 /* never used */
659}
660
661#endif
662
663/*
664 * We have no job control, so fake it by starting a new shell.
665 */
666 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100667mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668{
669 suspend_shell();
670}
671
672#if defined(USE_MCH_ERRMSG) || defined(PROTO)
673
674#ifdef display_errors
675# undef display_errors
676#endif
677
678/*
679 * Display the saved error message(s).
680 */
681 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100682display_errors(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683{
684 char *p;
685
686 if (error_ga.ga_data != NULL)
687 {
688 /* avoid putting up a message box with blanks only */
689 for (p = (char *)error_ga.ga_data; *p; ++p)
690 if (!isspace(*p))
691 {
Bram Moolenaarc17ef8e2006-03-25 21:48:58 +0000692 (void)gui_mch_dialog(
693#ifdef FEAT_GUI
694 gui.starting ? VIM_INFO :
695#endif
696 VIM_ERROR,
697#ifdef FEAT_GUI
698 gui.starting ? (char_u *)_("Message") :
699#endif
700 (char_u *)_("Error"),
Bram Moolenaar418f81b2016-02-16 20:12:02 +0100701 (char_u *)p, (char_u *)_("&Ok"),
702 1, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703 break;
704 }
705 ga_clear(&error_ga);
706 }
707}
708#endif
709
710
711/*
712 * Return TRUE if "p" contain a wildcard that can be expanded by
713 * dos_expandpath().
714 */
715 int
716mch_has_exp_wildcard(char_u *p)
717{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100718 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 {
720 if (vim_strchr((char_u *)"?*[", *p) != NULL
721 || (*p == '~' && p[1] != NUL))
722 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 }
724 return FALSE;
725}
726
727/*
728 * Return TRUE if "p" contain a wildcard or a "~1" kind of thing (could be a
729 * shortened file name).
730 */
731 int
732mch_has_wildcard(char_u *p)
733{
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100734 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 {
736 if (vim_strchr((char_u *)
737# ifdef VIM_BACKTICK
738 "?*$[`"
739# else
740 "?*$["
741# endif
742 , *p) != NULL
743 || (*p == '~' && p[1] != NUL))
744 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 }
746 return FALSE;
747}
748
749
750/*
751 * The normal _chdir() does not change the default drive. This one does.
752 * Returning 0 implies success; -1 implies failure.
753 */
754 int
755mch_chdir(char *path)
756{
757 if (path[0] == NUL) /* just checking... */
758 return -1;
759
Bram Moolenaara2974d72009-07-14 16:38:36 +0000760 if (p_verbose >= 5)
761 {
762 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100763 smsg("chdir(%s)", path);
Bram Moolenaara2974d72009-07-14 16:38:36 +0000764 verbose_leave();
765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 if (isalpha(path[0]) && path[1] == ':') /* has a drive name */
767 {
768 /* If we can change to the drive, skip that part of the path. If we
769 * can't then the current directory may be invalid, try using chdir()
770 * with the whole path. */
771 if (_chdrive(TOLOWER_ASC(path[0]) - 'a' + 1) == 0)
772 path += 2;
773 }
774
775 if (*path == NUL) /* drive name only */
776 return 0;
777
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000778 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
779 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100780 WCHAR *p = enc_to_utf16((char_u *)path, NULL);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000781 int n;
782
783 if (p != NULL)
784 {
785 n = _wchdir(p);
786 vim_free(p);
Bram Moolenaarcea912a2016-10-12 14:20:24 +0200787 return n;
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000788 }
789 }
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000790
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791 return chdir(path); /* let the normal chdir() do the rest */
792}
793
794
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795#ifdef FEAT_GUI_MSWIN
796/*
797 * return non-zero if a character is available
798 */
799 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100800mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801{
802 /* never used */
803 return TRUE;
804}
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200805
806# if defined(FEAT_TERMINAL) || defined(PROTO)
807/*
808 * Check for any pending input or messages.
809 */
810 int
811mch_check_messages(void)
812{
813 /* TODO: check for messages */
814 return TRUE;
815}
816# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817#endif
818
819
820/*
821 * set screen mode, always fails.
822 */
823 int
Bram Moolenaar1266d672017-02-01 13:43:36 +0100824mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100826 emsg(_(e_screenmode));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 return FAIL;
828}
829
830
831#if defined(FEAT_LIBCALL) || defined(PROTO)
832/*
833 * Call a DLL routine which takes either a string or int param
834 * and returns an allocated string.
835 * Return OK if it worked, FAIL if not.
836 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837typedef LPTSTR (*MYSTRPROCSTR)(LPTSTR);
838typedef LPTSTR (*MYINTPROCSTR)(int);
839typedef int (*MYSTRPROCINT)(LPTSTR);
840typedef int (*MYINTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842/*
843 * Check if a pointer points to a valid NUL terminated string.
844 * Return the length of the string, including terminating NUL.
845 * Returns 0 for an invalid pointer, 1 for an empty string.
846 */
847 static size_t
848check_str_len(char_u *str)
849{
850 SYSTEM_INFO si;
851 MEMORY_BASIC_INFORMATION mbi;
852 size_t length = 0;
853 size_t i;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100854 const char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855
856 /* get page size */
857 GetSystemInfo(&si);
858
859 /* get memory information */
860 if (VirtualQuery(str, &mbi, sizeof(mbi)))
861 {
862 /* pre cast these (typing savers) */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000863 long_u dwStr = (long_u)str;
864 long_u dwBaseAddress = (long_u)mbi.BaseAddress;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865
866 /* get start address of page that str is on */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000867 long_u strPage = dwStr - (dwStr - dwBaseAddress) % si.dwPageSize;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868
869 /* get length from str to end of page */
Bram Moolenaareb3593b2006-04-22 22:33:57 +0000870 long_u pageLength = si.dwPageSize - (dwStr - strPage);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871
Bram Moolenaar442b4222010-05-24 21:34:22 +0200872 for (p = str; !IsBadReadPtr(p, (UINT)pageLength);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 p += pageLength, pageLength = si.dwPageSize)
874 for (i = 0; i < pageLength; ++i, ++length)
875 if (p[i] == NUL)
876 return length + 1;
877 }
878
879 return 0;
880}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200882/*
883 * Passed to do_in_runtimepath() to load a vim.ico file.
884 */
885 static void
886mch_icon_load_cb(char_u *fname, void *cookie)
887{
888 HANDLE *h = (HANDLE *)cookie;
889
890 *h = LoadImage(NULL,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100891 (LPSTR)fname,
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200892 IMAGE_ICON,
893 64,
894 64,
895 LR_LOADFROMFILE | LR_LOADMAP3DCOLORS);
896}
897
898/*
899 * Try loading an icon file from 'runtimepath'.
900 */
901 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100902mch_icon_load(HANDLE *iconp)
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200903{
904 return do_in_runtimepath((char_u *)"bitmaps/vim.ico",
Bram Moolenaar7f8989d2016-03-12 22:11:39 +0100905 0, mch_icon_load_cb, iconp);
Bram Moolenaarcddc91c2014-09-23 21:53:41 +0200906}
907
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 int
909mch_libcall(
910 char_u *libname,
911 char_u *funcname,
912 char_u *argstring, /* NULL when using a argint */
913 int argint,
914 char_u **string_result,/* NULL when using number_result */
915 int *number_result)
916{
917 HINSTANCE hinstLib;
918 MYSTRPROCSTR ProcAdd;
919 MYINTPROCSTR ProcAddI;
920 char_u *retval_str = NULL;
921 int retval_int = 0;
922 size_t len;
923
924 BOOL fRunTimeLinkSuccess = FALSE;
925
926 // Get a handle to the DLL module.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100927 hinstLib = vimLoadLib((char *)libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928
929 // If the handle is valid, try to get the function address.
930 if (hinstLib != NULL)
931 {
932#ifdef HAVE_TRY_EXCEPT
933 __try
934 {
935#endif
936 if (argstring != NULL)
937 {
938 /* Call with string argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100939 ProcAdd = (MYSTRPROCSTR)GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 if ((fRunTimeLinkSuccess = (ProcAdd != NULL)) != 0)
941 {
942 if (string_result == NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100943 retval_int = ((MYSTRPROCINT)ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100945 retval_str = (char_u *)(ProcAdd)((LPSTR)argstring);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 }
947 }
948 else
949 {
950 /* Call with number argument */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100951 ProcAddI = (MYINTPROCSTR) GetProcAddress(hinstLib, (LPCSTR)funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952 if ((fRunTimeLinkSuccess = (ProcAddI != NULL)) != 0)
953 {
954 if (string_result == NULL)
955 retval_int = ((MYINTPROCINT)ProcAddI)(argint);
956 else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +0100957 retval_str = (char_u *)(ProcAddI)(argint);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 }
959 }
960
961 // Save the string before we free the library.
962 // Assume that a "1" result is an illegal pointer.
963 if (string_result == NULL)
964 *number_result = retval_int;
965 else if (retval_str != NULL
Bram Moolenaarcf7164a2016-02-20 13:55:06 +0100966 && (len = check_str_len(retval_str)) > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 {
968 *string_result = lalloc((long_u)len, TRUE);
969 if (*string_result != NULL)
970 mch_memmove(*string_result, retval_str, len);
971 }
972
973#ifdef HAVE_TRY_EXCEPT
974 }
975 __except(EXCEPTION_EXECUTE_HANDLER)
976 {
977 if (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW)
978 RESETSTKOFLW();
979 fRunTimeLinkSuccess = 0;
980 }
981#endif
982
983 // Free the DLL module.
984 (void)FreeLibrary(hinstLib);
985 }
986
987 if (!fRunTimeLinkSuccess)
988 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100989 semsg(_(e_libcall), funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 return FAIL;
991 }
992
993 return OK;
994}
995#endif
996
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997/*
998 * Debugging helper: expose the MCH_WRITE_DUMP stuff to other modules
999 */
1000 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001001DumpPutS(const char *psz UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002{
1003# ifdef MCH_WRITE_DUMP
1004 if (fdDump)
1005 {
1006 fputs(psz, fdDump);
1007 if (psz[strlen(psz) - 1] != '\n')
1008 fputc('\n', fdDump);
1009 fflush(fdDump);
1010 }
1011# endif
1012}
1013
1014#ifdef _DEBUG
1015
1016void __cdecl
1017Trace(
1018 char *pszFormat,
1019 ...)
1020{
1021 CHAR szBuff[2048];
1022 va_list args;
1023
1024 va_start(args, pszFormat);
1025 vsprintf(szBuff, pszFormat, args);
1026 va_end(args);
1027
1028 OutputDebugString(szBuff);
1029}
1030
1031#endif //_DEBUG
1032
Bram Moolenaar843ee412004-06-30 16:16:41 +00001033#if !defined(FEAT_GUI) || defined(PROTO)
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001034# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035extern HWND g_hWnd; /* This is in os_win32.c. */
1036# endif
1037
1038/*
1039 * Showing the printer dialog is tricky since we have no GUI
1040 * window to parent it. The following routines are needed to
1041 * get the window parenting and Z-order to work properly.
1042 */
1043 static void
1044GetConsoleHwnd(void)
1045{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 /* Skip if it's already set. */
1047 if (s_hwnd != 0)
1048 return;
1049
Bram Moolenaarcea912a2016-10-12 14:20:24 +02001050# ifdef FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 /* Window handle may have been found by init code (Windows NT only) */
1052 if (g_hWnd != 0)
1053 {
1054 s_hwnd = g_hWnd;
1055 return;
1056 }
1057# endif
1058
Bram Moolenaare1ed53f2019-02-12 23:12:37 +01001059 s_hwnd = GetConsoleWindow();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060}
Bram Moolenaar843ee412004-06-30 16:16:41 +00001061
1062/*
1063 * Console implementation of ":winpos".
1064 */
1065 int
1066mch_get_winpos(int *x, int *y)
1067{
1068 RECT rect;
1069
1070 GetConsoleHwnd();
1071 GetWindowRect(s_hwnd, &rect);
1072 *x = rect.left;
1073 *y = rect.top;
1074 return OK;
1075}
1076
1077/*
1078 * Console implementation of ":winpos x y".
1079 */
1080 void
1081mch_set_winpos(int x, int y)
1082{
1083 GetConsoleHwnd();
1084 SetWindowPos(s_hwnd, NULL, x, y, 0, 0,
1085 SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
1086}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087#endif
1088
1089#if (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) || defined(PROTO)
1090
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091/*=================================================================
1092 * Win32 printer stuff
1093 */
1094
1095static HFONT prt_font_handles[2][2][2];
1096static PRINTDLG prt_dlg;
1097static const int boldface[2] = {FW_REGULAR, FW_BOLD};
1098static TEXTMETRIC prt_tm;
1099static int prt_line_height;
1100static int prt_number_width;
1101static int prt_left_margin;
1102static int prt_right_margin;
1103static int prt_top_margin;
1104static char_u szAppName[] = TEXT("VIM");
1105static HWND hDlgPrint;
1106static int *bUserAbort = NULL;
1107static char_u *prt_name = NULL;
1108
1109/* Defines which are also in vim.rc. */
1110#define IDC_BOX1 400
1111#define IDC_PRINTTEXT1 401
1112#define IDC_PRINTTEXT2 402
1113#define IDC_PROGRESS 403
1114
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001115 static BOOL
1116vimSetDlgItemText(HWND hDlg, int nIDDlgItem, char_u *s)
1117{
1118 WCHAR *wp = NULL;
1119 BOOL ret;
1120
1121 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1122 {
1123 wp = enc_to_utf16(s, NULL);
1124 }
1125 if (wp != NULL)
1126 {
1127 ret = SetDlgItemTextW(hDlg, nIDDlgItem, wp);
1128 vim_free(wp);
1129 return ret;
1130 }
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001131 return SetDlgItemText(hDlg, nIDDlgItem, (LPCSTR)s);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001132}
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001133
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134/*
1135 * Convert BGR to RGB for Windows GDI calls
1136 */
1137 static COLORREF
1138swap_me(COLORREF colorref)
1139{
1140 int temp;
1141 char *ptr = (char *)&colorref;
1142
1143 temp = *(ptr);
1144 *(ptr ) = *(ptr + 2);
1145 *(ptr + 2) = temp;
1146 return colorref;
1147}
1148
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001149/* Attempt to make this work for old and new compilers */
Bram Moolenaar9f733d12011-09-21 20:09:42 +02001150#if !defined(_WIN64) && (!defined(_MSC_VER) || _MSC_VER < 1300)
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001151# define PDP_RETVAL BOOL
1152#else
1153# define PDP_RETVAL INT_PTR
1154#endif
1155
Bram Moolenaared39e1d2008-08-09 17:55:22 +00001156 static PDP_RETVAL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001157PrintDlgProc(
1158 HWND hDlg,
1159 UINT message,
1160 WPARAM wParam UNUSED,
1161 LPARAM lParam UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162{
1163#ifdef FEAT_GETTEXT
1164 NONCLIENTMETRICS nm;
1165 static HFONT hfont;
1166#endif
1167
1168 switch (message)
1169 {
1170 case WM_INITDIALOG:
1171#ifdef FEAT_GETTEXT
1172 nm.cbSize = sizeof(NONCLIENTMETRICS);
1173 if (SystemParametersInfo(
1174 SPI_GETNONCLIENTMETRICS,
1175 sizeof(NONCLIENTMETRICS),
1176 &nm,
1177 0))
1178 {
1179 char buff[MAX_PATH];
1180 int i;
1181
1182 /* Translate the dialog texts */
1183 hfont = CreateFontIndirect(&nm.lfMessageFont);
1184 for (i = IDC_PRINTTEXT1; i <= IDC_PROGRESS; i++)
1185 {
1186 SendDlgItemMessage(hDlg, i, WM_SETFONT, (WPARAM)hfont, 1);
1187 if (GetDlgItemText(hDlg,i, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001188 vimSetDlgItemText(hDlg,i, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 }
1190 SendDlgItemMessage(hDlg, IDCANCEL,
1191 WM_SETFONT, (WPARAM)hfont, 1);
1192 if (GetDlgItemText(hDlg,IDCANCEL, buff, sizeof(buff)))
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001193 vimSetDlgItemText(hDlg,IDCANCEL, (char_u *)_(buff));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 }
1195#endif
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001196 SetWindowText(hDlg, (LPCSTR)szAppName);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 if (prt_name != NULL)
1198 {
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001199 vimSetDlgItemText(hDlg, IDC_PRINTTEXT2, (char_u *)prt_name);
Bram Moolenaard23a8232018-02-10 18:45:26 +01001200 VIM_CLEAR(prt_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 }
1202 EnableMenuItem(GetSystemMenu(hDlg, FALSE), SC_CLOSE, MF_GRAYED);
1203#ifndef FEAT_GUI
1204 BringWindowToTop(s_hwnd);
1205#endif
1206 return TRUE;
1207
1208 case WM_COMMAND:
1209 *bUserAbort = TRUE;
1210 EnableWindow(GetParent(hDlg), TRUE);
1211 DestroyWindow(hDlg);
1212 hDlgPrint = NULL;
1213#ifdef FEAT_GETTEXT
1214 DeleteObject(hfont);
1215#endif
1216 return TRUE;
1217 }
1218 return FALSE;
1219}
1220
1221 static BOOL CALLBACK
Bram Moolenaar1266d672017-02-01 13:43:36 +01001222AbortProc(HDC hdcPrn UNUSED, int iCode UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223{
1224 MSG msg;
1225
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001226 while (!*bUserAbort && pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 {
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001228 if (!hDlgPrint || !pIsDialogMessage(hDlgPrint, &msg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 {
1230 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02001231 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 }
1233 }
1234 return !*bUserAbort;
1235}
1236
1237#ifndef FEAT_GUI
1238
Bram Moolenaar26fdd7d2011-11-30 13:42:44 +01001239 static UINT_PTR CALLBACK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240PrintHookProc(
1241 HWND hDlg, // handle to dialog box
1242 UINT uiMsg, // message identifier
1243 WPARAM wParam, // message parameter
1244 LPARAM lParam // message parameter
1245 )
1246{
1247 HWND hwndOwner;
1248 RECT rc, rcDlg, rcOwner;
1249 PRINTDLG *pPD;
1250
1251 if (uiMsg == WM_INITDIALOG)
1252 {
1253 // Get the owner window and dialog box rectangles.
1254 if ((hwndOwner = GetParent(hDlg)) == NULL)
1255 hwndOwner = GetDesktopWindow();
1256
1257 GetWindowRect(hwndOwner, &rcOwner);
1258 GetWindowRect(hDlg, &rcDlg);
1259 CopyRect(&rc, &rcOwner);
1260
1261 // Offset the owner and dialog box rectangles so that
1262 // right and bottom values represent the width and
1263 // height, and then offset the owner again to discard
1264 // space taken up by the dialog box.
1265
1266 OffsetRect(&rcDlg, -rcDlg.left, -rcDlg.top);
1267 OffsetRect(&rc, -rc.left, -rc.top);
1268 OffsetRect(&rc, -rcDlg.right, -rcDlg.bottom);
1269
1270 // The new position is the sum of half the remaining
1271 // space and the owner's original position.
1272
1273 SetWindowPos(hDlg,
1274 HWND_TOP,
1275 rcOwner.left + (rc.right / 2),
1276 rcOwner.top + (rc.bottom / 2),
1277 0, 0, // ignores size arguments
1278 SWP_NOSIZE);
1279
1280 /* tackle the printdlg copiesctrl problem */
1281 pPD = (PRINTDLG *)lParam;
1282 pPD->nCopies = (WORD)pPD->lCustData;
1283 SetDlgItemInt( hDlg, edt3, pPD->nCopies, FALSE );
1284 /* Bring the window to top */
1285 BringWindowToTop(GetParent(hDlg));
1286 SetForegroundWindow(hDlg);
1287 }
1288
1289 return FALSE;
1290}
1291#endif
1292
1293 void
1294mch_print_cleanup(void)
1295{
1296 int pifItalic;
1297 int pifBold;
1298 int pifUnderline;
1299
1300 for (pifBold = 0; pifBold <= 1; pifBold++)
1301 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1302 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1303 DeleteObject(prt_font_handles[pifBold][pifItalic][pifUnderline]);
1304
1305 if (prt_dlg.hDC != NULL)
1306 DeleteDC(prt_dlg.hDC);
1307 if (!*bUserAbort)
1308 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1309}
1310
1311 static int
1312to_device_units(int idx, int dpi, int physsize, int offset, int def_number)
1313{
1314 int ret = 0;
1315 int u;
1316 int nr;
1317
1318 u = prt_get_unit(idx);
1319 if (u == PRT_UNIT_NONE)
1320 {
1321 u = PRT_UNIT_PERC;
1322 nr = def_number;
1323 }
1324 else
1325 nr = printer_opts[idx].number;
1326
1327 switch (u)
1328 {
1329 case PRT_UNIT_PERC:
1330 ret = (physsize * nr) / 100;
1331 break;
1332 case PRT_UNIT_INCH:
1333 ret = (nr * dpi);
1334 break;
1335 case PRT_UNIT_MM:
1336 ret = (nr * 10 * dpi) / 254;
1337 break;
1338 case PRT_UNIT_POINT:
1339 ret = (nr * 10 * dpi) / 720;
1340 break;
1341 }
1342
1343 if (ret < offset)
1344 return 0;
1345 else
1346 return ret - offset;
1347}
1348
1349 static int
1350prt_get_cpl(void)
1351{
1352 int hr;
1353 int phyw;
1354 int dvoff;
1355 int rev_offset;
1356 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357
1358 GetTextMetrics(prt_dlg.hDC, &prt_tm);
1359 prt_line_height = prt_tm.tmHeight + prt_tm.tmExternalLeading;
1360
1361 hr = GetDeviceCaps(prt_dlg.hDC, HORZRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALWIDTH);
1363 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSX);
1365
1366 rev_offset = phyw - (dvoff + hr);
1367
1368 prt_left_margin = to_device_units(OPT_PRINT_LEFT, dpi, phyw, dvoff, 10);
1369 if (prt_use_number())
1370 {
1371 prt_number_width = PRINT_NUMBER_WIDTH * prt_tm.tmAveCharWidth;
1372 prt_left_margin += prt_number_width;
1373 }
1374 else
1375 prt_number_width = 0;
1376
1377 prt_right_margin = hr - to_device_units(OPT_PRINT_RIGHT, dpi, phyw,
1378 rev_offset, 5);
1379
1380 return (prt_right_margin - prt_left_margin) / prt_tm.tmAveCharWidth;
1381}
1382
1383 static int
1384prt_get_lpp(void)
1385{
1386 int vr;
1387 int phyw;
1388 int dvoff;
1389 int rev_offset;
1390 int bottom_margin;
1391 int dpi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392
1393 vr = GetDeviceCaps(prt_dlg.hDC, VERTRES);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 phyw = GetDeviceCaps(prt_dlg.hDC, PHYSICALHEIGHT);
1395 dvoff = GetDeviceCaps(prt_dlg.hDC, PHYSICALOFFSETY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 dpi = GetDeviceCaps(prt_dlg.hDC, LOGPIXELSY);
1397
1398 rev_offset = phyw - (dvoff + vr);
1399
1400 prt_top_margin = to_device_units(OPT_PRINT_TOP, dpi, phyw, dvoff, 5);
1401
1402 /* adjust top margin if there is a header */
1403 prt_top_margin += prt_line_height * prt_header_height();
1404
1405 bottom_margin = vr - to_device_units(OPT_PRINT_BOT, dpi, phyw,
1406 rev_offset, 5);
1407
1408 return (bottom_margin - prt_top_margin) / prt_line_height;
1409}
1410
1411 int
1412mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit)
1413{
1414 static HGLOBAL stored_dm = NULL;
1415 static HGLOBAL stored_devn = NULL;
1416 static int stored_nCopies = 1;
1417 static int stored_nFlags = 0;
1418
1419 LOGFONT fLogFont;
1420 int pifItalic;
1421 int pifBold;
1422 int pifUnderline;
1423
1424 DEVMODE *mem;
1425 DEVNAMES *devname;
1426 int i;
1427
1428 bUserAbort = &(psettings->user_abort);
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001429 vim_memset(&prt_dlg, 0, sizeof(PRINTDLG));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 prt_dlg.lStructSize = sizeof(PRINTDLG);
1431#ifndef FEAT_GUI
1432 GetConsoleHwnd(); /* get value of s_hwnd */
1433#endif
1434 prt_dlg.hwndOwner = s_hwnd;
1435 prt_dlg.Flags = PD_NOPAGENUMS | PD_NOSELECTION | PD_RETURNDC;
1436 if (!forceit)
1437 {
1438 prt_dlg.hDevMode = stored_dm;
1439 prt_dlg.hDevNames = stored_devn;
1440 prt_dlg.lCustData = stored_nCopies; // work around bug in print dialog
1441#ifndef FEAT_GUI
1442 /*
1443 * Use hook to prevent console window being sent to back
1444 */
1445 prt_dlg.lpfnPrintHook = PrintHookProc;
1446 prt_dlg.Flags |= PD_ENABLEPRINTHOOK;
1447#endif
1448 prt_dlg.Flags |= stored_nFlags;
1449 }
1450
1451 /*
1452 * If bang present, return default printer setup with no dialog
1453 * never show dialog if we are running over telnet
1454 */
1455 if (forceit
1456#ifndef FEAT_GUI
1457 || !term_console
1458#endif
1459 )
1460 {
1461 prt_dlg.Flags |= PD_RETURNDEFAULT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 /*
1463 * MSDN suggests setting the first parameter to WINSPOOL for
1464 * NT, but NULL appears to work just as well.
1465 */
1466 if (*p_pdev != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001467 prt_dlg.hDC = CreateDC(NULL, (LPCSTR)p_pdev, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 {
1470 prt_dlg.Flags |= PD_RETURNDEFAULT;
1471 if (PrintDlg(&prt_dlg) == 0)
1472 goto init_fail_dlg;
1473 }
1474 }
1475 else if (PrintDlg(&prt_dlg) == 0)
1476 goto init_fail_dlg;
1477 else
1478 {
1479 /*
1480 * keep the previous driver context
1481 */
1482 stored_dm = prt_dlg.hDevMode;
1483 stored_devn = prt_dlg.hDevNames;
1484 stored_nFlags = prt_dlg.Flags;
1485 stored_nCopies = prt_dlg.nCopies;
1486 }
1487
1488 if (prt_dlg.hDC == NULL)
1489 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001490 emsg(_("E237: Printer selection failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491 mch_print_cleanup();
1492 return FALSE;
1493 }
1494
1495 /* Not all printer drivers report the support of color (or grey) in the
1496 * same way. Let's set has_color if there appears to be some way to print
1497 * more than B&W. */
1498 i = GetDeviceCaps(prt_dlg.hDC, NUMCOLORS);
1499 psettings->has_color = (GetDeviceCaps(prt_dlg.hDC, BITSPIXEL) > 1
1500 || GetDeviceCaps(prt_dlg.hDC, PLANES) > 1
1501 || i > 2 || i == -1);
1502
1503 /* Ensure all font styles are baseline aligned */
1504 SetTextAlign(prt_dlg.hDC, TA_BASELINE|TA_LEFT);
1505
1506 /*
1507 * On some windows systems the nCopies parameter is not
1508 * passed back correctly. It must be retrieved from the
1509 * hDevMode struct.
1510 */
1511 mem = (DEVMODE *)GlobalLock(prt_dlg.hDevMode);
1512 if (mem != NULL)
1513 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 if (mem->dmCopies != 1)
1515 stored_nCopies = mem->dmCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 if ((mem->dmFields & DM_DUPLEX) && (mem->dmDuplex & ~DMDUP_SIMPLEX))
1517 psettings->duplex = TRUE;
1518 if ((mem->dmFields & DM_COLOR) && (mem->dmColor & DMCOLOR_COLOR))
1519 psettings->has_color = TRUE;
1520 }
1521 GlobalUnlock(prt_dlg.hDevMode);
1522
1523 devname = (DEVNAMES *)GlobalLock(prt_dlg.hDevNames);
1524 if (devname != 0)
1525 {
1526 char_u *printer_name = (char_u *)devname + devname->wDeviceOffset;
1527 char_u *port_name = (char_u *)devname +devname->wOutputOffset;
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001528 char_u *text = (char_u *)_("to %s on %s");
Bram Moolenaarf191d552014-10-09 17:05:56 +02001529 char_u *printer_name_orig = printer_name;
1530 char_u *port_name_orig = port_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531
Bram Moolenaarf191d552014-10-09 17:05:56 +02001532 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1533 {
1534 char_u *to_free = NULL;
1535 int maxlen;
1536
Bram Moolenaar861d80a2014-10-16 20:35:36 +02001537 acp_to_enc(printer_name, (int)STRLEN(printer_name), &to_free,
1538 &maxlen);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001539 if (to_free != NULL)
1540 printer_name = to_free;
Bram Moolenaar861d80a2014-10-16 20:35:36 +02001541 acp_to_enc(port_name, (int)STRLEN(port_name), &to_free, &maxlen);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001542 if (to_free != NULL)
1543 port_name = to_free;
1544 }
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00001545 prt_name = alloc((unsigned)(STRLEN(printer_name) + STRLEN(port_name)
1546 + STRLEN(text)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 if (prt_name != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001548 wsprintf((char *)prt_name, (const char *)text,
1549 printer_name, port_name);
Bram Moolenaarf191d552014-10-09 17:05:56 +02001550 if (printer_name != printer_name_orig)
1551 vim_free(printer_name);
1552 if (port_name != port_name_orig)
1553 vim_free(port_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 }
1555 GlobalUnlock(prt_dlg.hDevNames);
1556
1557 /*
1558 * Initialise the font according to 'printfont'
1559 */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02001560 vim_memset(&fLogFont, 0, sizeof(fLogFont));
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001561 if (get_logfont(&fLogFont, p_pfn, prt_dlg.hDC, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001563 semsg(_("E613: Unknown printer font: %s"), p_pfn);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 mch_print_cleanup();
1565 return FALSE;
1566 }
1567
1568 for (pifBold = 0; pifBold <= 1; pifBold++)
1569 for (pifItalic = 0; pifItalic <= 1; pifItalic++)
1570 for (pifUnderline = 0; pifUnderline <= 1; pifUnderline++)
1571 {
1572 fLogFont.lfWeight = boldface[pifBold];
1573 fLogFont.lfItalic = pifItalic;
1574 fLogFont.lfUnderline = pifUnderline;
1575 prt_font_handles[pifBold][pifItalic][pifUnderline]
1576 = CreateFontIndirect(&fLogFont);
1577 }
1578
1579 SetBkMode(prt_dlg.hDC, OPAQUE);
1580 SelectObject(prt_dlg.hDC, prt_font_handles[0][0][0]);
1581
1582 /*
1583 * Fill in the settings struct
1584 */
1585 psettings->chars_per_line = prt_get_cpl();
1586 psettings->lines_per_page = prt_get_lpp();
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001587 if (prt_dlg.Flags & PD_USEDEVMODECOPIESANDCOLLATE)
1588 {
1589 psettings->n_collated_copies = (prt_dlg.Flags & PD_COLLATE)
1590 ? prt_dlg.nCopies : 1;
1591 psettings->n_uncollated_copies = (prt_dlg.Flags & PD_COLLATE)
1592 ? 1 : prt_dlg.nCopies;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001594 if (psettings->n_collated_copies == 0)
1595 psettings->n_collated_copies = 1;
1596
1597 if (psettings->n_uncollated_copies == 0)
1598 psettings->n_uncollated_copies = 1;
Bram Moolenaarb04a98f2016-12-01 20:32:29 +01001599 }
1600 else
1601 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 psettings->n_collated_copies = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 psettings->n_uncollated_copies = 1;
Bram Moolenaar7ddc6422014-09-27 11:18:19 +02001604 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605
1606 psettings->jobname = jobname;
1607
1608 return TRUE;
1609
1610init_fail_dlg:
1611 {
1612 DWORD err = CommDlgExtendedError();
1613
1614 if (err)
1615 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 char_u *buf;
1617
1618 /* I suspect FormatMessage() doesn't work for values returned by
1619 * CommDlgExtendedError(). What does? */
1620 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
1621 FORMAT_MESSAGE_FROM_SYSTEM |
1622 FORMAT_MESSAGE_IGNORE_INSERTS,
1623 NULL, err, 0, (LPTSTR)(&buf), 0, NULL);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001624 semsg(_("E238: Print error: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 buf == NULL ? (char_u *)_("Unknown") : buf);
1626 LocalFree((LPVOID)(buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 }
1628 else
1629 msg_clr_eos(); /* Maybe canceled */
1630
1631 mch_print_cleanup();
1632 return FALSE;
1633 }
1634}
1635
1636
1637 int
1638mch_print_begin(prt_settings_T *psettings)
1639{
1640 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 char szBuffer[300];
Bram Moolenaar2290b1f2018-05-13 17:30:45 +02001642 WCHAR *wp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001643
1644 hDlgPrint = CreateDialog(GetModuleHandle(NULL), TEXT("PrintDlgBox"),
1645 prt_dlg.hwndOwner, PrintDlgProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 SetAbortProc(prt_dlg.hDC, AbortProc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 wsprintf(szBuffer, _("Printing '%s'"), gettail(psettings->jobname));
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001648 vimSetDlgItemText(hDlgPrint, IDC_PRINTTEXT1, (char_u *)szBuffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649
Bram Moolenaar2290b1f2018-05-13 17:30:45 +02001650 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1651 wp = enc_to_utf16(psettings->jobname, NULL);
1652 if (wp != NULL)
1653 {
1654 DOCINFOW di;
1655
1656 vim_memset(&di, 0, sizeof(di));
1657 di.cbSize = sizeof(di);
1658 di.lpszDocName = wp;
1659 ret = StartDocW(prt_dlg.hDC, &di);
1660 vim_free(wp);
1661 }
1662 else
Bram Moolenaar2290b1f2018-05-13 17:30:45 +02001663 {
1664 DOCINFO di;
1665
1666 vim_memset(&di, 0, sizeof(di));
1667 di.cbSize = sizeof(di);
1668 di.lpszDocName = (LPCSTR)psettings->jobname;
1669 ret = StartDoc(prt_dlg.hDC, &di);
1670 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671
1672#ifdef FEAT_GUI
1673 /* Give focus back to main window (when using MDI). */
1674 SetFocus(s_hwnd);
1675#endif
1676
1677 return (ret > 0);
1678}
1679
1680 void
Bram Moolenaar1266d672017-02-01 13:43:36 +01001681mch_print_end(prt_settings_T *psettings UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682{
1683 EndDoc(prt_dlg.hDC);
1684 if (!*bUserAbort)
1685 SendMessage(hDlgPrint, WM_COMMAND, 0, 0);
1686}
1687
1688 int
1689mch_print_end_page(void)
1690{
1691 return (EndPage(prt_dlg.hDC) > 0);
1692}
1693
1694 int
1695mch_print_begin_page(char_u *msg)
1696{
1697 if (msg != NULL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001698 vimSetDlgItemText(hDlgPrint, IDC_PROGRESS, msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 return (StartPage(prt_dlg.hDC) > 0);
1700}
1701
1702 int
1703mch_print_blank_page(void)
1704{
1705 return (mch_print_begin_page(NULL) ? (mch_print_end_page()) : FALSE);
1706}
1707
1708static int prt_pos_x = 0;
1709static int prt_pos_y = 0;
1710
1711 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001712mch_print_start_line(int margin, int page_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713{
1714 if (margin)
1715 prt_pos_x = -prt_number_width;
1716 else
1717 prt_pos_x = 0;
1718 prt_pos_y = page_line * prt_line_height
1719 + prt_tm.tmAscent + prt_tm.tmExternalLeading;
1720}
1721
1722 int
1723mch_print_text_out(char_u *p, int len)
1724{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 SIZE sz;
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001726 WCHAR *wp = NULL;
1727 int wlen = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728
Bram Moolenaar5246cd72013-06-16 16:41:47 +02001729 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1730 {
1731 wp = enc_to_utf16(p, &wlen);
1732 }
1733 if (wp != NULL)
1734 {
1735 int ret = FALSE;
1736
1737 TextOutW(prt_dlg.hDC, prt_pos_x + prt_left_margin,
1738 prt_pos_y + prt_top_margin, wp, wlen);
1739 GetTextExtentPoint32W(prt_dlg.hDC, wp, wlen, &sz);
1740 vim_free(wp);
1741 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1742 /* This is wrong when printing spaces for a TAB. */
1743 if (p[len] != NUL)
1744 {
1745 wlen = MB_PTR2LEN(p + len);
1746 wp = enc_to_utf16(p + len, &wlen);
1747 if (wp != NULL)
1748 {
1749 GetTextExtentPoint32W(prt_dlg.hDC, wp, 1, &sz);
1750 ret = (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1751 vim_free(wp);
1752 }
1753 }
1754 return ret;
1755 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 TextOut(prt_dlg.hDC, prt_pos_x + prt_left_margin,
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001757 prt_pos_y + prt_top_margin,
1758 (LPCSTR)p, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759#ifndef FEAT_PROPORTIONAL_FONTS
1760 prt_pos_x += len * prt_tm.tmAveCharWidth;
1761 return (prt_pos_x + prt_left_margin + prt_tm.tmAveCharWidth
1762 + prt_tm.tmOverhang > prt_right_margin);
1763#else
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001764 GetTextExtentPoint32(prt_dlg.hDC, (LPCSTR)p, len, &sz);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 prt_pos_x += (sz.cx - prt_tm.tmOverhang);
1766 /* This is wrong when printing spaces for a TAB. */
1767 if (p[len] == NUL)
1768 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 GetTextExtentPoint32(prt_dlg.hDC, p + len, 1, &sz);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 return (prt_pos_x + prt_left_margin + sz.cx > prt_right_margin);
1771#endif
1772}
1773
1774 void
1775mch_print_set_font(int iBold, int iItalic, int iUnderline)
1776{
1777 SelectObject(prt_dlg.hDC, prt_font_handles[iBold][iItalic][iUnderline]);
1778}
1779
1780 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001781mch_print_set_bg(long_u bgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001783 SetBkColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1784 swap_me((COLORREF)bgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 /*
1786 * With a white background we can draw characters transparent, which is
1787 * good for italic characters that overlap to the next char cell.
1788 */
1789 if (bgcol == 0xffffffUL)
1790 SetBkMode(prt_dlg.hDC, TRANSPARENT);
1791 else
1792 SetBkMode(prt_dlg.hDC, OPAQUE);
1793}
1794
1795 void
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001796mch_print_set_fg(long_u fgcol)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001797{
Bram Moolenaar551dbcc2006-04-25 22:13:59 +00001798 SetTextColor(prt_dlg.hDC, GetNearestColor(prt_dlg.hDC,
1799 swap_me((COLORREF)fgcol)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800}
1801
1802#endif /*FEAT_PRINTER && !FEAT_POSTSCRIPT*/
1803
Bram Moolenaar58d98232005-07-23 22:25:46 +00001804
1805
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806#if defined(FEAT_SHORTCUT) || defined(PROTO)
Bram Moolenaar82881492012-11-20 16:53:39 +01001807# ifndef PROTO
1808# include <shlobj.h>
1809# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810
Bram Moolenaardce1e892019-02-10 23:18:53 +01001811typedef enum _FILE_INFO_BY_HANDLE_CLASS_ {
1812 FileBasicInfo_,
1813 FileStandardInfo_,
1814 FileNameInfo_,
1815 FileRenameInfo_,
1816 FileDispositionInfo_,
1817 FileAllocationInfo_,
1818 FileEndOfFileInfo_,
1819 FileStreamInfo_,
1820 FileCompressionInfo_,
1821 FileAttributeTagInfo_,
1822 FileIdBothDirectoryInfo_,
1823 FileIdBothDirectoryRestartInfo_,
1824 FileIoPriorityHintInfo_,
1825 FileRemoteProtocolInfo_,
1826 FileFullDirectoryInfo_,
1827 FileFullDirectoryRestartInfo_,
1828 FileStorageInfo_,
1829 FileAlignmentInfo_,
1830 FileIdInfo_,
1831 FileIdExtdDirectoryInfo_,
1832 FileIdExtdDirectoryRestartInfo_,
1833 FileDispositionInfoEx_,
1834 FileRenameInfoEx_,
1835 MaximumFileInfoByHandleClass_
1836} FILE_INFO_BY_HANDLE_CLASS_;
1837
1838typedef struct _FILE_NAME_INFO_ {
1839 DWORD FileNameLength;
1840 WCHAR FileName[1];
1841} FILE_NAME_INFO_;
1842
1843typedef BOOL (WINAPI *pfnGetFileInformationByHandleEx)(
1844 HANDLE hFile,
1845 FILE_INFO_BY_HANDLE_CLASS_ FileInformationClass,
1846 LPVOID lpFileInformation,
1847 DWORD dwBufferSize);
1848static pfnGetFileInformationByHandleEx pGetFileInformationByHandleEx = NULL;
1849
1850typedef BOOL (WINAPI *pfnGetVolumeInformationByHandleW)(
1851 HANDLE hFile,
1852 LPWSTR lpVolumeNameBuffer,
1853 DWORD nVolumeNameSize,
1854 LPDWORD lpVolumeSerialNumber,
1855 LPDWORD lpMaximumComponentLength,
1856 LPDWORD lpFileSystemFlags,
1857 LPWSTR lpFileSystemNameBuffer,
1858 DWORD nFileSystemNameSize);
1859static pfnGetVolumeInformationByHandleW pGetVolumeInformationByHandleW = NULL;
1860
1861 char_u *
1862resolve_reparse_point(char_u *fname)
1863{
1864 HANDLE h = INVALID_HANDLE_VALUE;
1865 DWORD size;
1866 char_u *rfname = NULL;
1867 FILE_NAME_INFO_ *nameinfo = NULL;
1868 WCHAR buff[MAX_PATH], *volnames = NULL;
1869 HANDLE hv;
1870 DWORD snfile, snfind;
1871 static BOOL loaded = FALSE;
1872
1873 if (pGetFileInformationByHandleEx == NULL ||
1874 pGetVolumeInformationByHandleW == NULL)
1875 {
1876 HMODULE hmod = GetModuleHandle("kernel32.dll");
1877
1878 if (loaded == TRUE)
1879 return NULL;
1880 pGetFileInformationByHandleEx = (pfnGetFileInformationByHandleEx)
1881 GetProcAddress(hmod, "GetFileInformationByHandleEx");
1882 pGetVolumeInformationByHandleW = (pfnGetVolumeInformationByHandleW)
1883 GetProcAddress(hmod, "GetVolumeInformationByHandleW");
1884 loaded = TRUE;
1885 if (pGetFileInformationByHandleEx == NULL ||
1886 pGetVolumeInformationByHandleW == NULL)
1887 return NULL;
1888 }
1889
1890 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1891 {
1892 WCHAR *p;
1893
1894 p = enc_to_utf16(fname, NULL);
1895 if (p == NULL)
1896 goto fail;
1897
1898 if ((GetFileAttributesW(p) & FILE_ATTRIBUTE_REPARSE_POINT) == 0)
1899 {
1900 vim_free(p);
1901 goto fail;
1902 }
1903
1904 h = CreateFileW(p, 0, 0, NULL, OPEN_EXISTING,
1905 FILE_FLAG_BACKUP_SEMANTICS, NULL);
1906 vim_free(p);
1907 }
1908 else
1909 {
1910 if ((GetFileAttributes((char*) fname) &
1911 FILE_ATTRIBUTE_REPARSE_POINT) == 0)
1912 goto fail;
1913
1914 h = CreateFile((char*) fname, 0, 0, NULL, OPEN_EXISTING,
1915 FILE_FLAG_BACKUP_SEMANTICS, NULL);
1916 }
1917
1918 if (h == INVALID_HANDLE_VALUE)
1919 goto fail;
1920
1921 size = sizeof(FILE_NAME_INFO_) + sizeof(WCHAR) * (MAX_PATH - 1);
1922 nameinfo = (FILE_NAME_INFO_*)alloc(size + sizeof(WCHAR));
1923 if (nameinfo == NULL)
1924 goto fail;
1925
1926 if (!pGetFileInformationByHandleEx(h, FileNameInfo_, nameinfo, size))
1927 goto fail;
1928
1929 nameinfo->FileName[nameinfo->FileNameLength / sizeof(WCHAR)] = 0;
1930
1931 if (!pGetVolumeInformationByHandleW(
1932 h, NULL, 0, &snfile, NULL, NULL, NULL, 0))
1933 goto fail;
1934
1935 hv = FindFirstVolumeW(buff, MAX_PATH);
1936 if (hv == INVALID_HANDLE_VALUE)
1937 goto fail;
1938
1939 do {
1940 GetVolumeInformationW(
1941 buff, NULL, 0, &snfind, NULL, NULL, NULL, 0);
1942 if (snfind == snfile)
1943 break;
1944 } while (FindNextVolumeW(hv, buff, MAX_PATH));
1945
1946 FindVolumeClose(hv);
1947
1948 if (snfind != snfile)
1949 goto fail;
1950
1951 size = 0;
1952 if (!GetVolumePathNamesForVolumeNameW(buff, NULL, 0, &size) &&
1953 GetLastError() != ERROR_MORE_DATA)
1954 goto fail;
1955
1956 volnames = (WCHAR*)alloc(size * sizeof(WCHAR));
1957 if (!GetVolumePathNamesForVolumeNameW(buff, volnames, size,
1958 &size))
1959 goto fail;
1960
1961 wcscpy(buff, volnames);
1962 if (nameinfo->FileName[0] == '\\')
1963 wcscat(buff, nameinfo->FileName + 1);
1964 else
1965 wcscat(buff, nameinfo->FileName);
1966 rfname = utf16_to_enc(buff, NULL);
1967
1968fail:
1969 if (h != INVALID_HANDLE_VALUE)
1970 CloseHandle(h);
1971 if (nameinfo != NULL)
1972 vim_free(nameinfo);
1973 if (volnames != NULL)
1974 vim_free(volnames);
1975
1976 return rfname;
1977}
1978
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979/*
1980 * When "fname" is the name of a shortcut (*.lnk) resolve the file it points
1981 * to and return that name in allocated memory.
1982 * Otherwise NULL is returned.
1983 */
Bram Moolenaardce1e892019-02-10 23:18:53 +01001984 static char_u *
1985resolve_shortcut(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986{
1987 HRESULT hr;
1988 IShellLink *psl = NULL;
1989 IPersistFile *ppf = NULL;
1990 OLECHAR wsz[MAX_PATH];
1991 WIN32_FIND_DATA ffd; // we get those free of charge
Bram Moolenaar604729e2013-08-30 16:44:19 +02001992 CHAR buf[MAX_PATH]; // could have simply reused 'wsz'...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 char_u *rfname = NULL;
1994 int len;
Bram Moolenaar604729e2013-08-30 16:44:19 +02001995 IShellLinkW *pslw = NULL;
1996 WIN32_FIND_DATAW ffdw; // we get those free of charge
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997
1998 /* Check if the file name ends in ".lnk". Avoid calling
1999 * CoCreateInstance(), it's quite slow. */
2000 if (fname == NULL)
2001 return rfname;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002002 len = (int)STRLEN(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002003 if (len <= 4 || STRNICMP(fname + len - 4, ".lnk", 4) != 0)
2004 return rfname;
2005
2006 CoInitialize(NULL);
2007
Bram Moolenaar604729e2013-08-30 16:44:19 +02002008 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2009 {
2010 // create a link manager object and request its interface
2011 hr = CoCreateInstance(
2012 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
2013 &IID_IShellLinkW, (void**)&pslw);
2014 if (hr == S_OK)
2015 {
2016 WCHAR *p = enc_to_utf16(fname, NULL);
2017
2018 if (p != NULL)
2019 {
2020 // Get a pointer to the IPersistFile interface.
2021 hr = pslw->lpVtbl->QueryInterface(
2022 pslw, &IID_IPersistFile, (void**)&ppf);
2023 if (hr != S_OK)
2024 goto shortcut_errorw;
2025
2026 // "load" the name and resolve the link
2027 hr = ppf->lpVtbl->Load(ppf, p, STGM_READ);
2028 if (hr != S_OK)
2029 goto shortcut_errorw;
2030# if 0 // This makes Vim wait a long time if the target does not exist.
2031 hr = pslw->lpVtbl->Resolve(pslw, NULL, SLR_NO_UI);
2032 if (hr != S_OK)
2033 goto shortcut_errorw;
2034# endif
2035
2036 // Get the path to the link target.
2037 ZeroMemory(wsz, MAX_PATH * sizeof(WCHAR));
2038 hr = pslw->lpVtbl->GetPath(pslw, wsz, MAX_PATH, &ffdw, 0);
2039 if (hr == S_OK && wsz[0] != NUL)
2040 rfname = utf16_to_enc(wsz, NULL);
2041
2042shortcut_errorw:
2043 vim_free(p);
Bram Moolenaarcd981f22014-02-11 17:06:00 +01002044 goto shortcut_end;
Bram Moolenaar604729e2013-08-30 16:44:19 +02002045 }
2046 }
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002047 goto shortcut_end;
Bram Moolenaar604729e2013-08-30 16:44:19 +02002048 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 // create a link manager object and request its interface
2050 hr = CoCreateInstance(
2051 &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
2052 &IID_IShellLink, (void**)&psl);
2053 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02002054 goto shortcut_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055
2056 // Get a pointer to the IPersistFile interface.
2057 hr = psl->lpVtbl->QueryInterface(
2058 psl, &IID_IPersistFile, (void**)&ppf);
2059 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02002060 goto shortcut_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061
2062 // full path string must be in Unicode.
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002063 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)fname, -1, wsz, MAX_PATH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064
Bram Moolenaarff1d0d42007-05-10 17:24:16 +00002065 // "load" the name and resolve the link
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 hr = ppf->lpVtbl->Load(ppf, wsz, STGM_READ);
2067 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02002068 goto shortcut_end;
2069# if 0 // This makes Vim wait a long time if the target doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070 hr = psl->lpVtbl->Resolve(psl, NULL, SLR_NO_UI);
2071 if (hr != S_OK)
Bram Moolenaar604729e2013-08-30 16:44:19 +02002072 goto shortcut_end;
2073# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074
2075 // Get the path to the link target.
2076 ZeroMemory(buf, MAX_PATH);
2077 hr = psl->lpVtbl->GetPath(psl, buf, MAX_PATH, &ffd, 0);
2078 if (hr == S_OK && buf[0] != NUL)
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002079 rfname = vim_strsave((char_u *)buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080
Bram Moolenaar604729e2013-08-30 16:44:19 +02002081shortcut_end:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 // Release all interface pointers (both belong to the same object)
2083 if (ppf != NULL)
2084 ppf->lpVtbl->Release(ppf);
2085 if (psl != NULL)
2086 psl->lpVtbl->Release(psl);
Bram Moolenaar604729e2013-08-30 16:44:19 +02002087 if (pslw != NULL)
2088 pslw->lpVtbl->Release(pslw);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089
2090 CoUninitialize();
2091 return rfname;
2092}
Bram Moolenaardce1e892019-02-10 23:18:53 +01002093
2094 char_u *
2095mch_resolve_path(char_u *fname, int reparse_point)
2096{
2097 char_u *path = resolve_shortcut(fname);
2098
2099 if (path == NULL && reparse_point)
2100 path = resolve_reparse_point(fname);
2101 return path;
2102}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103#endif
2104
2105#if (defined(FEAT_EVAL) && !defined(FEAT_GUI)) || defined(PROTO)
2106/*
2107 * Bring ourselves to the foreground. Does work if the OS doesn't allow it.
2108 */
2109 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002110win32_set_foreground(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111{
2112# ifndef FEAT_GUI
2113 GetConsoleHwnd(); /* get value of s_hwnd */
2114# endif
2115 if (s_hwnd != 0)
2116 SetForegroundWindow(s_hwnd);
2117}
2118#endif
2119
2120#if defined(FEAT_CLIENTSERVER) || defined(PROTO)
2121/*
2122 * Client-server code for Vim
2123 *
2124 * Originally written by Paul Moore
2125 */
2126
2127/* In order to handle inter-process messages, we need to have a window. But
2128 * the functions in this module can be called before the main GUI window is
2129 * created (and may also be called in the console version, where there is no
2130 * GUI window at all).
2131 *
2132 * So we create a hidden window, and arrange to destroy it on exit.
2133 */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002134HWND message_window = 0; /* window that's handling messages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135
2136#define VIM_CLASSNAME "VIM_MESSAGES"
2137#define VIM_CLASSNAME_LEN (sizeof(VIM_CLASSNAME) - 1)
2138
2139/* Communication is via WM_COPYDATA messages. The message type is send in
2140 * the dwData parameter. Types are defined here. */
2141#define COPYDATA_KEYS 0
2142#define COPYDATA_REPLY 1
2143#define COPYDATA_EXPR 10
2144#define COPYDATA_RESULT 11
2145#define COPYDATA_ERROR_RESULT 12
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002146#define COPYDATA_ENCODING 20
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147
2148/* This is a structure containing a server HWND and its name. */
2149struct server_id
2150{
2151 HWND hwnd;
2152 char_u *name;
2153};
2154
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002155/* Last received 'encoding' that the client uses. */
2156static char_u *client_enc = NULL;
2157
2158/*
2159 * Tell the other side what encoding we are using.
2160 * Errors are ignored.
2161 */
2162 static void
2163serverSendEnc(HWND target)
2164{
2165 COPYDATASTRUCT data;
2166
2167 data.dwData = COPYDATA_ENCODING;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002168 data.cbData = (DWORD)STRLEN(p_enc) + 1;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002169 data.lpData = p_enc;
2170 (void)SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2171 (LPARAM)(&data));
2172}
2173
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174/*
2175 * Clean up on exit. This destroys the hidden message window.
2176 */
2177 static void
2178#ifdef __BORLANDC__
2179 _RTLENTRYF
2180#endif
2181CleanUpMessaging(void)
2182{
2183 if (message_window != 0)
2184 {
2185 DestroyWindow(message_window);
2186 message_window = 0;
2187 }
2188}
2189
2190static int save_reply(HWND server, char_u *reply, int expr);
2191
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002192/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 * The window procedure for the hidden message window.
2194 * It handles callback messages and notifications from servers.
2195 * In order to process these messages, it is necessary to run a
2196 * message loop. Code which may run before the main message loop
2197 * is started (in the GUI) is careful to pump messages when it needs
2198 * to. Features which require message delivery during normal use will
2199 * not work in the console version - this basically means those
2200 * features which allow Vim to act as a server, rather than a client.
2201 */
2202 static LRESULT CALLBACK
2203Messaging_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
2204{
2205 if (msg == WM_COPYDATA)
2206 {
2207 /* This is a message from another Vim. The dwData member of the
2208 * COPYDATASTRUCT determines the type of message:
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002209 * COPYDATA_ENCODING:
2210 * The encoding that the client uses. Following messages will
2211 * use this encoding, convert if needed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 * COPYDATA_KEYS:
2213 * A key sequence. We are a server, and a client wants these keys
2214 * adding to the input queue.
2215 * COPYDATA_REPLY:
2216 * A reply. We are a client, and a server has sent this message
2217 * in response to a request. (server2client())
2218 * COPYDATA_EXPR:
2219 * An expression. We are a server, and a client wants us to
2220 * evaluate this expression.
2221 * COPYDATA_RESULT:
2222 * A reply. We are a client, and a server has sent this message
2223 * in response to a COPYDATA_EXPR.
2224 * COPYDATA_ERROR_RESULT:
2225 * A reply. We are a client, and a server has sent this message
2226 * in response to a COPYDATA_EXPR that failed to evaluate.
2227 */
2228 COPYDATASTRUCT *data = (COPYDATASTRUCT*)lParam;
2229 HWND sender = (HWND)wParam;
2230 COPYDATASTRUCT reply;
2231 char_u *res;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 int retval;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002233 char_u *str;
2234 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235
2236 switch (data->dwData)
2237 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002238 case COPYDATA_ENCODING:
2239 /* Remember the encoding that the client uses. */
2240 vim_free(client_enc);
2241 client_enc = enc_canonize((char_u *)data->lpData);
2242 return 1;
2243
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 case COPYDATA_KEYS:
2245 /* Remember who sent this, for <client> */
2246 clientWindow = sender;
2247
2248 /* Add the received keys to the input buffer. The loop waiting
2249 * for the user to do something should check the input buffer. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002250 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2251 server_to_input_buf(str);
2252 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253
2254# ifdef FEAT_GUI
2255 /* Wake up the main GUI loop. */
2256 if (s_hwnd != 0)
2257 PostMessage(s_hwnd, WM_NULL, 0, 0);
2258# endif
2259 return 1;
2260
2261 case COPYDATA_EXPR:
2262 /* Remember who sent this, for <client> */
2263 clientWindow = sender;
2264
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002265 str = serverConvert(client_enc, (char_u *)data->lpData, &tofree);
2266 res = eval_client_expr_to_string(str);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002267
Bram Moolenaar071d4272004-06-13 20:20:40 +00002268 if (res == NULL)
2269 {
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002270 char *err = _(e_invexprmsg);
2271 size_t len = STRLEN(str) + STRLEN(err) + 5;
2272
Bram Moolenaar1662ce12017-03-19 21:47:50 +01002273 res = alloc((unsigned)len);
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002274 if (res != NULL)
2275 vim_snprintf((char *)res, len, "%s: \"%s\"", err, str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276 reply.dwData = COPYDATA_ERROR_RESULT;
2277 }
2278 else
2279 reply.dwData = COPYDATA_RESULT;
2280 reply.lpData = res;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002281 reply.cbData = (DWORD)STRLEN(res) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002283 serverSendEnc(sender);
Bram Moolenaar5246cd72013-06-16 16:41:47 +02002284 retval = (int)SendMessage(sender, WM_COPYDATA,
2285 (WPARAM)message_window, (LPARAM)(&reply));
Bram Moolenaar15bf76d2017-03-18 16:18:37 +01002286 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 vim_free(res);
2288 return retval;
2289
2290 case COPYDATA_REPLY:
2291 case COPYDATA_RESULT:
2292 case COPYDATA_ERROR_RESULT:
2293 if (data->lpData != NULL)
2294 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002295 str = serverConvert(client_enc, (char_u *)data->lpData,
2296 &tofree);
2297 if (tofree == NULL)
2298 str = vim_strsave(str);
2299 if (save_reply(sender, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300 (data->dwData == COPYDATA_REPLY ? 0 :
2301 (data->dwData == COPYDATA_RESULT ? 1 :
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002302 2))) == FAIL)
2303 vim_free(str);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002304 else if (data->dwData == COPYDATA_REPLY)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 {
Bram Moolenaar427d51c2013-06-16 16:01:25 +02002306 char_u winstr[30];
2307
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002308 sprintf((char *)winstr, PRINTF_HEX_LONG_U, (long_u)sender);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002309 apply_autocmds(EVENT_REMOTEREPLY, winstr, str,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 TRUE, curbuf);
2311 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 }
2313 return 1;
2314 }
2315
2316 return 0;
2317 }
2318
2319 else if (msg == WM_ACTIVATE && wParam == WA_ACTIVE)
2320 {
2321 /* When the message window is activated (brought to the foreground),
2322 * this actually applies to the text window. */
2323#ifndef FEAT_GUI
2324 GetConsoleHwnd(); /* get value of s_hwnd */
2325#endif
2326 if (s_hwnd != 0)
2327 {
2328 SetForegroundWindow(s_hwnd);
2329 return 0;
2330 }
2331 }
2332
2333 return DefWindowProc(hwnd, msg, wParam, lParam);
2334}
2335
2336/*
2337 * Initialise the message handling process. This involves creating a window
2338 * to handle messages - the window will not be visible.
2339 */
2340 void
2341serverInitMessaging(void)
2342{
2343 WNDCLASS wndclass;
2344 HINSTANCE s_hinst;
2345
2346 /* Clean up on exit */
2347 atexit(CleanUpMessaging);
2348
2349 /* Register a window class - we only really care
2350 * about the window procedure
2351 */
2352 s_hinst = (HINSTANCE)GetModuleHandle(0);
2353 wndclass.style = 0;
2354 wndclass.lpfnWndProc = Messaging_WndProc;
2355 wndclass.cbClsExtra = 0;
2356 wndclass.cbWndExtra = 0;
2357 wndclass.hInstance = s_hinst;
2358 wndclass.hIcon = NULL;
2359 wndclass.hCursor = NULL;
2360 wndclass.hbrBackground = NULL;
2361 wndclass.lpszMenuName = NULL;
2362 wndclass.lpszClassName = VIM_CLASSNAME;
2363 RegisterClass(&wndclass);
2364
2365 /* Create the message window. It will be hidden, so the details don't
2366 * matter. Don't use WS_OVERLAPPEDWINDOW, it will make a shortcut remove
2367 * focus from gvim. */
2368 message_window = CreateWindow(VIM_CLASSNAME, "",
2369 WS_POPUPWINDOW | WS_CAPTION,
2370 CW_USEDEFAULT, CW_USEDEFAULT,
2371 100, 100, NULL, NULL,
2372 s_hinst, NULL);
2373}
2374
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002375/* Used by serverSendToVim() to find an alternate server name. */
2376static char_u *altname_buf_ptr = NULL;
2377
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378/*
2379 * Get the title of the window "hwnd", which is the Vim server name, in
2380 * "name[namelen]" and return the length.
2381 * Returns zero if window "hwnd" is not a Vim server.
2382 */
2383 static int
2384getVimServerName(HWND hwnd, char *name, int namelen)
2385{
2386 int len;
2387 char buffer[VIM_CLASSNAME_LEN + 1];
2388
2389 /* Ignore windows which aren't Vim message windows */
2390 len = GetClassName(hwnd, buffer, sizeof(buffer));
2391 if (len != VIM_CLASSNAME_LEN || STRCMP(buffer, VIM_CLASSNAME) != 0)
2392 return 0;
2393
2394 /* Get the title of the window */
2395 return GetWindowText(hwnd, name, namelen);
2396}
2397
2398 static BOOL CALLBACK
2399enumWindowsGetServer(HWND hwnd, LPARAM lparam)
2400{
2401 struct server_id *id = (struct server_id *)lparam;
2402 char server[MAX_PATH];
2403
2404 /* Get the title of the window */
2405 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2406 return TRUE;
2407
2408 /* If this is the server we're looking for, return its HWND */
2409 if (STRICMP(server, id->name) == 0)
2410 {
2411 id->hwnd = hwnd;
2412 return FALSE;
2413 }
2414
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002415 /* If we are looking for an alternate server, remember this name. */
2416 if (altname_buf_ptr != NULL
2417 && STRNICMP(server, id->name, STRLEN(id->name)) == 0
2418 && vim_isdigit(server[STRLEN(id->name)]))
2419 {
2420 STRCPY(altname_buf_ptr, server);
2421 altname_buf_ptr = NULL; /* don't use another name */
2422 }
2423
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 /* Otherwise, keep looking */
2425 return TRUE;
2426}
2427
2428 static BOOL CALLBACK
2429enumWindowsGetNames(HWND hwnd, LPARAM lparam)
2430{
2431 garray_T *ga = (garray_T *)lparam;
2432 char server[MAX_PATH];
2433
2434 /* Get the title of the window */
2435 if (getVimServerName(hwnd, server, sizeof(server)) == 0)
2436 return TRUE;
2437
2438 /* Add the name to the list */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002439 ga_concat(ga, (char_u *)server);
2440 ga_concat(ga, (char_u *)"\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 return TRUE;
2442}
2443
Bram Moolenaarc0543e12018-10-07 20:35:12 +02002444struct enum_windows_s
2445{
2446 WNDENUMPROC lpEnumFunc;
2447 LPARAM lParam;
2448};
2449
2450 static BOOL CALLBACK
2451enum_windows_child(HWND hwnd, LPARAM lParam)
2452{
2453 struct enum_windows_s *ew = (struct enum_windows_s *)lParam;
2454
2455 return (ew->lpEnumFunc)(hwnd, ew->lParam);
2456}
2457
2458 static BOOL CALLBACK
2459enum_windows_toplevel(HWND hwnd, LPARAM lParam)
2460{
2461 struct enum_windows_s *ew = (struct enum_windows_s *)lParam;
2462
Bram Moolenaar95ba5c32018-10-07 22:47:07 +02002463 if ((ew->lpEnumFunc)(hwnd, ew->lParam))
2464 return TRUE;
Bram Moolenaarc0543e12018-10-07 20:35:12 +02002465 return EnumChildWindows(hwnd, enum_windows_child, lParam);
2466}
2467
2468/* Enumerate all windows including children. */
2469 static BOOL
2470enum_windows(WNDENUMPROC lpEnumFunc, LPARAM lParam)
2471{
2472 struct enum_windows_s ew;
2473
2474 ew.lpEnumFunc = lpEnumFunc;
2475 ew.lParam = lParam;
2476 return EnumWindows(enum_windows_toplevel, (LPARAM)&ew);
2477}
2478
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 static HWND
2480findServer(char_u *name)
2481{
2482 struct server_id id;
2483
2484 id.name = name;
2485 id.hwnd = 0;
2486
Bram Moolenaarc0543e12018-10-07 20:35:12 +02002487 enum_windows(enumWindowsGetServer, (LPARAM)(&id));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488
2489 return id.hwnd;
2490}
2491
2492 void
2493serverSetName(char_u *name)
2494{
2495 char_u *ok_name;
2496 HWND hwnd = 0;
2497 int i = 0;
2498 char_u *p;
2499
2500 /* Leave enough space for a 9-digit suffix to ensure uniqueness! */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002501 ok_name = alloc((unsigned)STRLEN(name) + 10);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502
2503 STRCPY(ok_name, name);
2504 p = ok_name + STRLEN(name);
2505
2506 for (;;)
2507 {
2508 /* This is inefficient - we're doing an EnumWindows loop for each
2509 * possible name. It would be better to grab all names in one go,
2510 * and scan the list each time...
2511 */
2512 hwnd = findServer(ok_name);
2513 if (hwnd == 0)
2514 break;
2515
2516 ++i;
2517 if (i >= 1000)
2518 break;
2519
2520 sprintf((char *)p, "%d", i);
2521 }
2522
2523 if (hwnd != 0)
2524 vim_free(ok_name);
2525 else
2526 {
2527 /* Remember the name */
2528 serverName = ok_name;
2529#ifdef FEAT_TITLE
2530 need_maketitle = TRUE; /* update Vim window title later */
2531#endif
2532
2533 /* Update the message window title */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01002534 SetWindowText(message_window, (LPCSTR)ok_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535
2536#ifdef FEAT_EVAL
2537 /* Set the servername variable */
2538 set_vim_var_string(VV_SEND_SERVER, serverName, -1);
2539#endif
2540 }
2541}
2542
2543 char_u *
2544serverGetVimNames(void)
2545{
2546 garray_T ga;
2547
2548 ga_init2(&ga, 1, 100);
2549
Bram Moolenaarc0543e12018-10-07 20:35:12 +02002550 enum_windows(enumWindowsGetNames, (LPARAM)(&ga));
Bram Moolenaar269ec652004-07-29 08:43:53 +00002551 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552
2553 return ga.ga_data;
2554}
2555
2556 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002557serverSendReply(
2558 char_u *name, /* Where to send. */
2559 char_u *reply) /* What to send. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560{
2561 HWND target;
2562 COPYDATASTRUCT data;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002563 long_u n = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564
2565 /* The "name" argument is a magic cookie obtained from expand("<client>").
2566 * It should be of the form 0xXXXXX - i.e. a C hex literal, which is the
2567 * value of the client's message window HWND.
2568 */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002569 sscanf((char *)name, SCANF_HEX_LONG_U, &n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 if (n == 0)
2571 return -1;
2572
2573 target = (HWND)n;
2574 if (!IsWindow(target))
2575 return -1;
2576
2577 data.dwData = COPYDATA_REPLY;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002578 data.cbData = (DWORD)STRLEN(reply) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 data.lpData = reply;
2580
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002581 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2583 (LPARAM)(&data)))
2584 return 0;
2585
2586 return -1;
2587}
2588
2589 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002590serverSendToVim(
2591 char_u *name, /* Where to send. */
2592 char_u *cmd, /* What to send. */
2593 char_u **result, /* Result of eval'ed expression */
2594 void *ptarget, /* HWND of server */
2595 int asExpr, /* Expression or keys? */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002596 int timeout, /* timeout in seconds or zero */
Bram Moolenaar05540972016-01-30 20:31:25 +01002597 int silent) /* don't complain about no server */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598{
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002599 HWND target;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 COPYDATASTRUCT data;
2601 char_u *retval = NULL;
2602 int retcode = 0;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002603 char_u altname_buf[MAX_PATH];
2604
Bram Moolenaar7416f3e2017-03-18 18:10:13 +01002605 /* Execute locally if no display or target is ourselves */
2606 if (serverName != NULL && STRICMP(name, serverName) == 0)
2607 return sendToLocalVim(cmd, asExpr, result);
2608
Bram Moolenaarf193fff2006-04-27 00:02:13 +00002609 /* If the server name does not end in a digit then we look for an
2610 * alternate name. e.g. when "name" is GVIM the we may find GVIM2. */
2611 if (STRLEN(name) > 1 && !vim_isdigit(name[STRLEN(name) - 1]))
2612 altname_buf_ptr = altname_buf;
2613 altname_buf[0] = NUL;
2614 target = findServer(name);
2615 altname_buf_ptr = NULL;
2616 if (target == 0 && altname_buf[0] != NUL)
2617 /* Use another server name we found. */
2618 target = findServer(altname_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619
2620 if (target == 0)
2621 {
2622 if (!silent)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002623 semsg(_(e_noserver), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 return -1;
2625 }
2626
2627 if (ptarget)
2628 *(HWND *)ptarget = target;
2629
2630 data.dwData = asExpr ? COPYDATA_EXPR : COPYDATA_KEYS;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002631 data.cbData = (DWORD)STRLEN(cmd) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 data.lpData = cmd;
2633
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002634 serverSendEnc(target);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 if (SendMessage(target, WM_COPYDATA, (WPARAM)message_window,
2636 (LPARAM)(&data)) == 0)
2637 return -1;
2638
2639 if (asExpr)
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002640 retval = serverGetReply(target, &retcode, TRUE, TRUE, timeout);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641
2642 if (result == NULL)
2643 vim_free(retval);
2644 else
2645 *result = retval; /* Caller assumes responsibility for freeing */
2646
2647 return retcode;
2648}
2649
2650/*
2651 * Bring the server to the foreground.
2652 */
2653 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002654serverForeground(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655{
2656 HWND target = findServer(name);
2657
2658 if (target != 0)
2659 SetForegroundWindow(target);
2660}
2661
2662/* Replies from server need to be stored until the client picks them up via
2663 * remote_read(). So we maintain a list of server-id/reply pairs.
2664 * Note that there could be multiple replies from one server pending if the
2665 * client is slow picking them up.
2666 * We just store the replies in a simple list. When we remove an entry, we
2667 * move list entries down to fill the gap.
2668 * The server ID is simply the HWND.
2669 */
2670typedef struct
2671{
2672 HWND server; /* server window */
2673 char_u *reply; /* reply string */
2674 int expr_result; /* 0 for REPLY, 1 for RESULT 2 for error */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002675} reply_T;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676
2677static garray_T reply_list = {0, 0, sizeof(reply_T), 5, 0};
2678
2679#define REPLY_ITEM(i) ((reply_T *)(reply_list.ga_data) + (i))
2680#define REPLY_COUNT (reply_list.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681
2682/* Flag which is used to wait for a reply */
2683static int reply_received = 0;
2684
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002685/*
2686 * Store a reply. "reply" must be allocated memory (or NULL).
2687 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 static int
2689save_reply(HWND server, char_u *reply, int expr)
2690{
2691 reply_T *rep;
2692
2693 if (ga_grow(&reply_list, 1) == FAIL)
2694 return FAIL;
2695
2696 rep = REPLY_ITEM(REPLY_COUNT);
2697 rep->server = server;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002698 rep->reply = reply;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699 rep->expr_result = expr;
2700 if (rep->reply == NULL)
2701 return FAIL;
2702
2703 ++REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 reply_received = 1;
2705 return OK;
2706}
2707
2708/*
2709 * Get a reply from server "server".
2710 * When "expr_res" is non NULL, get the result of an expression, otherwise a
2711 * server2client() message.
2712 * When non NULL, point to return code. 0 => OK, -1 => ERROR
2713 * If "remove" is TRUE, consume the message, the caller must free it then.
2714 * if "wait" is TRUE block until a message arrives (or the server exits).
2715 */
2716 char_u *
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002717serverGetReply(HWND server, int *expr_res, int remove, int wait, int timeout)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718{
2719 int i;
2720 char_u *reply;
2721 reply_T *rep;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002722 int did_process = FALSE;
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002723 time_t start;
2724 time_t now;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725
2726 /* When waiting, loop until the message waiting for is received. */
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002727 time(&start);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 for (;;)
2729 {
2730 /* Reset this here, in case a message arrives while we are going
2731 * through the already received messages. */
2732 reply_received = 0;
2733
2734 for (i = 0; i < REPLY_COUNT; ++i)
2735 {
2736 rep = REPLY_ITEM(i);
2737 if (rep->server == server
2738 && ((rep->expr_result != 0) == (expr_res != NULL)))
2739 {
2740 /* Save the values we've found for later */
2741 reply = rep->reply;
2742 if (expr_res != NULL)
2743 *expr_res = rep->expr_result == 1 ? 0 : -1;
2744
2745 if (remove)
2746 {
2747 /* Move the rest of the list down to fill the gap */
2748 mch_memmove(rep, rep + 1,
2749 (REPLY_COUNT - i - 1) * sizeof(reply_T));
2750 --REPLY_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 }
2752
2753 /* Return the reply to the caller, who takes on responsibility
2754 * for freeing it if "remove" is TRUE. */
2755 return reply;
2756 }
2757 }
2758
2759 /* If we got here, we didn't find a reply. Return immediately if the
2760 * "wait" parameter isn't set. */
2761 if (!wait)
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002762 {
2763 /* Process pending messages once. Without this, looping on
2764 * remote_peek() would never get the reply. */
2765 if (!did_process)
2766 {
2767 did_process = TRUE;
2768 serverProcessPendingMessages();
2769 continue;
2770 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 break;
Bram Moolenaar15e737f2017-03-18 21:22:47 +01002772 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773
2774 /* We need to wait for a reply. Enter a message loop until the
2775 * "reply_received" flag gets set. */
2776
2777 /* Loop until we receive a reply */
2778 while (reply_received == 0)
2779 {
Bram Moolenaar42205552017-03-18 19:42:22 +01002780#ifdef FEAT_TIMERS
Bram Moolenaard23a8232018-02-10 18:45:26 +01002781 /* TODO: use the return value to decide how long to wait. */
Bram Moolenaar42205552017-03-18 19:42:22 +01002782 check_due_timer();
2783#endif
Bram Moolenaar81b9d0b2017-03-19 21:20:53 +01002784 time(&now);
2785 if (timeout > 0 && (now - start) >= timeout)
2786 break;
2787
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 /* Wait for a SendMessage() call to us. This could be the reply
2789 * we are waiting for. Use a timeout of a second, to catch the
2790 * situation that the server died unexpectedly. */
2791 MsgWaitForMultipleObjects(0, NULL, TRUE, 1000, QS_ALLINPUT);
2792
2793 /* If the server has died, give up */
2794 if (!IsWindow(server))
2795 return NULL;
2796
2797 serverProcessPendingMessages();
2798 }
2799 }
2800
2801 return NULL;
2802}
2803
2804/*
2805 * Process any messages in the Windows message queue.
2806 */
2807 void
2808serverProcessPendingMessages(void)
2809{
2810 MSG msg;
2811
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002812 while (pPeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 {
2814 TranslateMessage(&msg);
Bram Moolenaar8c85fa32011-08-10 17:08:03 +02002815 pDispatchMessage(&msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 }
2817}
2818
2819#endif /* FEAT_CLIENTSERVER */
2820
2821#if defined(FEAT_GUI) || (defined(FEAT_PRINTER) && !defined(FEAT_POSTSCRIPT)) \
2822 || defined(PROTO)
2823
2824struct charset_pair
2825{
2826 char *name;
2827 BYTE charset;
2828};
2829
2830static struct charset_pair
2831charset_pairs[] =
2832{
2833 {"ANSI", ANSI_CHARSET},
2834 {"CHINESEBIG5", CHINESEBIG5_CHARSET},
2835 {"DEFAULT", DEFAULT_CHARSET},
2836 {"HANGEUL", HANGEUL_CHARSET},
2837 {"OEM", OEM_CHARSET},
2838 {"SHIFTJIS", SHIFTJIS_CHARSET},
2839 {"SYMBOL", SYMBOL_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 {"ARABIC", ARABIC_CHARSET},
2841 {"BALTIC", BALTIC_CHARSET},
2842 {"EASTEUROPE", EASTEUROPE_CHARSET},
2843 {"GB2312", GB2312_CHARSET},
2844 {"GREEK", GREEK_CHARSET},
2845 {"HEBREW", HEBREW_CHARSET},
2846 {"JOHAB", JOHAB_CHARSET},
2847 {"MAC", MAC_CHARSET},
2848 {"RUSSIAN", RUSSIAN_CHARSET},
2849 {"THAI", THAI_CHARSET},
2850 {"TURKISH", TURKISH_CHARSET},
Bram Moolenaarcea912a2016-10-12 14:20:24 +02002851#ifdef VIETNAMESE_CHARSET
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 {"VIETNAMESE", VIETNAMESE_CHARSET},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853#endif
2854 {NULL, 0}
2855};
2856
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002857struct quality_pair
2858{
2859 char *name;
2860 DWORD quality;
2861};
2862
2863static struct quality_pair
2864quality_pairs[] = {
2865#ifdef CLEARTYPE_QUALITY
2866 {"CLEARTYPE", CLEARTYPE_QUALITY},
2867#endif
2868#ifdef ANTIALIASED_QUALITY
2869 {"ANTIALIASED", ANTIALIASED_QUALITY},
2870#endif
Bram Moolenaar73a733e2016-05-11 21:05:05 +02002871#ifdef NONANTIALIASED_QUALITY
2872 {"NONANTIALIASED", NONANTIALIASED_QUALITY},
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002873#endif
2874#ifdef PROOF_QUALITY
2875 {"PROOF", PROOF_QUALITY},
2876#endif
Bram Moolenaar4c9ce052016-04-04 21:06:19 +02002877#ifdef DRAFT_QUALITY
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002878 {"DRAFT", DRAFT_QUALITY},
2879#endif
2880 {"DEFAULT", DEFAULT_QUALITY},
2881 {NULL, 0}
2882};
2883
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884/*
2885 * Convert a charset ID to a name.
2886 * Return NULL when not recognized.
2887 */
2888 char *
2889charset_id2name(int id)
2890{
2891 struct charset_pair *cp;
2892
2893 for (cp = charset_pairs; cp->name != NULL; ++cp)
2894 if ((BYTE)id == cp->charset)
2895 break;
2896 return cp->name;
2897}
2898
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02002899/*
2900 * Convert a quality ID to a name.
2901 * Return NULL when not recognized.
2902 */
2903 char *
2904quality_id2name(DWORD id)
2905{
2906 struct quality_pair *qp;
2907
2908 for (qp = quality_pairs; qp->name != NULL; ++qp)
2909 if (id == qp->quality)
2910 break;
2911 return qp->name;
2912}
2913
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914static const LOGFONT s_lfDefault =
2915{
2916 -12, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, DEFAULT_CHARSET,
2917 OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS,
2918 PROOF_QUALITY, FIXED_PITCH | FF_DONTCARE,
2919 "Fixedsys" /* see _ReadVimIni */
2920};
2921
2922/* Initialise the "current height" to -12 (same as s_lfDefault) just
2923 * in case the user specifies a font in "guifont" with no size before a font
2924 * with an explicit size has been set. This defaults the size to this value
2925 * (-12 equates to roughly 9pt).
2926 */
2927int current_font_height = -12; /* also used in gui_w48.c */
2928
2929/* Convert a string representing a point size into pixels. The string should
2930 * be a positive decimal number, with an optional decimal point (eg, "12", or
2931 * "10.5"). The pixel value is returned, and a pointer to the next unconverted
2932 * character is stored in *end. The flag "vertical" says whether this
2933 * calculation is for a vertical (height) size or a horizontal (width) one.
2934 */
2935 static int
Bram Moolenaareb3593b2006-04-22 22:33:57 +00002936points_to_pixels(char_u *str, char_u **end, int vertical, long_i pprinter_dc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937{
2938 int pixels;
2939 int points = 0;
2940 int divisor = 0;
2941 HWND hwnd = (HWND)0;
2942 HDC hdc;
2943 HDC printer_dc = (HDC)pprinter_dc;
2944
2945 while (*str != NUL)
2946 {
2947 if (*str == '.' && divisor == 0)
2948 {
2949 /* Start keeping a divisor, for later */
2950 divisor = 1;
2951 }
2952 else
2953 {
2954 if (!VIM_ISDIGIT(*str))
2955 break;
2956
2957 points *= 10;
2958 points += *str - '0';
2959 divisor *= 10;
2960 }
2961 ++str;
2962 }
2963
2964 if (divisor == 0)
2965 divisor = 1;
2966
2967 if (printer_dc == NULL)
2968 {
2969 hwnd = GetDesktopWindow();
2970 hdc = GetWindowDC(hwnd);
2971 }
2972 else
2973 hdc = printer_dc;
2974
2975 pixels = MulDiv(points,
2976 GetDeviceCaps(hdc, vertical ? LOGPIXELSY : LOGPIXELSX),
2977 72 * divisor);
2978
2979 if (printer_dc == NULL)
2980 ReleaseDC(hwnd, hdc);
2981
2982 *end = str;
2983 return pixels;
2984}
2985
2986 static int CALLBACK
2987font_enumproc(
2988 ENUMLOGFONT *elf,
Bram Moolenaar1266d672017-02-01 13:43:36 +01002989 NEWTEXTMETRIC *ntm UNUSED,
2990 int type UNUSED,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 LPARAM lparam)
2992{
2993 /* Return value:
2994 * 0 = terminate now (monospace & ANSI)
2995 * 1 = continue, still no luck...
2996 * 2 = continue, but we have an acceptable LOGFONT
2997 * (monospace, not ANSI)
2998 * We use these values, as EnumFontFamilies returns 1 if the
2999 * callback function is never called. So, we check the return as
3000 * 0 = perfect, 2 = OK, 1 = no good...
3001 * It's not pretty, but it works!
3002 */
3003
3004 LOGFONT *lf = (LOGFONT *)(lparam);
3005
3006#ifndef FEAT_PROPORTIONAL_FONTS
3007 /* Ignore non-monospace fonts without further ado */
3008 if ((ntm->tmPitchAndFamily & 1) != 0)
3009 return 1;
3010#endif
3011
3012 /* Remember this LOGFONT as a "possible" */
3013 *lf = elf->elfLogFont;
3014
3015 /* Terminate the scan as soon as we find an ANSI font */
3016 if (lf->lfCharSet == ANSI_CHARSET
3017 || lf->lfCharSet == OEM_CHARSET
3018 || lf->lfCharSet == DEFAULT_CHARSET)
3019 return 0;
3020
3021 /* Continue the scan - we have a non-ANSI font */
3022 return 2;
3023}
3024
3025 static int
3026init_logfont(LOGFONT *lf)
3027{
3028 int n;
3029 HWND hwnd = GetDesktopWindow();
3030 HDC hdc = GetWindowDC(hwnd);
3031
3032 n = EnumFontFamilies(hdc,
3033 (LPCSTR)lf->lfFaceName,
3034 (FONTENUMPROC)font_enumproc,
3035 (LPARAM)lf);
3036
3037 ReleaseDC(hwnd, hdc);
3038
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003039 /* If we couldn't find a usable font, return failure */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 if (n == 1)
3041 return FAIL;
3042
3043 /* Tidy up the rest of the LOGFONT structure. We set to a basic
3044 * font - get_logfont() sets bold, italic, etc based on the user's
3045 * input.
3046 */
3047 lf->lfHeight = current_font_height;
3048 lf->lfWidth = 0;
3049 lf->lfItalic = FALSE;
3050 lf->lfUnderline = FALSE;
3051 lf->lfStrikeOut = FALSE;
3052 lf->lfWeight = FW_NORMAL;
3053
3054 /* Return success */
3055 return OK;
3056}
3057
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003058/*
3059 * Get font info from "name" into logfont "lf".
3060 * Return OK for a valid name, FAIL otherwise.
3061 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 int
3063get_logfont(
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003064 LOGFONT *lf,
3065 char_u *name,
3066 HDC printer_dc,
3067 int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068{
3069 char_u *p;
3070 int i;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003071 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072 static LOGFONT *lastlf = NULL;
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003073 char_u *acpname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003074
3075 *lf = s_lfDefault;
3076 if (name == NULL)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003077 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003079 /* Convert 'name' from 'encoding' to the current codepage, because
3080 * lf->lfFaceName uses the current codepage.
3081 * TODO: Use Wide APIs instead of ANSI APIs. */
3082 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3083 {
3084 int len;
Bram Moolenaar418f81b2016-02-16 20:12:02 +01003085 enc_to_acp(name, (int)STRLEN(name), &acpname, &len);
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003086 name = acpname;
3087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 if (STRCMP(name, "*") == 0)
3089 {
3090#if defined(FEAT_GUI_W32)
3091 CHOOSEFONT cf;
3092 /* if name is "*", bring up std font dialog: */
Bram Moolenaar7db5fc82010-05-24 11:59:29 +02003093 vim_memset(&cf, 0, sizeof(cf));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 cf.lStructSize = sizeof(cf);
3095 cf.hwndOwner = s_hwnd;
3096 cf.Flags = CF_SCREENFONTS | CF_FIXEDPITCHONLY | CF_INITTOLOGFONTSTRUCT;
3097 if (lastlf != NULL)
3098 *lf = *lastlf;
3099 cf.lpLogFont = lf;
3100 cf.nFontType = 0 ; //REGULAR_FONTTYPE;
3101 if (ChooseFont(&cf))
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003102 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103#endif
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003104 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 }
3106
3107 /*
3108 * Split name up, it could be <name>:h<height>:w<width> etc.
3109 */
3110 for (p = name; *p && *p != ':'; p++)
3111 {
Bram Moolenaar38bc4952016-11-10 17:10:51 +01003112 if (p - name + 1 >= LF_FACESIZE)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003113 goto theend; /* Name too long */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 lf->lfFaceName[p - name] = *p;
3115 }
3116 if (p != name)
3117 lf->lfFaceName[p - name] = NUL;
3118
3119 /* First set defaults */
3120 lf->lfHeight = -12;
3121 lf->lfWidth = 0;
3122 lf->lfWeight = FW_NORMAL;
3123 lf->lfItalic = FALSE;
3124 lf->lfUnderline = FALSE;
3125 lf->lfStrikeOut = FALSE;
3126
3127 /*
3128 * If the font can't be found, try replacing '_' by ' '.
3129 */
3130 if (init_logfont(lf) == FAIL)
3131 {
3132 int did_replace = FALSE;
3133
3134 for (i = 0; lf->lfFaceName[i]; ++i)
Bram Moolenaar89e06c82017-08-11 20:55:55 +02003135 if (IsDBCSLeadByte(lf->lfFaceName[i]))
3136 ++i;
3137 else if (lf->lfFaceName[i] == '_')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 {
3139 lf->lfFaceName[i] = ' ';
3140 did_replace = TRUE;
3141 }
3142 if (!did_replace || init_logfont(lf) == FAIL)
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003143 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 }
3145
3146 while (*p == ':')
3147 p++;
3148
3149 /* Set the values found after ':' */
3150 while (*p)
3151 {
3152 switch (*p++)
3153 {
3154 case 'h':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003155 lf->lfHeight = - points_to_pixels(p, &p, TRUE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 break;
3157 case 'w':
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003158 lf->lfWidth = points_to_pixels(p, &p, FALSE, (long_i)printer_dc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 break;
3160 case 'b':
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 lf->lfWeight = FW_BOLD;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 break;
3163 case 'i':
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 lf->lfItalic = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003165 break;
3166 case 'u':
3167 lf->lfUnderline = TRUE;
3168 break;
3169 case 's':
3170 lf->lfStrikeOut = TRUE;
3171 break;
3172 case 'c':
3173 {
3174 struct charset_pair *cp;
3175
3176 for (cp = charset_pairs; cp->name != NULL; ++cp)
3177 if (STRNCMP(p, cp->name, strlen(cp->name)) == 0)
3178 {
3179 lf->lfCharSet = cp->charset;
3180 p += strlen(cp->name);
3181 break;
3182 }
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003183 if (cp->name == NULL && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003185 semsg(_("E244: Illegal charset name \"%s\" in font name \"%s\""), p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 break;
3187 }
3188 break;
3189 }
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003190 case 'q':
3191 {
3192 struct quality_pair *qp;
3193
3194 for (qp = quality_pairs; qp->name != NULL; ++qp)
3195 if (STRNCMP(p, qp->name, strlen(qp->name)) == 0)
3196 {
3197 lf->lfQuality = qp->quality;
3198 p += strlen(qp->name);
3199 break;
3200 }
3201 if (qp->name == NULL && verbose)
3202 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003203 semsg(_("E244: Illegal quality name \"%s\" in font name \"%s\""), p, name);
Bram Moolenaar7c1c6db2016-04-03 22:08:05 +02003204 break;
3205 }
3206 break;
3207 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 default:
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00003209 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003210 semsg(_("E245: Illegal char '%c' in font name \"%s\""), p[-1], name);
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003211 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 }
3213 while (*p == ':')
3214 p++;
3215 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003216 ret = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 /* ron: init lastlf */
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003220 if (ret == OK && printer_dc == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 {
3222 vim_free(lastlf);
3223 lastlf = (LOGFONT *)alloc(sizeof(LOGFONT));
3224 if (lastlf != NULL)
3225 mch_memmove(lastlf, lf, sizeof(LOGFONT));
3226 }
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003227 vim_free(acpname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228
Bram Moolenaarb1692e22014-03-12 19:24:37 +01003229 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230}
3231
3232#endif /* defined(FEAT_GUI) || defined(FEAT_PRINTER) */
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003233
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003234#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003235/*
3236 * Initialize the Winsock dll.
3237 */
3238 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003239channel_init_winsock(void)
Bram Moolenaarf12d9832016-01-29 21:11:25 +01003240{
3241 WSADATA wsaData;
3242 int wsaerr;
3243
3244 if (WSInitialized)
3245 return;
3246
3247 wsaerr = WSAStartup(MAKEWORD(2, 2), &wsaData);
3248 if (wsaerr == 0)
3249 WSInitialized = TRUE;
3250}
3251#endif