1 /* 16-bit Windows Selection processing for emacs on MS-Windows
3 Copyright (C) 1996-1997, 2001-2018 Free Software Foundation, Inc.
5 Author: Dale P. Smith <dpsm@en.com>
7 This file is part of GNU Emacs.
9 GNU Emacs is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or (at
12 your option) any later version.
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
22 /* These functions work by using WinOldAp interface. WinOldAp
23 (WINOLDAP.MOD) is a Microsoft Windows extension supporting
24 "old" (character-mode) application access to Dynamic Data Exchange,
25 menus, and the Windows clipboard. */
27 /* Adapted to DJGPP by Eli Zaretskii <eliz@gnu.org> */
34 #include <sys/farptr.h>
36 #include "dispextern.h" /* frame.h seems to want this */
37 #include "frame.h" /* Need this to get the X window of selected_frame */
38 #include "blockinput.h"
39 #include "character.h"
42 #include "composite.h"
44 /* If ever some function outside this file will need to call any
45 clipboard-related function, the following prototypes and constants
46 should be put on a header file. Right now, nobody else uses them. */
49 #define CF_BITMAP 0x02
50 #define CF_METAFILE 0x03
54 #define CF_OEMTEXT 0x07
55 #define CF_DIBBITMAP 0x08
56 #define CF_WINWRITE 0x80
57 #define CF_DSPTEXT 0x81
58 #define CF_DSPBITMAP 0x82
60 unsigned identify_winoldap_version (void);
61 unsigned open_clipboard (void);
62 unsigned empty_clipboard (void);
63 unsigned set_clipboard_data (unsigned, void *, unsigned, int);
64 unsigned get_clipboard_data_size (unsigned);
65 unsigned get_clipboard_data (unsigned, void *, unsigned, int);
66 unsigned close_clipboard (void);
67 unsigned clipboard_compact (unsigned);
69 /* The segment address and the size of the buffer in low
70 memory used to move data between us and WinOldAp module. */
73 unsigned short rm_segment
;
74 } clipboard_xfer_buf_info
;
76 /* The last text we put into the clipboard. This is used to prevent
77 passing back our own text from the clipboard, instead of using the
78 kill ring. The former is undesirable because the clipboard data
79 could be MULEtilated by inappropriately chosen
80 (next-)selection-coding-system. For this reason, we must store the
81 text *after* it was encoded/Unix-to-DOS-converted. */
82 static unsigned char *last_clipboard_text
;
84 /* The size of allocated storage for storing the clipboard data. */
85 static size_t clipboard_storage_size
;
87 /* C functions to access the Windows 3.1x clipboard from DOS apps.
89 The information was obtained from the Microsoft Knowledge Base,
90 article Q67675 and can be found at:
91 http://www.microsoft.com/kb/developr/win_dk/q67675.htm */
93 /* See also Ralf Brown's Interrupt List.
95 I also seem to remember reading about this in Dr. Dobbs Journal a
96 while ago, but if you knew my memory... :-)
98 Dale P. Smith <dpsm@en.com> */
100 /* Return the WinOldAp support version, or 0x1700 if not supported. */
102 identify_winoldap_version (void)
106 /* Calls Int 2Fh/AX=1700h
107 Return Values AX == 1700H: Clipboard functions not available
108 <> 1700H: AL = Major version number
109 AH = Minor version number */
111 __dpmi_int (0x2f, ®s
);
115 /* Open the clipboard, return non-zero if successful. */
117 open_clipboard (void)
121 /* Is WINOLDAP supported? */
122 /* Kludge alert!! If WinOldAp is not supported, we return a 0,
123 which is the same as ``Clipboard already open''. Currently,
124 this is taken as an error by all the functions that use
125 `open_clipboard', but if somebody someday will use that ``open''
126 clipboard, they will have interesting time debugging it... */
127 if (identify_winoldap_version () == 0x1700)
130 /* Calls Int 2Fh/AX=1701h
131 Return Values AX == 0: Clipboard already open
132 <> 0: Clipboard opened */
134 __dpmi_int (0x2f, ®s
);
138 /* Empty clipboard, return non-zero if successful. */
140 empty_clipboard (void)
144 /* Calls Int 2Fh/AX=1702h
145 Return Values AX == 0: Error occurred
146 <> 0: OK, Clipboard emptied */
148 __dpmi_int (0x2f, ®s
);
152 /* Ensure we have a buffer in low memory with enough memory for data
153 of size WANT_SIZE. Return the linear address of the buffer. */
155 alloc_xfer_buf (unsigned want_size
)
159 /* If the usual DJGPP transfer buffer is large enough, use that. */
160 if (want_size
<= _go32_info_block
.size_of_transfer_buffer
)
161 return __tb
& 0xfffff;
163 /* Don't even try to allocate more than 1MB of memory: DOS cannot
164 possibly handle that (it will overflow the BX register below). */
165 if (want_size
> 0xfffff)
168 /* Need size rounded up to the nearest paragraph, and in
169 paragraph units (1 paragraph = 16 bytes). */
170 clipboard_xfer_buf_info
.size
= (want_size
+ 15) >> 4;
172 /* The NT DPMI host crashes us if we free DOS memory via the
173 DPMI service. Work around by calling DOS allocate/free block. */
175 regs
.x
.bx
= clipboard_xfer_buf_info
.size
;
176 __dpmi_int (0x21, ®s
);
177 if (regs
.x
.flags
& 1)
179 clipboard_xfer_buf_info
.size
= 0;
183 clipboard_xfer_buf_info
.rm_segment
= regs
.x
.ax
;
184 return (((int)clipboard_xfer_buf_info
.rm_segment
) << 4) & 0xfffff;
187 /* Free our clipboard buffer. We always free it after use, because
188 keeping it leaves less free conventional memory for subprocesses.
189 The clipboard buffer tends to be large in size, because for small
190 clipboard data sizes we use the DJGPP transfer buffer. */
194 /* If the size is 0, we used DJGPP transfer buffer, so don't free. */
195 if (clipboard_xfer_buf_info
.size
)
199 /* The NT DPMI host crashes us if we free DOS memory via
200 the DPMI service. Work around by calling DOS free block. */
202 regs
.x
.es
= clipboard_xfer_buf_info
.rm_segment
;
203 __dpmi_int (0x21, ®s
);
204 clipboard_xfer_buf_info
.size
= 0;
208 /* Copy data into the clipboard, return zero if successful. */
210 set_clipboard_data (unsigned Format
, void *Data
, unsigned Size
, int Raw
)
214 unsigned long xbuf_addr
, buf_offset
;
215 unsigned char *dp
= Data
, *dstart
= dp
;
217 if (Format
!= CF_OEMTEXT
)
220 /* need to know final size after '\r' chars are inserted (the
221 standard CF_OEMTEXT clipboard format uses CRLF line endings,
222 while Emacs uses just LF internally). */
223 truelen
= Size
+ 1; /* +1 for the terminating null */
227 /* avoid using strchr because it recomputes the length everytime */
228 while ((dp
= memchr (dp
, '\n', Size
- (dp
- dstart
))) != 0)
235 if (clipboard_compact (truelen
) < truelen
)
238 if ((xbuf_addr
= alloc_xfer_buf (truelen
)) == 0)
241 /* Move the buffer into the low memory, convert LF into CR-LF if needed. */
244 dosmemput (Data
, Size
, xbuf_addr
);
246 /* Terminate with a null, otherwise Windows does strange things
247 when the text size is an integral multiple of 32 bytes. */
248 _farpokeb (_dos_ds
, xbuf_addr
+ Size
, '\0');
253 buf_offset
= xbuf_addr
;
254 _farsetsel (_dos_ds
);
257 /* Don't allow them to put binary data into the clipboard, since
258 it will cause yanked data to be truncated at the first null. */
262 _farnspokeb (buf_offset
++, '\r');
263 _farnspokeb (buf_offset
++, *dp
++);
266 /* Terminate with a null, otherwise Windows does strange things
267 when the text size is an integral multiple of 32 bytes. */
268 _farnspokeb (buf_offset
, '\0');
271 /* Stash away the data we are about to put into the clipboard, so we
272 could later check inside get_clipboard_data whether the clipboard
273 still holds our data. */
274 if (clipboard_storage_size
< truelen
)
276 clipboard_storage_size
= truelen
+ 100;
277 last_clipboard_text
=
278 (char *) xrealloc (last_clipboard_text
, clipboard_storage_size
);
280 if (last_clipboard_text
)
281 dosmemget (xbuf_addr
, truelen
, last_clipboard_text
);
283 /* Calls Int 2Fh/AX=1703h with:
284 DX = WinOldAp-Supported Clipboard format
285 ES:BX = Pointer to data
286 SI:CX = Size of data in bytes
287 Return Values AX == 0: Error occurred
288 <> 0: OK. Data copied into the Clipboard. */
291 regs
.x
.si
= truelen
>> 16;
292 regs
.x
.cx
= truelen
& 0xffff;
293 regs
.x
.es
= xbuf_addr
>> 4;
294 regs
.x
.bx
= xbuf_addr
& 15;
295 __dpmi_int (0x2f, ®s
);
299 /* If the above failed, invalidate the local copy of the clipboard. */
301 *last_clipboard_text
= '\0';
303 /* Zero means success, otherwise (1, 2, or 3) it's an error. */
304 return regs
.x
.ax
> 0 ? 0 : 3;
307 /* Return the size of the clipboard data of format FORMAT. */
309 get_clipboard_data_size (unsigned Format
)
313 /* Calls Int 2Fh/AX=1704h with:
314 DX = WinOldAp-Supported Clipboard format
315 Return Values DX:AX == Size of the data in bytes, including any
317 == 0 If data in this format is not in
321 __dpmi_int (0x2f, ®s
);
322 return ( (((unsigned)regs
.x
.dx
) << 16) | regs
.x
.ax
);
325 /* Get clipboard data, return its length.
326 Warning: this doesn't check whether DATA has enough space to hold
329 get_clipboard_data (unsigned Format
, void *Data
, unsigned Size
, int Raw
)
332 unsigned long xbuf_addr
;
333 unsigned char *dp
= Data
;
335 if (Format
!= CF_OEMTEXT
)
341 if ((xbuf_addr
= alloc_xfer_buf (Size
)) == 0)
344 /* Calls Int 2Fh/AX=1705h with:
345 DX = WinOldAp-Supported Clipboard format
346 ES:BX = Pointer to data buffer to hold data
347 Return Values AX == 0: Error occurred (or data in this format is not
352 regs
.x
.es
= xbuf_addr
>> 4;
353 regs
.x
.bx
= xbuf_addr
& 15;
354 __dpmi_int (0x2f, ®s
);
357 unsigned char null_char
= '\0';
358 unsigned long xbuf_beg
= xbuf_addr
;
360 /* If last_clipboard_text is NULL, we don't want to slow down
361 the next loop by an additional test. */
362 register unsigned char *lcdp
=
363 last_clipboard_text
== NULL
? &null_char
: last_clipboard_text
;
365 /* Copy data from low memory, remove CR
366 characters before LF if needed. */
367 _farsetsel (_dos_ds
);
370 register unsigned char c
= _farnspeekb (xbuf_addr
++);
375 if ((*dp
++ = c
) == '\r' && !Raw
&& _farnspeekb (xbuf_addr
) == '\n')
383 /* Windows reportedly rounds up the size of clipboard data
384 (passed in SIZE) to a multiple of 32, and removes trailing
385 spaces from each line without updating SIZE. We therefore
386 bail out when we see the first null character. */
391 /* If the text in clipboard is identical to what we put there
392 last time set_clipboard_data was called, pretend there's no
393 data in the clipboard. This is so we don't pass our own text
394 from the clipboard (which might be troublesome if the killed
395 text includes null characters). */
396 if (last_clipboard_text
&&
397 xbuf_addr
- xbuf_beg
== (long)(lcdp
- last_clipboard_text
))
398 dp
= (unsigned char *)Data
+ 1;
403 return (unsigned) (dp
- (unsigned char *)Data
- 1);
406 /* Close clipboard, return non-zero if successful. */
408 close_clipboard (void)
412 /* Calls Int 2Fh/AX=1708h
413 Return Values AX == 0: Error occurred
416 __dpmi_int (0x2f, ®s
);
420 /* Compact clipboard data so that at least SIZE bytes is available. */
422 clipboard_compact (unsigned Size
)
426 /* Calls Int 2Fh/AX=1709H with:
427 SI:CX = Desired memory size in bytes.
428 Return Values DX:AX == Number of bytes of largest block of free memory.
429 == 0 if error or no memory */
431 regs
.x
.si
= Size
>> 16;
432 regs
.x
.cx
= Size
& 0xffff;
433 __dpmi_int (0x2f, ®s
);
434 return ((unsigned)regs
.x
.dx
<< 16) | regs
.x
.ax
;
437 static char no_mem_msg
[] =
438 "(Not enough DOS memory to put saved text into clipboard.)";
439 static char binary_msg
[] =
440 "(Binary characters in saved text; clipboard data not set.)";
441 static char system_error_msg
[] =
442 "(Clipboard interface failure; clipboard data not set.)";
444 DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data
, Sw16_set_clipboard_data
, 1, 2, 0,
445 doc
: /* This sets the clipboard data to the given text. */)
446 (Lisp_Object string
, Lisp_Object frame
)
448 unsigned ok
= 1, put_status
= 0;
449 int nbytes
, no_crlf_conversion
;
450 unsigned char *src
, *dst
= NULL
;
452 CHECK_STRING (string
);
454 if (!FRAME_MSDOS_P (decode_live_frame (frame
)))
459 if (!open_clipboard ())
462 nbytes
= SBYTES (string
);
463 src
= SDATA (string
);
465 /* Do we need to encode this text? */
466 for (dst
= src
; dst
< src
+ nbytes
; dst
++)
468 if (*dst
== '\0' || *dst
>= 0x80)
471 if (dst
>= src
+ nbytes
)
473 /* No multibyte characters in text. We need not encode it, but we
474 will have to convert it to DOS CR-LF style. */
475 no_crlf_conversion
= 0;
476 Vlast_coding_system_used
= Qraw_text
;
477 dst
= NULL
; /* so we don't try to free a random pointer */
481 /* We must encode contents of STRING according to what
482 clipboard-coding-system specifies. */
483 struct coding_system coding
;
484 Lisp_Object coding_system
=
485 NILP (Vnext_selection_coding_system
) ?
486 Vselection_coding_system
: Vnext_selection_coding_system
;
488 setup_coding_system (Fcheck_coding_system (coding_system
), &coding
);
489 coding
.dst_bytes
= nbytes
* 4;
490 coding
.destination
= xmalloc (coding
.dst_bytes
);
491 Vnext_selection_coding_system
= Qnil
;
492 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
493 dst
= coding
.destination
;
494 encode_coding_object (&coding
, string
, 0, 0,
495 SCHARS (string
), nbytes
, Qnil
);
496 no_crlf_conversion
= 1;
497 nbytes
= coding
.produced
;
498 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
502 ok
= empty_clipboard ()
504 = set_clipboard_data (CF_OEMTEXT
, src
, nbytes
, no_crlf_conversion
))
507 if (!no_crlf_conversion
)
510 if (ok
) goto unblock
;
520 /* Notify user if the text is too large to fit into DOS memory.
521 (This will happen somewhere after 600K bytes (470K in DJGPP v1.x),
522 depending on user system configuration.) If we just silently
523 fail the function, people might wonder why their text sometimes
524 doesn't make it to the clipboard. */
530 message3 (make_unibyte_string (no_mem_msg
, sizeof (no_mem_msg
) - 1));
533 message3 (make_unibyte_string (binary_msg
, sizeof (binary_msg
) - 1));
536 message3 (make_unibyte_string (system_error_msg
, sizeof (system_error_msg
) - 1));
539 sit_for (make_number (2), 0, 2);
544 return (ok
&& put_status
== 0 ? string
: Qnil
);
547 DEFUN ("w16-get-clipboard-data", Fw16_get_clipboard_data
, Sw16_get_clipboard_data
, 0, 1, 0,
548 doc
: /* This gets the clipboard data in text format. */)
551 unsigned data_size
, truelen
;
552 unsigned char *htext
= NULL
;
553 Lisp_Object ret
= Qnil
;
554 int require_decoding
= 0;
556 if (!FRAME_MSDOS_P (decode_live_frame (frame
)))
561 if (!open_clipboard ())
564 if ((data_size
= get_clipboard_data_size (CF_OEMTEXT
)) == 0 ||
565 (htext
= xmalloc (data_size
)) == 0)
568 /* need to know final size after '\r' chars are removed because
569 we can't change the string size manually, and doing an extra
571 if ((truelen
= get_clipboard_data (CF_OEMTEXT
, htext
, data_size
, 0)) == 0)
574 /* Do we need to decode it? */
576 /* If the clipboard data contains any 8-bit Latin-1 code, we
577 need to decode it. */
580 for (i
= 0; i
< truelen
; i
++)
582 if (htext
[i
] >= 0x80)
584 require_decoding
= 1;
589 if (require_decoding
)
591 struct coding_system coding
;
592 Lisp_Object coding_system
= Vnext_selection_coding_system
;
594 truelen
= get_clipboard_data (CF_OEMTEXT
, htext
, data_size
, 1);
595 if (NILP (coding_system
))
596 coding_system
= Vselection_coding_system
;
597 setup_coding_system (Fcheck_coding_system (coding_system
), &coding
);
598 coding
.source
= htext
;
599 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
600 /* We explicitly disable composition handling because selection
601 data should not contain any composition sequence. */
602 coding
.common_flags
&= ~CODING_ANNOTATION_MASK
;
603 decode_coding_object (&coding
, Qnil
, 0, 0, truelen
, truelen
, Qt
);
604 ret
= coding
.dst_object
;
605 Vlast_coding_system_used
= CODING_ID_NAME (coding
.id
);
609 ret
= make_unibyte_string ((char *) htext
, truelen
);
610 Vlast_coding_system_used
= Qraw_text
;
614 Vnext_selection_coding_system
= Qnil
;
627 /* Support checking for a clipboard selection. */
629 DEFUN ("w16-selection-exists-p", Fw16_selection_exists_p
, Sw16_selection_exists_p
,
631 doc
: /* Whether there is an owner for the given X selection.
632 SELECTION should be the name of the selection in question, typically
633 one of the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'. (X expects
634 these literal upper-case names.) The symbol nil is the same as
635 `PRIMARY', and t is the same as `SECONDARY'.
637 TERMINAL should be a terminal object or a frame specifying the X
638 server to query. If omitted or nil, that stands for the selected
639 frame's display, or the first available X display. */)
640 (Lisp_Object selection
, Lisp_Object terminal
)
642 CHECK_SYMBOL (selection
);
644 /* Return nil for SECONDARY selection. For PRIMARY (or nil)
645 selection, check if there is some text on the kill-ring;
646 for CLIPBOARD, check if the clipboard currently has valid
647 text format contents.
649 The test for killed text on the kill-ring emulates the Emacs
650 behavior on X, where killed text is also put into X selection
651 by the X interface code. (On MSDOS, killed text is only put
652 into the clipboard if we run under Windows, so we cannot check
653 the clipboard alone.) */
654 if ((EQ (selection
, Qnil
) || EQ (selection
, QPRIMARY
))
655 && ! NILP (Fsymbol_value (Fintern_soft (build_string ("kill-ring"),
659 if (EQ (selection
, QCLIPBOARD
))
661 Lisp_Object val
= Qnil
;
663 if (open_clipboard ())
665 if (get_clipboard_data_size (CF_OEMTEXT
))
675 syms_of_win16select (void)
677 defsubr (&Sw16_set_clipboard_data
);
678 defsubr (&Sw16_get_clipboard_data
);
679 defsubr (&Sw16_selection_exists_p
);
681 DEFVAR_LISP ("selection-coding-system", Vselection_coding_system
,
682 doc
: /* SKIP: real doc in select.el. */);
683 Vselection_coding_system
= intern ("iso-latin-1-dos");
685 DEFVAR_LISP ("next-selection-coding-system", Vnext_selection_coding_system
,
686 doc
: /* SKIP: real doc in select.el. */);
687 Vnext_selection_coding_system
= Qnil
;
689 DEFSYM (QCLIPBOARD
, "CLIPBOARD");