(Fcoding_system_base, Fcoding_system_eol_type)
[bpt/emacs.git] / src / w32select.c
CommitLineData
e9e23e23 1/* Selection processing for Emacs on the Microsoft W32 API.
52c7f9ee 2 Copyright (C) 1993, 1994, 2004 Free Software Foundation.
41a48e45 3
3b7ad313
EN
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
ee78dc32 20
52c7f9ee
JR
21/* Written by Kevin Gallo, Benjamin Riefenstahl */
22
23
24/*
25 * Notes on usage of selection-coding-system and
26 * next-selection-coding-system on MS Windows:
27 *
28 * The selection coding system variables apply only to the version of
29 * the clipboard data that is closest in type, i.e. when a 16-bit
30 * Unicode coding system is given, they apply to he Unicode clipboard
31 * (CF_UNICODETEXT), when a well-known console codepage is given, they
32 * apply to the console version of the clipboard data (CF_OEMTEXT),
33 * else they apply to the normal 8-bit text clipboard (CF_TEXT).
34 *
35 * When pasting (getting data from the OS), the clipboard format that
36 * matches the {next-}selection-coding-system is retrieved. If
37 * Unicode is requested, but not available, 8-bit text (CF_TEXT) is
38 * used. In all other cases the OS will transparently convert
39 * formats, so no other fallback is needed.
40 *
41 * When copying or cutting (sending data to the OS), the data is
42 * announced and stored internally, but only actually rendered on
43 * request. The requester determines the format provided. The
44 * {next-}selection-coding-system is only used, when its corresponding
45 * clipboard type matches the type requested.
46 *
47 * Scenarios to use the facilities for customizing the selection
48 * coding system are:
49 *
50 * ;; Generally use KOI8-R instead of the russian MS codepage for
51 * ;; the 8-bit clipboard.
52 * (set-selection-coding-system 'koi8-r-dos)
53 *
54 * Or
55 *
56 * ;; Create a special clipboard copy function that uses codepage
57 * ;; 1253 (Greek) to copy Greek text to a specific non-Unicode
58 * ;; application.
59 * (defun greek-copy (beg end)
60 * (interactive "r")
61 * (set-next-selection-coding-system 'cp1253-dos)
62 * (copy-region-as-kill beg end))
63 * (global-set-key "\C-c\C-c" 'greek-copy)
64 */
65
66/*
67 * Ideas for further directions:
68 *
69 * The encoding and decoding routines could be moved to Lisp code
70 * similar to how xselect.c does it (using well-known routine names
71 * for the delayed rendering). If the definition of which clipboard
72 * types should be supported is also moved to Lisp, functionality
73 * could be expanded to CF_HTML, CF_RTF and maybe other types.
74 */
75
ee78dc32
GV
76#include <config.h>
77#include "lisp.h"
fbd6baed 78#include "w32term.h" /* for all of the w32 includes */
52c7f9ee 79#include "w32heap.h" /* os_subtype */
ee78dc32 80#include "blockinput.h"
52c7f9ee 81#include "keyboard.h" /* cmd_error_internal() */
bbb059f3
AI
82#include "charset.h"
83#include "coding.h"
f7d05dc4 84#include "composite.h"
ee78dc32 85
52c7f9ee
JR
86
87static HGLOBAL convert_to_handle_as_ascii (void);
88static HGLOBAL convert_to_handle_as_coded (Lisp_Object coding_system);
89static Lisp_Object render (Lisp_Object oformat);
90static Lisp_Object render_locale (void);
91static Lisp_Object render_all (void);
92static void run_protected (Lisp_Object (*code) (), Lisp_Object arg);
93static Lisp_Object lisp_error_handler (Lisp_Object error);
94static LRESULT CALLBACK owner_callback (HWND win, UINT msg,
95 WPARAM wp, LPARAM lp);
96static HWND create_owner (void);
97
98static void setup_config (void);
99static BOOL WINAPI enum_locale_callback (/*const*/ char* loc_string);
100static UINT cp_from_locale (LCID lcid, UINT format);
101static Lisp_Object coding_from_cp (UINT codepage);
102
103
104/* A remnant from X11: Symbol for the CLIPBORD selection type. Other
105 selections are not used on Windows, so we don't need symbols for
106 PRIMARY and SECONDARY. */
9aa94bd5
KH
107Lisp_Object QCLIPBOARD;
108
52c7f9ee 109/* Coding system for communicating with other programs via the
bbb059f3 110 clipboard. */
72aca5fa 111static Lisp_Object Vselection_coding_system;
bbb059f3 112
52c7f9ee 113/* Coding system for the next communication with other programs. */
93cbf229
GV
114static Lisp_Object Vnext_selection_coding_system;
115
52c7f9ee
JR
116/* Internal pseudo-constants, initialized in globals_of_w32select()
117 based on current system parameters. */
118static LCID DEFAULT_LCID;
119static UINT ANSICP, OEMCP;
120static Lisp_Object QUNICODE, QANSICP, QOEMCP;
121
122/* A hidden window just for the clipboard management. */
123static HWND clipboard_owner;
124/* A flag to tell WM_DESTROYCLIPBOARD who is to blame this time (just
125 checking GetClipboardOwner() doesn't work, sadly). */
126static int modifying_clipboard = 0;
127
128/* Configured transfer parameters, based on the last inspection of
129 selection-coding-system. */
130static Lisp_Object cfg_coding_system;
131static UINT cfg_codepage;
132static LCID cfg_lcid;
133static UINT cfg_clipboard_type;
134
135/* The current state for delayed rendering. */
136static Lisp_Object current_text;
137static Lisp_Object current_coding_system;
138static int current_requires_encoding, current_num_nls;
139static UINT current_clipboard_type;
140static LCID current_lcid;
141
142#if TRACE
143#define ONTRACE(stmt) stmt
144#else
145#define ONTRACE(stmt) /*stmt*/
146#endif
147
148
149/* This function assumes that there is no multibyte character in
150 current_text, so we can short-cut encoding. */
151
152static HGLOBAL
153convert_to_handle_as_ascii (void)
ee78dc32 154{
52c7f9ee
JR
155 HGLOBAL htext = NULL;
156 int nbytes;
157 int truelen;
158 unsigned char *src;
159 unsigned char *dst;
41a48e45 160
52c7f9ee 161 ONTRACE (fprintf (stderr, "convert_to_handle_as_ascii\n"));
41a48e45 162
52c7f9ee
JR
163 nbytes = SBYTES (current_text) + 1;
164 src = SDATA (current_text);
41a48e45 165
52c7f9ee
JR
166 /* We need to add to the size the number of LF chars where we have
167 to insert CR chars (the standard CF_TEXT clipboard format uses
168 CRLF line endings, while Emacs uses just LF internally). */
41a48e45 169
52c7f9ee
JR
170 truelen = nbytes + current_num_nls;
171
172 if ((htext = GlobalAlloc (GMEM_MOVEABLE | GMEM_DDESHARE, truelen)) == NULL)
173 return NULL;
41a48e45 174
52c7f9ee
JR
175 if ((dst = (unsigned char *) GlobalLock (htext)) == NULL)
176 {
177 GlobalFree (htext);
178 return NULL;
179 }
180
181 /* convert to CRLF line endings expected by clipboard */
182 while (1)
183 {
184 unsigned char *next;
185 /* copy next line or remaining bytes including '\0' */
186 next = _memccpy (dst, src, '\n', nbytes);
187 if (next)
188 {
189 /* copied one line ending with '\n' */
190 int copied = next - dst;
191 nbytes -= copied;
192 src += copied;
193 /* insert '\r' before '\n' */
194 next[-1] = '\r';
195 next[0] = '\n';
196 dst = next + 1;
197 }
198 else
199 /* copied remaining partial line -> now finished */
200 break;
201 }
202
203 GlobalUnlock (htext);
204
205 return htext;
ee78dc32
GV
206}
207
52c7f9ee
JR
208/* This function assumes that there are multibyte or NUL characters in
209 current_text, or that we need to construct Unicode. It runs the
210 text through the encoding machinery. */
211
212static HGLOBAL
213convert_to_handle_as_coded (Lisp_Object coding_system)
ee78dc32 214{
52c7f9ee
JR
215 HGLOBAL htext = NULL, htext2;
216 int nbytes;
217 unsigned char *src;
218 unsigned char *dst = NULL;
219 int bufsize;
220 struct coding_system coding;
221 Lisp_Object string = Qnil;
222
223 ONTRACE (fprintf (stderr, "convert_to_handle_as_coded: %s\n",
224 SDATA (SYMBOL_NAME (coding_system))));
225
226 setup_coding_system (Fcheck_coding_system (coding_system), &coding);
227 coding.src_multibyte = 1;
228 coding.dst_multibyte = 0;
229 /* Need to set COMPOSITION_DISABLED, otherwise Emacs crashes in
230 encode_coding_iso2022 trying to dereference a null pointer. */
231 coding.composing = COMPOSITION_DISABLED;
232 if (coding.type == coding_type_iso2022)
233 coding.flags |= CODING_FLAG_ISO_SAFE;
234 coding.mode |= CODING_MODE_LAST_BLOCK;
235 /* Force DOS line-ends. */
236 coding.eol_type = CODING_EOL_CRLF;
237
238 if (SYMBOLP (coding.pre_write_conversion)
239 && !NILP (Ffboundp (coding.pre_write_conversion)))
240 string = run_pre_post_conversion_on_str (current_text, &coding, 1);
241 else
242 string = current_text;
243
244 nbytes = SBYTES (string);
245 src = SDATA (string);
41a48e45 246
52c7f9ee
JR
247 bufsize = encoding_buffer_size (&coding, nbytes) +2;
248 htext = GlobalAlloc (GMEM_MOVEABLE | GMEM_DDESHARE, bufsize);
41a48e45 249
52c7f9ee
JR
250 if (htext != NULL)
251 dst = (unsigned char *) GlobalLock (htext);
41a48e45 252
52c7f9ee
JR
253 if (dst != NULL)
254 {
255 encode_coding (&coding, src, dst, nbytes, bufsize-2);
256 /* Add the string terminator. Add two NULs in case we are
257 producing Unicode here. */
258 dst[coding.produced] = dst[coding.produced+1] = '\0';
259 }
41a48e45 260
52c7f9ee
JR
261 if (dst != NULL)
262 GlobalUnlock (htext);
263
264 if (htext != NULL)
265 {
266 /* Shrink data block to actual size. */
267 htext2 = GlobalReAlloc (htext, coding.produced+2,
268 GMEM_MOVEABLE | GMEM_DDESHARE);
269 if (htext2 != NULL) htext = htext2;
270 }
271
272 return htext;
ee78dc32
GV
273}
274
52c7f9ee
JR
275static Lisp_Object
276render (Lisp_Object oformat)
ee78dc32 277{
52c7f9ee
JR
278 HGLOBAL htext = NULL;
279 UINT format = XFASTINT (oformat);
280
281 ONTRACE (fprintf (stderr, "render\n"));
282
283 if (NILP (current_text))
284 return Qnil;
285
286 if (current_requires_encoding || format == CF_UNICODETEXT)
287 {
288 if (format == current_clipboard_type)
289 htext = convert_to_handle_as_coded (current_coding_system);
290 else
291 switch (format)
292 {
293 case CF_UNICODETEXT:
294 htext = convert_to_handle_as_coded (QUNICODE);
295 break;
296 case CF_TEXT:
297 case CF_OEMTEXT:
298 {
299 Lisp_Object cs;
300 cs = coding_from_cp (cp_from_locale (current_lcid, format));
301 htext = convert_to_handle_as_coded (cs);
302 break;
303 }
304 }
305 }
306 else
307 htext = convert_to_handle_as_ascii ();
308
309 ONTRACE (fprintf (stderr, "render: htext = 0x%08X\n", (unsigned) htext));
310
311 if (htext == NULL)
312 return Qnil;
313
314 if (SetClipboardData (format, htext) == NULL)
315 {
316 GlobalFree(htext);
317 return Qnil;
318 }
319
320 return Qt;
ee78dc32
GV
321}
322
52c7f9ee
JR
323static Lisp_Object
324render_locale (void)
ee78dc32 325{
52c7f9ee
JR
326 HANDLE hlocale = NULL;
327 LCID * lcid_ptr;
328
329 ONTRACE (fprintf (stderr, "render_locale\n"));
330
331 if (current_lcid == LOCALE_NEUTRAL || current_lcid == DEFAULT_LCID)
332 return Qt;
333
334 hlocale = GlobalAlloc (GMEM_MOVEABLE | GMEM_DDESHARE, sizeof (current_lcid));
335 if (hlocale == NULL)
336 return Qnil;
337
338 if ((lcid_ptr = (LCID *) GlobalLock (hlocale)) == NULL)
339 {
340 GlobalFree(hlocale);
341 return Qnil;
342 }
343
344 *lcid_ptr = current_lcid;
345 GlobalUnlock (hlocale);
346
347 if (SetClipboardData (CF_LOCALE, hlocale) == NULL)
348 {
349 GlobalFree(hlocale);
350 return Qnil;
351 }
352
353 return Qt;
354}
355
356/* At the end of the program, we want to ensure that our clipboard
357 data survives us. This code will do that. */
358
359static Lisp_Object
360render_all (void)
361{
362 ONTRACE (fprintf (stderr, "render_all\n"));
363
364 /* According to the docs we should not call OpenClipboard() here,
365 but testing on W2K and working code in other projects shows that
366 it is actually necessary. */
367
368 OpenClipboard (NULL);
369
370 /* There is no usefull means to report errors here, there are none
371 expected anyway, and even if there were errors, they wouldn't do
372 any harm. So we just go ahead and do what has to be done without
373 bothering with error handling. */
374
375 ++modifying_clipboard;
376 EmptyClipboard ();
377 --modifying_clipboard;
378
379 /* For text formats that we don't render here, the OS can use its
380 own translation rules instead, so we don't really need to offer
381 everything. To minimize memory consumption we cover three
382 possible situations based on our primary format as detected from
383 selection-coding-system (see setup_config()):
384
385 - Post CF_TEXT only. Let the OS convert to CF_OEMTEXT and the OS
386 (on NT) or the application (on 9x/Me) convert to
387 CF_UNICODETEXT.
388
389 - Post CF_OEMTEXT only. Similar automatic conversions happen as
390 for CF_TEXT.
391
392 - Post CF_UNICODETEXT + CF_TEXT. 9x itself ignores
393 CF_UNICODETEXT, even though some applications can still handle
394 it.
395
396 Note 1: We render the less capable CF_TEXT *before* the more
397 capable CF_UNICODETEXT, to prevent clobbering through automatic
398 conversions, just in case.
399
400 Note 2: We could check os_subtype here and only render the
401 additional CF_TEXT on 9x/Me. But OTOH with
402 current_clipboard_type == CF_UNICODETEXT we don't involve the
403 automatic conversions anywhere else, so to get consistent
404 results, we probably don't want to rely on it here either. */
405
406 render_locale();
407
408 if (current_clipboard_type == CF_UNICODETEXT)
409 render (make_number (CF_TEXT));
410 render (make_number (current_clipboard_type));
411
412 CloseClipboard ();
413
414 return Qnil;
415}
416
417static void
418run_protected (Lisp_Object (*code) (), Lisp_Object arg)
419{
420 /* FIXME: This works but it doesn't feel right. Too much fiddling
421 with global variables and calling strange looking functions. Is
422 this really the right way to run Lisp callbacks? */
423
424 extern int waiting_for_input;
425 int owfi;
41a48e45 426
ee78dc32 427 BLOCK_INPUT;
41a48e45 428
52c7f9ee
JR
429 /* Fsignal calls abort() if it sees that waiting_for_input is
430 set. */
431 owfi = waiting_for_input;
432 waiting_for_input = 0;
433
434 internal_condition_case_1 (code, arg, Qt, lisp_error_handler);
435
436 waiting_for_input = owfi;
41a48e45 437
ee78dc32 438 UNBLOCK_INPUT;
52c7f9ee 439}
41a48e45 440
52c7f9ee
JR
441static Lisp_Object
442lisp_error_handler (Lisp_Object error)
443{
444 Vsignaling_function = Qnil;
445 cmd_error_internal (error, "Error in delayed clipboard rendering: ");
446 Vinhibit_quit = Qt;
447 return Qt;
ee78dc32
GV
448}
449
ee78dc32 450
52c7f9ee
JR
451static LRESULT CALLBACK
452owner_callback (HWND win, UINT msg, WPARAM wp, LPARAM lp)
ee78dc32 453{
52c7f9ee
JR
454 switch (msg)
455 {
456 case WM_RENDERFORMAT:
457 ONTRACE (fprintf (stderr, "WM_RENDERFORMAT\n"));
458 run_protected (render, make_number (wp));
459 return 0;
460
461 case WM_RENDERALLFORMATS:
462 ONTRACE (fprintf (stderr, "WM_RENDERALLFORMATS\n"));
463 run_protected (render_all, Qnil);
464 return 0;
465
466 case WM_DESTROYCLIPBOARD:
467 if (!modifying_clipboard)
468 {
469 ONTRACE (fprintf (stderr, "WM_DESTROYCLIPBOARD (other)\n"));
470 current_text = Qnil;
471 current_coding_system = Qnil;
472 }
473 else
474 {
475 ONTRACE (fprintf (stderr, "WM_DESTROYCLIPBOARD (self)\n"));
476 }
477 return 0;
0ece9ef6 478
52c7f9ee
JR
479 case WM_DESTROY:
480 if (win == clipboard_owner)
481 clipboard_owner = NULL;
482 break;
483 }
41a48e45 484
52c7f9ee
JR
485 return DefWindowProc (win, msg, wp, lp);
486}
41a48e45 487
52c7f9ee
JR
488static HWND
489create_owner (void)
490{
491 static const char CLASSNAME[] = "Emacs Clipboard";
492 WNDCLASS wc;
69cddef0 493
52c7f9ee
JR
494 memset (&wc, 0, sizeof (wc));
495 wc.lpszClassName = CLASSNAME;
496 wc.lpfnWndProc = owner_callback;
497 RegisterClass (&wc);
498
499 return CreateWindow (CLASSNAME, CLASSNAME, 0, 0, 0, 0, 0, NULL, NULL,
500 NULL, NULL);
501}
502
503/* Called on exit by term_ntproc() in w32.c */
504
505void
506term_w32select (void)
507{
508 /* This is needed to trigger WM_RENDERALLFORMATS. */
509 if (clipboard_owner != NULL)
510 DestroyWindow (clipboard_owner);
511}
0ece9ef6 512
52c7f9ee
JR
513static void
514setup_config (void)
515{
516 const char *coding_name;
517 const char *cp;
518 char *end;
519 int slen;
520 Lisp_Object new_coding_system;
521
522 CHECK_SYMBOL (Vselection_coding_system);
523
524 /* Check if we have it cached */
525 new_coding_system = NILP (Vnext_selection_coding_system) ?
526 Vselection_coding_system : Vnext_selection_coding_system;
527 if (!NILP (cfg_coding_system)
528 && EQ (cfg_coding_system, new_coding_system))
529 return;
530 cfg_coding_system = new_coding_system;
531
532 /* Set some sensible fallbacks */
533 cfg_codepage = ANSICP;
534 cfg_lcid = LOCALE_NEUTRAL;
535 cfg_clipboard_type = CF_TEXT;
536
537 /* Interpret the coding system symbol name */
538 coding_name = SDATA (SYMBOL_NAME (cfg_coding_system));
539
540 /* "(.*-)?utf-16.*" -> CF_UNICODETEXT */
541 cp = strstr (coding_name, "utf-16");
542 if (cp != NULL && (cp == coding_name || cp[-1] == '-'))
0ece9ef6 543 {
52c7f9ee
JR
544 cfg_clipboard_type = CF_UNICODETEXT;
545 return;
0ece9ef6 546 }
69cddef0 547
52c7f9ee
JR
548 /* "cp[0-9]+.*" or "windows-[0-9]+.*" -> CF_TEXT or CF_OEMTEXT */
549 slen = strlen (coding_name);
550 if (slen >= 4 && coding_name[0] == 'c' && coding_name[1] == 'p')
551 cp = coding_name + 2;
552 else if (slen >= 10 && memcmp (coding_name, "windows-", 8) == 0)
553 cp = coding_name + 8;
554 else
555 return;
556
557 end = (char*)cp;
558 cfg_codepage = strtol (cp, &end, 10);
559
560 /* Error return from strtol() or number of digits < 2 -> Restore the
561 default and drop it. */
562 if (cfg_codepage == 0 || (end-cp) < 2 )
563 {
564 cfg_codepage = ANSICP;
565 return;
566 }
bbb059f3 567
52c7f9ee
JR
568 /* Is it the currently active system default? */
569 if (cfg_codepage == ANSICP)
570 {
571 /* cfg_clipboard_type = CF_TEXT; */
572 return;
573 }
574 if (cfg_codepage == OEMCP)
575 {
576 cfg_clipboard_type = CF_OEMTEXT;
577 return;
578 }
69cddef0 579
52c7f9ee
JR
580 /* Else determine a suitable locale the hard way. */
581 EnumSystemLocales (enum_locale_callback, LCID_INSTALLED);
582}
69cddef0 583
52c7f9ee
JR
584static BOOL WINAPI
585enum_locale_callback (/*const*/ char* loc_string)
586{
587 LCID lcid;
588 UINT codepage;
69cddef0 589
52c7f9ee 590 lcid = strtoul (loc_string, NULL, 16);
bbb059f3 591
52c7f9ee
JR
592 /* Is the wanted codepage the "ANSI" codepage for this locale? */
593 codepage = cp_from_locale (lcid, CF_TEXT);
594 if (codepage == cfg_codepage)
595 {
596 cfg_lcid = lcid;
597 cfg_clipboard_type = CF_TEXT;
598 return FALSE; /* Stop enumeration */
599 }
600
601 /* Is the wanted codepage the OEM codepage for this locale? */
602 codepage = cp_from_locale (lcid, CF_OEMTEXT);
603 if (codepage == cfg_codepage)
604 {
605 cfg_lcid = lcid;
606 cfg_clipboard_type = CF_OEMTEXT;
607 return FALSE; /* Stop enumeration */
608 }
41a48e45 609
52c7f9ee
JR
610 return TRUE; /* Continue enumeration */
611}
41a48e45 612
52c7f9ee
JR
613static UINT
614cp_from_locale (LCID lcid, UINT format)
615{
616 char buffer[20] = "";
617 UINT variant, cp;
0108f679 618
52c7f9ee
JR
619 variant =
620 format == CF_TEXT ? LOCALE_IDEFAULTANSICODEPAGE : LOCALE_IDEFAULTCODEPAGE;
bbb059f3 621
52c7f9ee
JR
622 GetLocaleInfo (lcid, variant, buffer, sizeof (buffer));
623 cp = strtoul (buffer, NULL, 10);
bf2133d7 624
52c7f9ee
JR
625 if (cp == CP_ACP)
626 return ANSICP;
627 else if (cp == CP_OEMCP)
628 return OEMCP;
629 else
630 return cp;
631}
bf2133d7 632
52c7f9ee
JR
633static Lisp_Object
634coding_from_cp (UINT codepage)
635{
636 char buffer[30];
637 sprintf (buffer, "cp%d-dos", (int) codepage);
638 return intern (buffer);
639 /* We don't need to check that this coding system exists right here,
640 because that is done when the coding system is actually
641 instantiated, i.e. it is passed through Fcheck_coding_system()
642 there. */
ee78dc32 643}
06466d9a 644
06466d9a 645
33f09670
JR
646DEFUN ("w32-set-clipboard-data", Fw32_set_clipboard_data,
647 Sw32_set_clipboard_data, 1, 2, 0,
648 doc: /* This sets the clipboard data to the given text. */)
52c7f9ee
JR
649 (string, ignored)
650 Lisp_Object string, ignored;
ee78dc32
GV
651{
652 BOOL ok = TRUE;
69cddef0 653 int nbytes;
69cddef0
GV
654 unsigned char *src;
655 unsigned char *dst;
52c7f9ee 656 unsigned char *end;
06466d9a 657
52c7f9ee
JR
658 /* This parameter used to be the current frame, but we don't use
659 that any more. */
660 (void) ignored;
41a48e45 661
b7826503 662 CHECK_STRING (string);
41a48e45 663
52c7f9ee 664 setup_config ();
41a48e45 665
52c7f9ee
JR
666 current_text = string;
667 current_coding_system = cfg_coding_system;
668 current_clipboard_type = cfg_clipboard_type;
669 current_lcid = cfg_lcid;
670 current_num_nls = 0;
671 current_requires_encoding = 0;
672
ee78dc32 673 BLOCK_INPUT;
69cddef0 674
52c7f9ee
JR
675 /* Check for non-ASCII characters. While we are at it, count the
676 number of LFs, so we know how many CRs we will have to add later
677 (just in the case where we can use our internal ASCII rendering,
678 see code and comment in convert_to_handle_as_ascii() above). */
679 nbytes = SBYTES (string);
d5db4077 680 src = SDATA (string);
0ece9ef6 681
52c7f9ee 682 for (dst = src, end = src+nbytes; dst < end; dst++)
0ece9ef6 683 {
52c7f9ee
JR
684 if (*dst == '\n')
685 current_num_nls++;
686 else if (*dst >= 0x80 || *dst == 0)
687 {
688 current_requires_encoding = 1;
689 break;
690 }
0ece9ef6 691 }
69cddef0 692
52c7f9ee
JR
693 if (!current_requires_encoding)
694 {
695 /* If all we have is ASCII we don't need to pretend we offer
696 anything fancy. */
697 current_coding_system = Qraw_text;
698 current_clipboard_type = CF_TEXT;
699 current_lcid = LOCALE_NEUTRAL;
700 }
0108f679 701
52c7f9ee 702 if (!OpenClipboard (clipboard_owner))
ee78dc32 703 goto error;
06466d9a 704
52c7f9ee
JR
705 ++modifying_clipboard;
706 ok = EmptyClipboard ();
707 --modifying_clipboard;
06466d9a 708
52c7f9ee
JR
709 /* If we have something non-ASCII we may want to set a locale. We
710 do that directly (non-delayed), as it's just a small bit. */
711 if (ok)
712 ok = !NILP(render_locale());
06466d9a 713
52c7f9ee
JR
714 if (ok)
715 {
716 if (clipboard_owner == NULL)
717 {
718 /* If for some reason we don't have a clipboard_owner, we
719 just set the text format as chosen by the configuration
720 and than forget about the whole thing. */
721 ok = !NILP(render (make_number (current_clipboard_type)));
722 current_text = Qnil;
723 current_coding_system = Qnil;
724 }
725 else
726 {
727 /* Advertise all supported formats so that whatever the
728 requester chooses, only one encoding step needs to be
729 made. This is intentionally different from what we do in
730 the handler for WM_RENDERALLFORMATS. */
731 SetClipboardData (CF_UNICODETEXT, NULL);
732 SetClipboardData (CF_TEXT, NULL);
733 SetClipboardData (CF_OEMTEXT, NULL);
734 }
735 }
41a48e45 736
6383ca22
JR
737 CloseClipboard ();
738
52c7f9ee
JR
739 /* With delayed rendering we haven't really "used" this coding
740 system yet, and it's even unclear if we ever will. But this is a
741 way to tell the upper level what we *would* use under ideal
742 circumstances.
41a48e45 743
52c7f9ee
JR
744 We don't signal the actually used coding-system later when we
745 finally render, because that can happen at any time and we don't
746 want to disturb the "foreground" action. */
747 if (ok)
748 Vlast_coding_system_used = current_coding_system;
6383ca22 749
52c7f9ee 750 Vnext_selection_coding_system = Qnil;
ee79d1aa 751
ee78dc32
GV
752 if (ok) goto done;
753
754 error:
41a48e45 755
ee78dc32 756 ok = FALSE;
52c7f9ee
JR
757 current_text = Qnil;
758 current_coding_system = Qnil;
ee79d1aa 759
ee78dc32
GV
760 done:
761 UNBLOCK_INPUT;
41a48e45 762
ee78dc32
GV
763 return (ok ? string : Qnil);
764}
765
52c7f9ee 766
33f09670
JR
767DEFUN ("w32-get-clipboard-data", Fw32_get_clipboard_data,
768 Sw32_get_clipboard_data, 0, 1, 0,
769 doc: /* This gets the clipboard data in text format. */)
52c7f9ee
JR
770 (ignored)
771 Lisp_Object ignored;
ee78dc32 772{
52c7f9ee 773 HGLOBAL htext;
ee78dc32 774 Lisp_Object ret = Qnil;
52c7f9ee
JR
775 UINT actual_clipboard_type;
776 int use_configured_coding_system = 1;
777
778 /* This parameter used to be the current frame, but we don't use
779 that any more. */
780 (void) ignored;
41a48e45 781
52c7f9ee
JR
782 /* Don't pass our own text from the clipboard (which might be
783 troublesome if the killed text includes null characters). */
784 if (!NILP (current_text))
785 return ret;
786
787 setup_config ();
788 actual_clipboard_type = cfg_clipboard_type;
41a48e45 789
ee78dc32 790 BLOCK_INPUT;
41a48e45 791
52c7f9ee 792 if (!OpenClipboard (clipboard_owner))
ee78dc32 793 goto done;
41a48e45 794
52c7f9ee
JR
795 if ((htext = GetClipboardData (actual_clipboard_type)) == NULL)
796 {
797 /* If we want CF_UNICODETEXT but can't get it, the current
798 coding system is useless. OTOH we can still try and decode
799 CF_TEXT based on the locale that the system gives us and that
800 we get down below. */
801 if (actual_clipboard_type == CF_UNICODETEXT)
802 {
803 htext = GetClipboardData (CF_TEXT);
804 if (htext != NULL)
805 {
806 actual_clipboard_type = CF_TEXT;
807 use_configured_coding_system = 0;
808 }
809 }
810 }
811 if (htext == NULL)
ee78dc32
GV
812 goto closeclip;
813
ee78dc32 814 {
69cddef0
GV
815 unsigned char *src;
816 unsigned char *dst;
ee78dc32 817 int nbytes;
69cddef0 818 int truelen;
c0ca703b 819 int require_decoding = 0;
41a48e45 820
69cddef0 821 if ((src = (unsigned char *) GlobalLock (htext)) == NULL)
ee78dc32 822 goto closeclip;
41a48e45 823
52c7f9ee
JR
824 /* If the clipboard data contains any non-ascii code, we need to
825 decode it with a coding system. */
826 if (actual_clipboard_type == CF_UNICODETEXT)
827 {
828 nbytes = lstrlenW ((WCHAR *)src) * 2;
829 require_decoding = 1;
830 }
831 else
832 {
833 int i;
06466d9a 834
52c7f9ee 835 nbytes = strlen (src);
aab7e392 836
52c7f9ee
JR
837 for (i = 0; i < nbytes; i++)
838 {
839 if (src[i] >= 0x80)
840 {
841 require_decoding = 1;
842 break;
843 }
844 }
845 }
93cbf229 846
c0ca703b 847 if (require_decoding)
69cddef0 848 {
bbb059f3 849 struct coding_system coding;
52c7f9ee
JR
850 Lisp_Object coding_system = Qnil;
851
852 /* `next-selection-coding-system' should override everything,
853 even when the locale passed by the system disagrees. The
854 only exception is when `next-selection-coding-system'
855 requested CF_UNICODETEXT and we couldn't get that. */
856 if (use_configured_coding_system
857 && !NILP (Vnext_selection_coding_system))
858 coding_system = Vnext_selection_coding_system;
859
860 /* If we have CF_TEXT or CF_OEMTEXT, we want to check out
861 CF_LOCALE, too. */
862 else if (actual_clipboard_type != CF_UNICODETEXT)
863 {
864 HGLOBAL hlocale;
865 LCID lcid = DEFAULT_LCID;
866 UINT cp;
867
868 /* Documentation says that the OS always generates
869 CF_LOCALE info automatically, so the locale handle
870 should always be present. Fact is that this is not
871 always true on 9x ;-(. */
872 hlocale = GetClipboardData (CF_LOCALE);
873 if (hlocale != NULL)
874 {
875 const LCID * lcid_ptr;
876 lcid_ptr = (const LCID *) GlobalLock (hlocale);
877 if (lcid_ptr != NULL)
878 {
879 lcid = *lcid_ptr;
880 GlobalUnlock (hlocale);
881 }
882
883 /* 9x has garbage as the sort order (to be exact there
884 is another instance of the language id in the upper
885 word). We don't care about sort order anyway, so
886 we just filter out the unneeded mis-information to
887 avoid irritations. */
888 lcid = MAKELCID (LANGIDFROMLCID (lcid), SORT_DEFAULT);
889 }
890
891 /* If we are using fallback from CF_UNICODETEXT, we can't
892 use the configured coding system. Also we don't want
893 to use it, if the system has supplied us with a locale
894 and it is not just the system default. */
895 if (!use_configured_coding_system || lcid != DEFAULT_LCID)
896 {
897 cp = cp_from_locale (lcid, actual_clipboard_type);
898 /* If it's just our current standard setting anyway,
899 use the coding system that the user has selected.
900 Otherwise create a new spec to match the locale
901 that was specified by the other side or the
902 system. */
903 if (!use_configured_coding_system || cp != cfg_codepage)
904 coding_system = coding_from_cp (cp);
905 }
906 }
907
908 if (NILP (coding_system))
909 coding_system = Vselection_coding_system;
910 Vnext_selection_coding_system = Qnil;
bbb059f3 911
52c7f9ee 912 setup_coding_system (Fcheck_coding_system (coding_system), &coding);
69ebbf81
KH
913 coding.src_multibyte = 0;
914 coding.dst_multibyte = 1;
bbb059f3 915 coding.mode |= CODING_MODE_LAST_BLOCK;
bf2133d7 916 /* We explicitly disable composition handling because
87c14506
KH
917 selection data should not contain any composition
918 sequence. */
bf2133d7 919 coding.common_flags &= ~CODING_ANNOTATION_MASK;
52c7f9ee
JR
920 /* Force DOS line-ends. */
921 coding.eol_type = CODING_EOL_CRLF;
922
bf2133d7
JR
923 coding.dst_bytes = nbytes * 2;
924 coding.destination = (unsigned char *) xmalloc (coding.dst_bytes);
925 decode_coding_c_string (&coding, src, nbytes, Qnil);
926 Vlast_coding_system_used = CODING_ID_NAME (coding.id);
927 ret = make_string_from_bytes ((char *) coding.destination,
06466d9a 928 coding.produced_char, coding.produced);
bf2133d7 929 xfree (coding.destination);
69cddef0 930 }
bbb059f3
AI
931 else
932 {
52c7f9ee
JR
933 /* FIXME: We may want to repeat the code in this branch for
934 the Unicode case. */
935
936 /* Need to know final size after CR chars are removed because
937 we can't change the string size manually, and doing an
938 extra copy is silly. We only remove CR when it appears as
939 part of CRLF. */
bbb059f3
AI
940
941 truelen = nbytes;
942 dst = src;
943 /* avoid using strchr because it recomputes the length everytime */
944 while ((dst = memchr (dst, '\r', nbytes - (dst - src))) != NULL)
945 {
c0ca703b
GV
946 if (dst[1] == '\n') /* safe because of trailing '\0' */
947 truelen--;
bbb059f3
AI
948 dst++;
949 }
69cddef0 950
bbb059f3 951 ret = make_uninit_string (truelen);
69cddef0 952
c0ca703b
GV
953 /* Convert CRLF line endings (the standard CF_TEXT clipboard
954 format) to LF endings as used internally by Emacs. */
69cddef0 955
d5db4077 956 dst = SDATA (ret);
bbb059f3 957 while (1)
69cddef0 958 {
bbb059f3
AI
959 unsigned char *next;
960 /* copy next line or remaining bytes excluding '\0' */
961 next = _memccpy (dst, src, '\r', nbytes);
962 if (next)
963 {
964 /* copied one line ending with '\r' */
965 int copied = next - dst;
966 nbytes -= copied;
c0ca703b 967 dst += copied;
bbb059f3 968 src += copied;
c0ca703b
GV
969 if (*src == '\n')
970 dst--; /* overwrite '\r' with '\n' */
971 }
bbb059f3
AI
972 else
973 /* copied remaining partial line -> now finished */
974 break;
975 }
0108f679
AI
976
977 Vlast_coding_system_used = Qraw_text;
69cddef0
GV
978 }
979
ee78dc32
GV
980 GlobalUnlock (htext);
981 }
982
983 closeclip:
984 CloseClipboard ();
41a48e45 985
ee78dc32
GV
986 done:
987 UNBLOCK_INPUT;
41a48e45 988
ee78dc32
GV
989 return (ret);
990}
991
9aa94bd5
KH
992/* Support checking for a clipboard selection. */
993
994DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p,
33f09670
JR
995 0, 1, 0,
996 doc: /* Whether there is an owner for the given X Selection.
997The arg should be the name of the selection in question, typically one of
998the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
999\(Those are literal upper-case symbol names, since that's what X expects.)
1000For convenience, the symbol nil is the same as `PRIMARY',
1001and t is the same as `SECONDARY'. */)
9aa94bd5
KH
1002 (selection)
1003 Lisp_Object selection;
1004{
b7826503 1005 CHECK_SYMBOL (selection);
9aa94bd5
KH
1006
1007 /* Return nil for PRIMARY and SECONDARY selections; for CLIPBOARD, check
1008 if the clipboard currently has valid text format contents. */
1009
1010 if (EQ (selection, QCLIPBOARD))
1011 {
1012 Lisp_Object val = Qnil;
1013
1014 if (OpenClipboard (NULL))
1015 {
52c7f9ee
JR
1016 UINT format = 0;
1017 setup_config ();
1018 while ((format = EnumClipboardFormats (format)))
1019 /* Check CF_TEXT in addition to cfg_clipboard_type,
1020 because we can fall back on that if CF_UNICODETEXT is
1021 not available. Actually a check for CF_TEXT only
1022 should be enough. */
1023 if (format == cfg_clipboard_type || format == CF_TEXT)
9aa94bd5
KH
1024 {
1025 val = Qt;
1026 break;
1027 }
1028 CloseClipboard ();
1029 }
1030 return val;
1031 }
1032 return Qnil;
1033}
1034
52c7f9ee
JR
1035/* One-time init. Called in the un-dumped Emacs, but not in the
1036 dumped version. */
1037
41a48e45 1038void
fbd6baed 1039syms_of_w32select ()
ee78dc32 1040{
fbd6baed
GV
1041 defsubr (&Sw32_set_clipboard_data);
1042 defsubr (&Sw32_get_clipboard_data);
9aa94bd5
KH
1043 defsubr (&Sx_selection_exists_p);
1044
72aca5fa 1045 DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system,
33f09670 1046 doc: /* Coding system for communicating with other programs.
52c7f9ee
JR
1047When sending or receiving text via cut_buffer, selection, and
1048clipboard, the text is encoded or decoded by this coding system.
1049The default value is the current system default encoding on 9x/Me and
1050`utf-16le-dos' (Unicode) on NT/W2K/XP. */);
1051 /* The actual value is set dynamically in the dumped Emacs, see
1052 below. */
1053 Vselection_coding_system = Qnil;
bbb059f3 1054
93cbf229 1055 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system,
33f09670
JR
1056 doc: /* Coding system for the next communication with other programs.
1057Usually, `selection-coding-system' is used for communicating with
3b32ae2c
JB
1058other programs. But, if this variable is set, it is used for the
1059next communication only. After the communication, this variable is
33f09670 1060set to nil. */);
93cbf229
GV
1061 Vnext_selection_coding_system = Qnil;
1062
9aa94bd5 1063 QCLIPBOARD = intern ("CLIPBOARD"); staticpro (&QCLIPBOARD);
52c7f9ee
JR
1064
1065 cfg_coding_system = Qnil; staticpro (&cfg_coding_system);
1066 current_text = Qnil; staticpro (&current_text);
1067 current_coding_system = Qnil; staticpro (&current_coding_system);
1068
1069 QUNICODE = intern ("utf-16le-dos"); staticpro (&QUNICODE);
1070 QANSICP = Qnil; staticpro (&QANSICP);
1071 QOEMCP = Qnil; staticpro (&QOEMCP);
1072}
1073
1074/* One-time init. Called in the dumped Emacs, but not in the
1075 un-dumped version. */
1076
1077void
1078globals_of_w32select ()
1079{
1080 DEFAULT_LCID = GetUserDefaultLCID ();
1081 /* Drop the sort order from the LCID, so we can compare this with
1082 CF_LOCALE objects that have the same fix on 9x. */
1083 DEFAULT_LCID = MAKELCID (LANGIDFROMLCID (DEFAULT_LCID), SORT_DEFAULT);
1084
1085 ANSICP = GetACP ();
1086 OEMCP = GetOEMCP ();
1087
1088 QANSICP = coding_from_cp (ANSICP);
1089 QOEMCP = coding_from_cp (OEMCP);
1090
1091 if (os_subtype == OS_NT)
1092 Vselection_coding_system = QUNICODE;
1093 else if (inhibit_window_system)
1094 Vselection_coding_system = QOEMCP;
1095 else
1096 Vselection_coding_system = QANSICP;
1097
1098 clipboard_owner = create_owner ();
ee78dc32 1099}
6b61353c
KH
1100
1101/* arch-tag: c96e9724-5eb1-4dad-be07-289f092fd2af
1102 (do not change this comment) */