(child_setup): Test PRIO_PROCESS, as in sys_subshell.
[bpt/emacs.git] / src / xselect.c
CommitLineData
ede4db72 1/* X Selection processing for emacs
c6c5df7f 2 Copyright (C) 1993 Free Software Foundation.
ede4db72
RS
3
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, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
c6c5df7f 20/* x_handle_selection_notify
80da0190
RS
21x_reply_selection_request */
22
c6c5df7f 23
ede4db72
RS
24/* Rewritten by jwz */
25
18160b98 26#include <config.h>
ede4db72 27#include "lisp.h"
7da64e5c
RS
28#if 0
29#include <stdio.h> /* termhooks.h needs this */
30#include "termhooks.h"
31#endif
ede4db72 32#include "xterm.h" /* for all of the X includes */
7da64e5c
RS
33#include "dispextern.h" /* frame.h seems to want this */
34#include "frame.h" /* Need this to get the X window of selected_frame */
9ac0d9e0 35#include "blockinput.h"
7da64e5c
RS
36
37#define xfree free
ede4db72
RS
38
39#define CUT_BUFFER_SUPPORT
40
41static Atom Xatom_CLIPBOARD, Xatom_TIMESTAMP, Xatom_TEXT, Xatom_DELETE,
42 Xatom_MULTIPLE, Xatom_INCR, Xatom_EMACS_TMP, Xatom_TARGETS, Xatom_NULL,
43 Xatom_ATOM_PAIR;
44
45Lisp_Object QPRIMARY, QSECONDARY, QSTRING, QINTEGER, QCLIPBOARD, QTIMESTAMP,
46 QTEXT, QDELETE, QMULTIPLE, QINCR, QEMACS_TMP, QTARGETS, QATOM, QNULL,
47 QATOM_PAIR;
48
49#ifdef CUT_BUFFER_SUPPORT
50Lisp_Object QCUT_BUFFER0, QCUT_BUFFER1, QCUT_BUFFER2, QCUT_BUFFER3,
51 QCUT_BUFFER4, QCUT_BUFFER5, QCUT_BUFFER6, QCUT_BUFFER7;
52#endif
53
54Lisp_Object Vx_lost_selection_hooks;
55Lisp_Object Vx_sent_selection_hooks;
56
57/* If this is a smaller number than the max-request-size of the display,
58 emacs will use INCR selection transfer when the selection is larger
59 than this. The max-request-size is usually around 64k, so if you want
60 emacs to use incremental selection transfers when the selection is
61 smaller than that, set this. I added this mostly for debugging the
62 incremental transfer stuff, but it might improve server performance.
63 */
64#define MAX_SELECTION_QUANTUM 0xFFFFFF
65
c3498e64
JB
66#ifdef HAVE_X11R4
67#define SELECTION_QUANTUM(dpy) ((XMaxRequestSize(dpy) << 2) - 100)
68#else
69#define SELECTION_QUANTUM(dpy) (((dpy)->max_request_size << 2) - 100)
70#endif
ede4db72 71
7da64e5c
RS
72/* The timestamp of the last input event Emacs received from the X server. */
73unsigned long last_event_timestamp;
ede4db72
RS
74
75/* This is an association list whose elements are of the form
76 ( selection-name selection-value selection-timestamp )
77 selection-name is a lisp symbol, whose name is the name of an X Atom.
78 selection-value is the value that emacs owns for that selection.
79 It may be any kind of Lisp object.
80 selection-timestamp is the time at which emacs began owning this selection,
81 as a cons of two 16-bit numbers (making a 32 bit time.)
82 If there is an entry in this alist, then it can be assumed that emacs owns
83 that selection.
84 The only (eq) parts of this list that are visible from Lisp are the
85 selection-values.
86 */
87Lisp_Object Vselection_alist;
88
89/* This is an alist whose CARs are selection-types (whose names are the same
90 as the names of X Atoms) and whose CDRs are the names of Lisp functions to
91 call to convert the given Emacs selection value to a string representing
92 the given selection type. This is for Lisp-level extension of the emacs
93 selection handling.
94 */
95Lisp_Object Vselection_converter_alist;
96
97/* If the selection owner takes too long to reply to a selection request,
80da0190 98 we give up on it. This is in milliseconds (0 = no timeout.)
ede4db72
RS
99 */
100int x_selection_timeout;
101
102\f
103/* Utility functions */
104
105static void lisp_data_to_selection_data ();
106static Lisp_Object selection_data_to_lisp_data ();
107static Lisp_Object x_get_window_property_as_lisp_data ();
108
ede4db72
RS
109/* This converts a Lisp symbol to a server Atom, avoiding a server
110 roundtrip whenever possible. */
111
112static Atom
113symbol_to_x_atom (display, sym)
114 Display *display;
115 Lisp_Object sym;
116{
117 Atom val;
118 if (NILP (sym)) return 0;
119 if (EQ (sym, QPRIMARY)) return XA_PRIMARY;
120 if (EQ (sym, QSECONDARY)) return XA_SECONDARY;
121 if (EQ (sym, QSTRING)) return XA_STRING;
122 if (EQ (sym, QINTEGER)) return XA_INTEGER;
123 if (EQ (sym, QATOM)) return XA_ATOM;
124 if (EQ (sym, QCLIPBOARD)) return Xatom_CLIPBOARD;
125 if (EQ (sym, QTIMESTAMP)) return Xatom_TIMESTAMP;
126 if (EQ (sym, QTEXT)) return Xatom_TEXT;
127 if (EQ (sym, QDELETE)) return Xatom_DELETE;
128 if (EQ (sym, QMULTIPLE)) return Xatom_MULTIPLE;
129 if (EQ (sym, QINCR)) return Xatom_INCR;
130 if (EQ (sym, QEMACS_TMP)) return Xatom_EMACS_TMP;
131 if (EQ (sym, QTARGETS)) return Xatom_TARGETS;
132 if (EQ (sym, QNULL)) return Xatom_NULL;
133#ifdef CUT_BUFFER_SUPPORT
134 if (EQ (sym, QCUT_BUFFER0)) return XA_CUT_BUFFER0;
135 if (EQ (sym, QCUT_BUFFER1)) return XA_CUT_BUFFER1;
136 if (EQ (sym, QCUT_BUFFER2)) return XA_CUT_BUFFER2;
137 if (EQ (sym, QCUT_BUFFER3)) return XA_CUT_BUFFER3;
138 if (EQ (sym, QCUT_BUFFER4)) return XA_CUT_BUFFER4;
139 if (EQ (sym, QCUT_BUFFER5)) return XA_CUT_BUFFER5;
140 if (EQ (sym, QCUT_BUFFER6)) return XA_CUT_BUFFER6;
141 if (EQ (sym, QCUT_BUFFER7)) return XA_CUT_BUFFER7;
142#endif
143 if (!SYMBOLP (sym)) abort ();
144
145#if 0
146 fprintf (stderr, " XInternAtom %s\n", (char *) XSYMBOL (sym)->name->data);
147#endif
148 BLOCK_INPUT;
149 val = XInternAtom (display, (char *) XSYMBOL (sym)->name->data, False);
150 UNBLOCK_INPUT;
151 return val;
152}
153
154
155/* This converts a server Atom to a Lisp symbol, avoiding server roundtrips
156 and calls to intern whenever possible. */
157
158static Lisp_Object
159x_atom_to_symbol (display, atom)
160 Display *display;
161 Atom atom;
162{
163 char *str;
164 Lisp_Object val;
165 if (! atom) return Qnil;
7da64e5c
RS
166 switch (atom)
167 {
168 case XA_PRIMARY:
169 return QPRIMARY;
170 case XA_SECONDARY:
171 return QSECONDARY;
172 case XA_STRING:
173 return QSTRING;
174 case XA_INTEGER:
175 return QINTEGER;
176 case XA_ATOM:
177 return QATOM;
ede4db72 178#ifdef CUT_BUFFER_SUPPORT
7da64e5c
RS
179 case XA_CUT_BUFFER0:
180 return QCUT_BUFFER0;
181 case XA_CUT_BUFFER1:
182 return QCUT_BUFFER1;
183 case XA_CUT_BUFFER2:
184 return QCUT_BUFFER2;
185 case XA_CUT_BUFFER3:
186 return QCUT_BUFFER3;
187 case XA_CUT_BUFFER4:
188 return QCUT_BUFFER4;
189 case XA_CUT_BUFFER5:
190 return QCUT_BUFFER5;
191 case XA_CUT_BUFFER6:
192 return QCUT_BUFFER6;
193 case XA_CUT_BUFFER7:
194 return QCUT_BUFFER7;
ede4db72 195#endif
7da64e5c
RS
196 }
197
198 if (atom == Xatom_CLIPBOARD)
199 return QCLIPBOARD;
200 if (atom == Xatom_TIMESTAMP)
201 return QTIMESTAMP;
202 if (atom == Xatom_TEXT)
203 return QTEXT;
204 if (atom == Xatom_DELETE)
205 return QDELETE;
206 if (atom == Xatom_MULTIPLE)
207 return QMULTIPLE;
208 if (atom == Xatom_INCR)
209 return QINCR;
210 if (atom == Xatom_EMACS_TMP)
211 return QEMACS_TMP;
212 if (atom == Xatom_TARGETS)
213 return QTARGETS;
214 if (atom == Xatom_NULL)
215 return QNULL;
ede4db72
RS
216
217 BLOCK_INPUT;
218 str = XGetAtomName (display, atom);
219 UNBLOCK_INPUT;
220#if 0
221 fprintf (stderr, " XGetAtomName --> %s\n", str);
222#endif
223 if (! str) return Qnil;
224 val = intern (str);
225 BLOCK_INPUT;
226 XFree (str);
227 UNBLOCK_INPUT;
228 return val;
229}
8a89415e 230\f
ede4db72
RS
231/* Do protocol to assert ourself as a selection owner.
232 Update the Vselection_alist so that we can reply to later requests for
233 our selection. */
234
235static void
236x_own_selection (selection_name, selection_value)
237 Lisp_Object selection_name, selection_value;
238{
239 Display *display = x_current_display;
240#ifdef X_TOOLKIT
241 Window selecting_window = XtWindow (selected_screen->display.x->edit_widget);
242#else
243 Window selecting_window = FRAME_X_WINDOW (selected_frame);
244#endif
7da64e5c 245 Time time = last_event_timestamp;
ede4db72
RS
246 Atom selection_atom;
247
248 CHECK_SYMBOL (selection_name, 0);
249 selection_atom = symbol_to_x_atom (display, selection_name);
250
251 BLOCK_INPUT;
252 XSetSelectionOwner (display, selection_atom, selecting_window, time);
253 UNBLOCK_INPUT;
254
255 /* Now update the local cache */
256 {
257 Lisp_Object selection_time;
258 Lisp_Object selection_data;
259 Lisp_Object prev_value;
260
261 selection_time = long_to_cons ((unsigned long) time);
262 selection_data = Fcons (selection_name,
263 Fcons (selection_value,
264 Fcons (selection_time, Qnil)));
265 prev_value = assq_no_quit (selection_name, Vselection_alist);
266
267 Vselection_alist = Fcons (selection_data, Vselection_alist);
268
269 /* If we already owned the selection, remove the old selection data.
270 Perhaps we should destructively modify it instead.
271 Don't use Fdelq as that may QUIT. */
272 if (!NILP (prev_value))
273 {
274 Lisp_Object rest; /* we know it's not the CAR, so it's easy. */
275 for (rest = Vselection_alist; !NILP (rest); rest = Fcdr (rest))
276 if (EQ (prev_value, Fcar (XCONS (rest)->cdr)))
277 {
278 XCONS (rest)->cdr = Fcdr (XCONS (rest)->cdr);
279 break;
280 }
281 }
282 }
283}
284\f
285/* Given a selection-name and desired type, look up our local copy of
286 the selection value and convert it to the type.
287 The value is nil or a string.
288 This function is used both for remote requests
7da64e5c 289 and for local x-get-selection-internal.
ede4db72
RS
290
291 This calls random Lisp code, and may signal or gc. */
292
293static Lisp_Object
294x_get_local_selection (selection_symbol, target_type)
295 Lisp_Object selection_symbol, target_type;
296{
297 Lisp_Object local_value;
298 Lisp_Object handler_fn, value, type, check;
299 int count;
300
301 local_value = assq_no_quit (selection_symbol, Vselection_alist);
302
303 if (NILP (local_value)) return Qnil;
304
305 /* TIMESTAMP and MULTIPLE are special cases 'cause that's easiest. */
306 if (EQ (target_type, QTIMESTAMP))
307 {
308 handler_fn = Qnil;
309 value = XCONS (XCONS (XCONS (local_value)->cdr)->cdr)->car;
310 }
311#if 0
312 else if (EQ (target_type, QDELETE))
313 {
314 handler_fn = Qnil;
315 Fx_disown_selection_internal
316 (selection_symbol,
317 XCONS (XCONS (XCONS (local_value)->cdr)->cdr)->car);
318 value = QNULL;
319 }
320#endif
321
322#if 0 /* #### MULTIPLE doesn't work yet */
323 else if (CONSP (target_type)
324 && XCONS (target_type)->car == QMULTIPLE)
325 {
9d2d1dd8
KH
326 Lisp_Object pairs;
327 int size;
ede4db72 328 int i;
9d2d1dd8
KH
329 pairs = XCONS (target_type)->cdr;
330 size = XVECTOR (pairs)->size;
ede4db72
RS
331 /* If the target is MULTIPLE, then target_type looks like
332 (MULTIPLE . [[SELECTION1 TARGET1] [SELECTION2 TARGET2] ... ])
333 We modify the second element of each pair in the vector and
334 return it as [[SELECTION1 <value1>] [SELECTION2 <value2>] ... ]
335 */
336 for (i = 0; i < size; i++)
337 {
9d2d1dd8
KH
338 Lisp_Object pair;
339 pair = XVECTOR (pairs)->contents [i];
ede4db72
RS
340 XVECTOR (pair)->contents [1]
341 = x_get_local_selection (XVECTOR (pair)->contents [0],
342 XVECTOR (pair)->contents [1]);
343 }
344 return pairs;
345 }
346#endif
347 else
348 {
349 /* Don't allow a quit within the converter.
350 When the user types C-g, he would be surprised
351 if by luck it came during a converter. */
352 count = specpdl_ptr - specpdl;
353 specbind (Qinhibit_quit, Qt);
354
355 CHECK_SYMBOL (target_type, 0);
356 handler_fn = Fcdr (Fassq (target_type, Vselection_converter_alist));
1eb4d468
RS
357 if (!NILP (handler_fn))
358 value = call3 (handler_fn,
359 selection_symbol, target_type,
360 XCONS (XCONS (local_value)->cdr)->car);
361 else
362 value = Qnil;
ede4db72
RS
363 unbind_to (count, Qnil);
364 }
365
366 /* Make sure this value is of a type that we could transmit
367 to another X client. */
a87ed99c 368
ede4db72
RS
369 check = value;
370 if (CONSP (value)
371 && SYMBOLP (XCONS (value)->car))
372 type = XCONS (value)->car,
373 check = XCONS (value)->cdr;
374
375 if (STRINGP (check)
376 || VECTORP (check)
377 || SYMBOLP (check)
7da64e5c 378 || INTEGERP (check)
ede4db72
RS
379 || NILP (value))
380 return value;
a87ed99c 381 /* Check for a value that cons_to_long could handle. */
ede4db72 382 else if (CONSP (check)
7da64e5c
RS
383 && INTEGERP (XCONS (check)->car)
384 && (INTEGERP (XCONS (check)->cdr)
ede4db72
RS
385 ||
386 (CONSP (XCONS (check)->cdr)
7da64e5c 387 && INTEGERP (XCONS (XCONS (check)->cdr)->car)
ede4db72
RS
388 && NILP (XCONS (XCONS (check)->cdr)->cdr))))
389 return value;
390 else
391 return
392 Fsignal (Qerror,
a87ed99c 393 Fcons (build_string ("invalid data returned by selection-conversion function"),
ede4db72
RS
394 Fcons (handler_fn, Fcons (value, Qnil))));
395}
396\f
397/* Subroutines of x_reply_selection_request. */
398
399/* Send a SelectionNotify event to the requestor with property=None,
400 meaning we were unable to do what they wanted. */
401
402static void
403x_decline_selection_request (event)
404 struct input_event *event;
405{
406 XSelectionEvent reply;
407 reply.type = SelectionNotify;
408 reply.display = SELECTION_EVENT_DISPLAY (event);
409 reply.requestor = SELECTION_EVENT_REQUESTOR (event);
410 reply.selection = SELECTION_EVENT_SELECTION (event);
411 reply.time = SELECTION_EVENT_TIME (event);
412 reply.target = SELECTION_EVENT_TARGET (event);
413 reply.property = None;
414
415 BLOCK_INPUT;
7ffb2841
RS
416 XSendEvent (reply.display, reply.requestor, False, 0L,
417 (XEvent *) &reply);
418 XFlushQueue ();
ede4db72
RS
419 UNBLOCK_INPUT;
420}
421
422/* This is the selection request currently being processed.
423 It is set to zero when the request is fully processed. */
424static struct input_event *x_selection_current_request;
425
426/* Used as an unwind-protect clause so that, if a selection-converter signals
427 an error, we tell the requestor that we were unable to do what they wanted
428 before we throw to top-level or go into the debugger or whatever. */
429
430static Lisp_Object
431x_selection_request_lisp_error (ignore)
432 Lisp_Object ignore;
433{
434 if (x_selection_current_request != 0)
435 x_decline_selection_request (x_selection_current_request);
436 return Qnil;
437}
438\f
d1f21a66
RS
439
440/* This stuff is so that INCR selections are reentrant (that is, so we can
441 be servicing multiple INCR selection requests simultaneously.) I haven't
442 actually tested that yet. */
443
444/* Keep a list of the property changes that are awaited. */
445
446struct prop_location
447{
448 int identifier;
449 Display *display;
450 Window window;
451 Atom property;
452 int desired_state;
453 int arrived;
454 struct prop_location *next;
455};
456
457static struct prop_location *expect_property_change ();
458static void wait_for_property_change ();
459static void unexpect_property_change ();
460static int waiting_for_other_props_on_window ();
461
462static int prop_location_identifier;
463
464static Lisp_Object property_change_reply;
465
466static struct prop_location *property_change_reply_object;
467
468static struct prop_location *property_change_wait_list;
469\f
ede4db72
RS
470/* Send the reply to a selection request event EVENT.
471 TYPE is the type of selection data requested.
472 DATA and SIZE describe the data to send, already converted.
473 FORMAT is the unit-size (in bits) of the data to be transmitted. */
474
475static void
476x_reply_selection_request (event, format, data, size, type)
477 struct input_event *event;
478 int format, size;
479 unsigned char *data;
480 Atom type;
481{
482 XSelectionEvent reply;
483 Display *display = SELECTION_EVENT_DISPLAY (event);
484 Window window = SELECTION_EVENT_REQUESTOR (event);
485 int bytes_remaining;
486 int format_bytes = format/8;
487 int max_bytes = SELECTION_QUANTUM (display);
488
489 if (max_bytes > MAX_SELECTION_QUANTUM)
490 max_bytes = MAX_SELECTION_QUANTUM;
491
492 reply.type = SelectionNotify;
493 reply.display = display;
494 reply.requestor = window;
495 reply.selection = SELECTION_EVENT_SELECTION (event);
496 reply.time = SELECTION_EVENT_TIME (event);
497 reply.target = SELECTION_EVENT_TARGET (event);
498 reply.property = SELECTION_EVENT_PROPERTY (event);
499 if (reply.property == None)
500 reply.property = reply.target;
501
502 /* #### XChangeProperty can generate BadAlloc, and we must handle it! */
503
ede4db72
RS
504 /* Store the data on the requested property.
505 If the selection is large, only store the first N bytes of it.
506 */
507 bytes_remaining = size * format_bytes;
508 if (bytes_remaining <= max_bytes)
509 {
510 /* Send all the data at once, with minimal handshaking. */
511#if 0
512 fprintf (stderr,"\nStoring all %d\n", bytes_remaining);
513#endif
2f65feb6 514 BLOCK_INPUT;
ede4db72
RS
515 XChangeProperty (display, window, reply.property, type, format,
516 PropModeReplace, data, size);
517 /* At this point, the selection was successfully stored; ack it. */
2f65feb6
RS
518 XSendEvent (display, window, False, 0L, (XEvent *) &reply);
519 XFlushQueue ();
520 UNBLOCK_INPUT;
ede4db72
RS
521 }
522 else
523 {
524 /* Send an INCR selection. */
d1f21a66 525 struct prop_location *wait_object;
ede4db72 526
2f65feb6
RS
527 BLOCK_INPUT;
528
7da64e5c 529 if (x_window_to_frame (window)) /* #### debug */
ede4db72
RS
530 error ("attempt to transfer an INCR to ourself!");
531#if 0
532 fprintf (stderr, "\nINCR %d\n", bytes_remaining);
533#endif
d1f21a66
RS
534 wait_object = expect_property_change (display, window, reply.property,
535 PropertyDelete);
ede4db72
RS
536
537 XChangeProperty (display, window, reply.property, Xatom_INCR,
538 32, PropModeReplace, (unsigned char *)
539 &bytes_remaining, 1);
540 XSelectInput (display, window, PropertyChangeMask);
541 /* Tell 'em the INCR data is there... */
542 (void) XSendEvent (display, window, False, 0L, (XEvent *) &reply);
2f65feb6
RS
543 XFlushQueue ();
544 UNBLOCK_INPUT;
ede4db72
RS
545
546 /* First, wait for the requestor to ack by deleting the property.
547 This can run random lisp code (process handlers) or signal. */
d1f21a66 548 wait_for_property_change (wait_object);
ede4db72
RS
549
550 while (bytes_remaining)
551 {
552 int i = ((bytes_remaining < max_bytes)
553 ? bytes_remaining
554 : max_bytes);
2f65feb6
RS
555
556 BLOCK_INPUT;
557
d1f21a66
RS
558 wait_object
559 = expect_property_change (display, window, reply.property,
560 PropertyDelete);
ede4db72
RS
561#if 0
562 fprintf (stderr," INCR adding %d\n", i);
563#endif
564 /* Append the next chunk of data to the property. */
565 XChangeProperty (display, window, reply.property, type, format,
566 PropModeAppend, data, i / format_bytes);
567 bytes_remaining -= i;
568 data += i;
2f65feb6
RS
569 XFlushQueue ();
570 UNBLOCK_INPUT;
ede4db72
RS
571
572 /* Now wait for the requestor to ack this chunk by deleting the
573 property. This can run random lisp code or signal.
574 */
d1f21a66 575 wait_for_property_change (wait_object);
ede4db72
RS
576 }
577 /* Now write a zero-length chunk to the property to tell the requestor
578 that we're done. */
579#if 0
580 fprintf (stderr," INCR done\n");
581#endif
2f65feb6 582 BLOCK_INPUT;
ede4db72
RS
583 if (! waiting_for_other_props_on_window (display, window))
584 XSelectInput (display, window, 0L);
585
586 XChangeProperty (display, window, reply.property, type, format,
587 PropModeReplace, data, 0);
2f65feb6
RS
588 XFlushQueue ();
589 UNBLOCK_INPUT;
ede4db72 590 }
ede4db72
RS
591}
592\f
593/* Handle a SelectionRequest event EVENT.
594 This is called from keyboard.c when such an event is found in the queue. */
595
596void
597x_handle_selection_request (event)
598 struct input_event *event;
599{
600 struct gcpro gcpro1, gcpro2, gcpro3;
9d2d1dd8 601 Lisp_Object local_selection_data;
ede4db72 602 Lisp_Object selection_symbol;
9d2d1dd8
KH
603 Lisp_Object target_symbol;
604 Lisp_Object converted_selection;
ede4db72 605 Time local_selection_time;
9d2d1dd8 606 Lisp_Object successful_p;
ede4db72
RS
607 int count;
608
9d2d1dd8
KH
609 local_selection_data = Qnil;
610 target_symbol = Qnil;
611 converted_selection = Qnil;
612 successful_p = Qnil;
613
ede4db72
RS
614 GCPRO3 (local_selection_data, converted_selection, target_symbol);
615
2f65feb6 616 selection_symbol = x_atom_to_symbol (SELECTION_EVENT_DISPLAY (event),
ede4db72
RS
617 SELECTION_EVENT_SELECTION (event));
618
619 local_selection_data = assq_no_quit (selection_symbol, Vselection_alist);
ede4db72
RS
620
621 if (NILP (local_selection_data))
622 {
623 /* Someone asked for the selection, but we don't have it any more.
624 */
625 x_decline_selection_request (event);
626 goto DONE;
627 }
628
629 local_selection_time = (Time)
630 cons_to_long (XCONS (XCONS (XCONS (local_selection_data)->cdr)->cdr)->car);
631
632 if (SELECTION_EVENT_TIME (event) != CurrentTime
7da64e5c 633 && local_selection_time > SELECTION_EVENT_TIME (event))
ede4db72
RS
634 {
635 /* Someone asked for the selection, and we have one, but not the one
636 they're looking for.
637 */
638 x_decline_selection_request (event);
639 goto DONE;
640 }
641
642 count = specpdl_ptr - specpdl;
643 x_selection_current_request = event;
644 record_unwind_protect (x_selection_request_lisp_error, Qnil);
645
2f65feb6 646 target_symbol = x_atom_to_symbol (SELECTION_EVENT_DISPLAY (event),
ede4db72
RS
647 SELECTION_EVENT_TARGET (event));
648
649#if 0 /* #### MULTIPLE doesn't work yet */
650 if (EQ (target_symbol, QMULTIPLE))
651 target_symbol = fetch_multiple_target (event);
652#endif
653
654 /* Convert lisp objects back into binary data */
655
656 converted_selection
657 = x_get_local_selection (selection_symbol, target_symbol);
658
659 if (! NILP (converted_selection))
660 {
661 unsigned char *data;
662 unsigned int size;
663 int format;
664 Atom type;
aca39f42
RS
665 int nofree;
666
2f65feb6
RS
667 lisp_data_to_selection_data (SELECTION_EVENT_DISPLAY (event),
668 converted_selection,
aca39f42 669 &data, &type, &size, &format, &nofree);
ede4db72
RS
670
671 x_reply_selection_request (event, format, data, size, type);
672 successful_p = Qt;
673
674 /* Indicate we have successfully processed this event. */
7da64e5c 675 x_selection_current_request = 0;
ede4db72 676
aca39f42
RS
677 if (!nofree)
678 xfree (data);
ede4db72
RS
679 }
680 unbind_to (count, Qnil);
681
682 DONE:
683
684 UNGCPRO;
685
686 /* Let random lisp code notice that the selection has been asked for. */
687 {
9d2d1dd8
KH
688 Lisp_Object rest;
689 rest = Vx_sent_selection_hooks;
ede4db72
RS
690 if (!EQ (rest, Qunbound))
691 for (; CONSP (rest); rest = Fcdr (rest))
692 call3 (Fcar (rest), selection_symbol, target_symbol, successful_p);
693 }
694}
695\f
696/* Handle a SelectionClear event EVENT, which indicates that some other
697 client cleared out our previously asserted selection.
698 This is called from keyboard.c when such an event is found in the queue. */
699
700void
701x_handle_selection_clear (event)
702 struct input_event *event;
703{
704 Display *display = SELECTION_EVENT_DISPLAY (event);
705 Atom selection = SELECTION_EVENT_SELECTION (event);
706 Time changed_owner_time = SELECTION_EVENT_TIME (event);
707
708 Lisp_Object selection_symbol, local_selection_data;
709 Time local_selection_time;
710
711 selection_symbol = x_atom_to_symbol (display, selection);
712
713 local_selection_data = assq_no_quit (selection_symbol, Vselection_alist);
714
715 /* Well, we already believe that we don't own it, so that's just fine. */
716 if (NILP (local_selection_data)) return;
717
718 local_selection_time = (Time)
719 cons_to_long (XCONS (XCONS (XCONS (local_selection_data)->cdr)->cdr)->car);
720
721 /* This SelectionClear is for a selection that we no longer own, so we can
722 disregard it. (That is, we have reasserted the selection since this
723 request was generated.) */
724
725 if (changed_owner_time != CurrentTime
726 && local_selection_time > changed_owner_time)
727 return;
728
729 /* Otherwise, we're really honest and truly being told to drop it.
730 Don't use Fdelq as that may QUIT;. */
731
732 if (EQ (local_selection_data, Fcar (Vselection_alist)))
733 Vselection_alist = Fcdr (Vselection_alist);
734 else
735 {
736 Lisp_Object rest;
737 for (rest = Vselection_alist; !NILP (rest); rest = Fcdr (rest))
738 if (EQ (local_selection_data, Fcar (XCONS (rest)->cdr)))
739 {
740 XCONS (rest)->cdr = Fcdr (XCONS (rest)->cdr);
741 break;
742 }
743 }
744
745 /* Let random lisp code notice that the selection has been stolen. */
746
747 {
d1f21a66
RS
748 Lisp_Object rest;
749 rest = Vx_lost_selection_hooks;
ede4db72 750 if (!EQ (rest, Qunbound))
d1f21a66
RS
751 {
752 for (; CONSP (rest); rest = Fcdr (rest))
753 call1 (Fcar (rest), selection_symbol);
7c6b2ea4 754 prepare_menu_bars ();
d1f21a66
RS
755 redisplay_preserve_echo_area ();
756 }
ede4db72
RS
757 }
758}
759
760\f
ede4db72
RS
761/* Nonzero if any properties for DISPLAY and WINDOW
762 are on the list of what we are waiting for. */
763
764static int
765waiting_for_other_props_on_window (display, window)
766 Display *display;
767 Window window;
768{
769 struct prop_location *rest = property_change_wait_list;
770 while (rest)
771 if (rest->display == display && rest->window == window)
772 return 1;
773 else
774 rest = rest->next;
775 return 0;
776}
777
778/* Add an entry to the list of property changes we are waiting for.
779 DISPLAY, WINDOW, PROPERTY, STATE describe what we will wait for.
780 The return value is a number that uniquely identifies
781 this awaited property change. */
782
d1f21a66 783static struct prop_location *
ede4db72
RS
784expect_property_change (display, window, property, state)
785 Display *display;
786 Window window;
787 Lisp_Object property;
788 int state;
789{
790 struct prop_location *pl
791 = (struct prop_location *) xmalloc (sizeof (struct prop_location));
2f65feb6 792 pl->identifier = ++prop_location_identifier;
ede4db72
RS
793 pl->display = display;
794 pl->window = window;
795 pl->property = property;
796 pl->desired_state = state;
797 pl->next = property_change_wait_list;
d1f21a66 798 pl->arrived = 0;
ede4db72 799 property_change_wait_list = pl;
d1f21a66 800 return pl;
ede4db72
RS
801}
802
803/* Delete an entry from the list of property changes we are waiting for.
2f65feb6 804 IDENTIFIER is the number that uniquely identifies the entry. */
ede4db72
RS
805
806static void
d1f21a66
RS
807unexpect_property_change (location)
808 struct prop_location *location;
ede4db72
RS
809{
810 struct prop_location *prev = 0, *rest = property_change_wait_list;
811 while (rest)
812 {
d1f21a66 813 if (rest == location)
ede4db72
RS
814 {
815 if (prev)
816 prev->next = rest->next;
817 else
818 property_change_wait_list = rest->next;
819 xfree (rest);
820 return;
821 }
822 prev = rest;
823 rest = rest->next;
824 }
825}
826
2f65feb6
RS
827/* Remove the property change expectation element for IDENTIFIER. */
828
829static Lisp_Object
830wait_for_property_change_unwind (identifierval)
831 Lisp_Object identifierval;
832{
d1f21a66 833 unexpect_property_change (XPNTR (identifierval));
2f65feb6
RS
834}
835
ede4db72 836/* Actually wait for a property change.
2f65feb6 837 IDENTIFIER should be the value that expect_property_change returned. */
ede4db72
RS
838
839static void
d1f21a66
RS
840wait_for_property_change (location)
841 struct prop_location *location;
ede4db72 842{
2f65feb6
RS
843 int secs, usecs;
844 int count = specpdl_ptr - specpdl;
d1f21a66
RS
845 Lisp_Object tem;
846
847 XSET (tem, Lisp_Cons, location);
2f65feb6
RS
848
849 /* Make sure to do unexpect_property_change if we quit or err. */
d1f21a66 850 record_unwind_protect (wait_for_property_change_unwind, tem);
2f65feb6 851
ede4db72 852 XCONS (property_change_reply)->car = Qnil;
2f65feb6 853
d1f21a66
RS
854 if (! location->arrived)
855 {
856 property_change_reply_object = location;
857 secs = x_selection_timeout / 1000;
858 usecs = (x_selection_timeout % 1000) * 1000;
859 wait_reading_process_input (secs, usecs, property_change_reply, 0);
860
861 if (NILP (XCONS (property_change_reply)->car))
862 error ("timed out waiting for property-notify event");
863 }
2f65feb6
RS
864
865 unbind_to (count, Qnil);
ede4db72
RS
866}
867
868/* Called from XTread_socket in response to a PropertyNotify event. */
869
870void
871x_handle_property_notify (event)
872 XPropertyEvent *event;
873{
874 struct prop_location *prev = 0, *rest = property_change_wait_list;
875 while (rest)
876 {
877 if (rest->property == event->atom
878 && rest->window == event->window
879 && rest->display == event->display
880 && rest->desired_state == event->state)
881 {
882#if 0
883 fprintf (stderr, "Saw expected prop-%s on %s\n",
884 (event->state == PropertyDelete ? "delete" : "change"),
885 (char *) XSYMBOL (x_atom_to_symbol (event->display,
886 event->atom))
887 ->name->data);
888#endif
889
d1f21a66
RS
890 rest->arrived = 1;
891
ede4db72
RS
892 /* If this is the one wait_for_property_change is waiting for,
893 tell it to wake up. */
d1f21a66 894 if (rest == property_change_reply_object)
ede4db72
RS
895 XCONS (property_change_reply)->car = Qt;
896
897 if (prev)
898 prev->next = rest->next;
899 else
900 property_change_wait_list = rest->next;
901 xfree (rest);
902 return;
903 }
904 prev = rest;
905 rest = rest->next;
906 }
907#if 0
908 fprintf (stderr, "Saw UNexpected prop-%s on %s\n",
909 (event->state == PropertyDelete ? "delete" : "change"),
910 (char *) XSYMBOL (x_atom_to_symbol (event->display, event->atom))
911 ->name->data);
912#endif
913}
914
915
916\f
917#if 0 /* #### MULTIPLE doesn't work yet */
918
919static Lisp_Object
920fetch_multiple_target (event)
921 XSelectionRequestEvent *event;
922{
923 Display *display = event->display;
924 Window window = event->requestor;
925 Atom target = event->target;
926 Atom selection_atom = event->selection;
927 int result;
928
929 return
930 Fcons (QMULTIPLE,
931 x_get_window_property_as_lisp_data (display, window, target,
932 QMULTIPLE, selection_atom));
933}
934
935static Lisp_Object
936copy_multiple_data (obj)
937 Lisp_Object obj;
938{
939 Lisp_Object vec;
940 int i;
941 int size;
942 if (CONSP (obj))
943 return Fcons (XCONS (obj)->car, copy_multiple_data (XCONS (obj)->cdr));
944
945 CHECK_VECTOR (obj, 0);
946 vec = Fmake_vector (size = XVECTOR (obj)->size, Qnil);
947 for (i = 0; i < size; i++)
948 {
949 Lisp_Object vec2 = XVECTOR (obj)->contents [i];
950 CHECK_VECTOR (vec2, 0);
951 if (XVECTOR (vec2)->size != 2)
952 /* ??? Confusing error message */
953 Fsignal (Qerror, Fcons (build_string ("vectors must be of length 2"),
954 Fcons (vec2, Qnil)));
955 XVECTOR (vec)->contents [i] = Fmake_vector (2, Qnil);
956 XVECTOR (XVECTOR (vec)->contents [i])->contents [0]
957 = XVECTOR (vec2)->contents [0];
958 XVECTOR (XVECTOR (vec)->contents [i])->contents [1]
959 = XVECTOR (vec2)->contents [1];
960 }
961 return vec;
962}
963
964#endif
965
966\f
967/* Variables for communication with x_handle_selection_notify. */
968static Atom reading_which_selection;
969static Lisp_Object reading_selection_reply;
970static Window reading_selection_window;
971
972/* Do protocol to read selection-data from the server.
973 Converts this to Lisp data and returns it. */
974
975static Lisp_Object
976x_get_foreign_selection (selection_symbol, target_type)
977 Lisp_Object selection_symbol, target_type;
978{
979 Display *display = x_current_display;
980#ifdef X_TOOLKIT
7da64e5c 981 Window requestor_window = XtWindow (selected_screen->display.x->edit_widget);
ede4db72 982#else
7da64e5c 983 Window requestor_window = FRAME_X_WINDOW (selected_frame);
ede4db72 984#endif
7da64e5c 985 Time requestor_time = last_event_timestamp;
ede4db72
RS
986 Atom target_property = Xatom_EMACS_TMP;
987 Atom selection_atom = symbol_to_x_atom (display, selection_symbol);
988 Atom type_atom;
80da0190 989 int secs, usecs;
ede4db72
RS
990
991 if (CONSP (target_type))
992 type_atom = symbol_to_x_atom (display, XCONS (target_type)->car);
993 else
994 type_atom = symbol_to_x_atom (display, target_type);
995
996 BLOCK_INPUT;
7c6b2ea4 997 x_catch_errors ();
ede4db72
RS
998 XConvertSelection (display, selection_atom, type_atom, target_property,
999 requestor_window, requestor_time);
a87ed99c 1000 XFlushQueue ();
ede4db72
RS
1001
1002 /* Prepare to block until the reply has been read. */
1003 reading_selection_window = requestor_window;
1004 reading_which_selection = selection_atom;
1005 XCONS (reading_selection_reply)->car = Qnil;
1006 UNBLOCK_INPUT;
1007
80da0190
RS
1008 /* This allows quits. Also, don't wait forever. */
1009 secs = x_selection_timeout / 1000;
1010 usecs = (x_selection_timeout % 1000) * 1000;
1011 wait_reading_process_input (secs, usecs, reading_selection_reply, 0);
ede4db72 1012
7c6b2ea4
RS
1013 BLOCK_INPUT;
1014 x_check_errors ("Cannot get selection: %s");
1015 x_uncatch_errors ();
1016 UNBLOCK_INPUT;
1017
ede4db72
RS
1018 if (NILP (XCONS (reading_selection_reply)->car))
1019 error ("timed out waiting for reply from selection owner");
1020
1021 /* Otherwise, the selection is waiting for us on the requested property. */
1022 return
1023 x_get_window_property_as_lisp_data (display, requestor_window,
1024 target_property, target_type,
1025 selection_atom);
1026}
1027\f
1028/* Subroutines of x_get_window_property_as_lisp_data */
1029
1030static void
1031x_get_window_property (display, window, property, data_ret, bytes_ret,
1032 actual_type_ret, actual_format_ret, actual_size_ret,
1033 delete_p)
1034 Display *display;
1035 Window window;
1036 Atom property;
1037 unsigned char **data_ret;
1038 int *bytes_ret;
1039 Atom *actual_type_ret;
1040 int *actual_format_ret;
1041 unsigned long *actual_size_ret;
1042 int delete_p;
1043{
1044 int total_size;
1045 unsigned long bytes_remaining;
1046 int offset = 0;
1047 unsigned char *tmp_data = 0;
1048 int result;
1049 int buffer_size = SELECTION_QUANTUM (display);
1050 if (buffer_size > MAX_SELECTION_QUANTUM) buffer_size = MAX_SELECTION_QUANTUM;
1051
1052 BLOCK_INPUT;
1053 /* First probe the thing to find out how big it is. */
1054 result = XGetWindowProperty (display, window, property,
1055 0, 0, False, AnyPropertyType,
1056 actual_type_ret, actual_format_ret,
1057 actual_size_ret,
1058 &bytes_remaining, &tmp_data);
ede4db72
RS
1059 if (result != Success)
1060 {
2f65feb6 1061 UNBLOCK_INPUT;
ede4db72
RS
1062 *data_ret = 0;
1063 *bytes_ret = 0;
1064 return;
1065 }
2f65feb6 1066 xfree ((char *) tmp_data);
ede4db72
RS
1067
1068 if (*actual_type_ret == None || *actual_format_ret == 0)
1069 {
2f65feb6 1070 UNBLOCK_INPUT;
ede4db72
RS
1071 return;
1072 }
1073
1074 total_size = bytes_remaining + 1;
1075 *data_ret = (unsigned char *) xmalloc (total_size);
1076
1077 /* Now read, until weve gotten it all. */
ede4db72
RS
1078 while (bytes_remaining)
1079 {
1080#if 0
1081 int last = bytes_remaining;
1082#endif
1083 result
1084 = XGetWindowProperty (display, window, property,
1085 offset/4, buffer_size/4,
2f65feb6 1086 False,
ede4db72
RS
1087 AnyPropertyType,
1088 actual_type_ret, actual_format_ret,
1089 actual_size_ret, &bytes_remaining, &tmp_data);
1090#if 0
1091 fprintf (stderr, "<< read %d\n", last-bytes_remaining);
1092#endif
1093 /* If this doesn't return Success at this point, it means that
1094 some clod deleted the selection while we were in the midst of
1095 reading it. Deal with that, I guess....
1096 */
1097 if (result != Success) break;
1098 *actual_size_ret *= *actual_format_ret / 8;
1099 bcopy (tmp_data, (*data_ret) + offset, *actual_size_ret);
1100 offset += *actual_size_ret;
2f65feb6 1101 xfree ((char *) tmp_data);
ede4db72 1102 }
2f65feb6
RS
1103
1104 XFlushQueue ();
ede4db72
RS
1105 UNBLOCK_INPUT;
1106 *bytes_ret = offset;
1107}
1108\f
1109static void
1110receive_incremental_selection (display, window, property, target_type,
1111 min_size_bytes, data_ret, size_bytes_ret,
1112 type_ret, format_ret, size_ret)
1113 Display *display;
1114 Window window;
1115 Atom property;
1116 Lisp_Object target_type; /* for error messages only */
1117 unsigned int min_size_bytes;
1118 unsigned char **data_ret;
1119 int *size_bytes_ret;
1120 Atom *type_ret;
1121 unsigned long *size_ret;
1122 int *format_ret;
1123{
1124 int offset = 0;
d1f21a66 1125 struct prop_location *wait_object;
ede4db72
RS
1126 *size_bytes_ret = min_size_bytes;
1127 *data_ret = (unsigned char *) xmalloc (*size_bytes_ret);
1128#if 0
1129 fprintf (stderr, "\nread INCR %d\n", min_size_bytes);
1130#endif
2f65feb6
RS
1131
1132 /* At this point, we have read an INCR property.
1133 Delete the property to ack it.
1134 (But first, prepare to receive the next event in this handshake.)
ede4db72
RS
1135
1136 Now, we must loop, waiting for the sending window to put a value on
1137 that property, then reading the property, then deleting it to ack.
1138 We are done when the sender places a property of length 0.
1139 */
2f65feb6
RS
1140 BLOCK_INPUT;
1141 XSelectInput (display, window, STANDARD_EVENT_SET | PropertyChangeMask);
1142 XDeleteProperty (display, window, property);
d1f21a66
RS
1143 wait_object = expect_property_change (display, window, property,
1144 PropertyNewValue);
2f65feb6
RS
1145 XFlushQueue ();
1146 UNBLOCK_INPUT;
1147
ede4db72
RS
1148 while (1)
1149 {
1150 unsigned char *tmp_data;
1151 int tmp_size_bytes;
d1f21a66 1152 wait_for_property_change (wait_object);
ede4db72
RS
1153 /* expect it again immediately, because x_get_window_property may
1154 .. no it wont, I dont get it.
1155 .. Ok, I get it now, the Xt code that implements INCR is broken.
1156 */
ede4db72
RS
1157 x_get_window_property (display, window, property,
1158 &tmp_data, &tmp_size_bytes,
1159 type_ret, format_ret, size_ret, 1);
1160
1161 if (tmp_size_bytes == 0) /* we're done */
1162 {
1163#if 0
1164 fprintf (stderr, " read INCR done\n");
1165#endif
2f65feb6
RS
1166 if (! waiting_for_other_props_on_window (display, window))
1167 XSelectInput (display, window, STANDARD_EVENT_SET);
d1f21a66 1168 unexpect_property_change (wait_object);
ede4db72
RS
1169 if (tmp_data) xfree (tmp_data);
1170 break;
1171 }
2f65feb6
RS
1172
1173 BLOCK_INPUT;
1174 XDeleteProperty (display, window, property);
d1f21a66
RS
1175 wait_object = expect_property_change (display, window, property,
1176 PropertyNewValue);
2f65feb6
RS
1177 XFlushQueue ();
1178 UNBLOCK_INPUT;
1179
ede4db72
RS
1180#if 0
1181 fprintf (stderr, " read INCR %d\n", tmp_size_bytes);
1182#endif
1183 if (*size_bytes_ret < offset + tmp_size_bytes)
1184 {
1185#if 0
1186 fprintf (stderr, " read INCR realloc %d -> %d\n",
1187 *size_bytes_ret, offset + tmp_size_bytes);
1188#endif
1189 *size_bytes_ret = offset + tmp_size_bytes;
1190 *data_ret = (unsigned char *) xrealloc (*data_ret, *size_bytes_ret);
1191 }
018cfa07 1192 bcopy (tmp_data, (*data_ret) + offset, tmp_size_bytes);
ede4db72
RS
1193 offset += tmp_size_bytes;
1194 xfree (tmp_data);
1195 }
1196}
1197\f
1198/* Once a requested selection is "ready" (we got a SelectionNotify event),
1199 fetch value from property PROPERTY of X window WINDOW on display DISPLAY.
1200 TARGET_TYPE and SELECTION_ATOM are used in error message if this fails. */
1201
1202static Lisp_Object
1203x_get_window_property_as_lisp_data (display, window, property, target_type,
1204 selection_atom)
1205 Display *display;
1206 Window window;
1207 Atom property;
1208 Lisp_Object target_type; /* for error messages only */
1209 Atom selection_atom; /* for error messages only */
1210{
1211 Atom actual_type;
1212 int actual_format;
1213 unsigned long actual_size;
1214 unsigned char *data = 0;
1215 int bytes = 0;
1216 Lisp_Object val;
1217
1218 x_get_window_property (display, window, property, &data, &bytes,
1219 &actual_type, &actual_format, &actual_size, 1);
1220 if (! data)
1221 {
1222 int there_is_a_selection_owner;
1223 BLOCK_INPUT;
1224 there_is_a_selection_owner
1225 = XGetSelectionOwner (display, selection_atom);
1226 UNBLOCK_INPUT;
1227 while (1) /* Note debugger can no longer return, so this is obsolete */
1228 Fsignal (Qerror,
1229 there_is_a_selection_owner ?
1230 Fcons (build_string ("selection owner couldn't convert"),
1231 actual_type
1232 ? Fcons (target_type,
1233 Fcons (x_atom_to_symbol (display, actual_type),
1234 Qnil))
1235 : Fcons (target_type, Qnil))
1236 : Fcons (build_string ("no selection"),
1237 Fcons (x_atom_to_symbol (display, selection_atom),
1238 Qnil)));
1239 }
1240
1241 if (actual_type == Xatom_INCR)
1242 {
1243 /* That wasn't really the data, just the beginning. */
1244
1245 unsigned int min_size_bytes = * ((unsigned int *) data);
1246 BLOCK_INPUT;
1247 XFree ((char *) data);
1248 UNBLOCK_INPUT;
1249 receive_incremental_selection (display, window, property, target_type,
1250 min_size_bytes, &data, &bytes,
1251 &actual_type, &actual_format,
1252 &actual_size);
1253 }
1254
2f65feb6
RS
1255 BLOCK_INPUT;
1256 XDeleteProperty (display, window, property);
1257 XFlushQueue ();
1258 UNBLOCK_INPUT;
1259
ede4db72
RS
1260 /* It's been read. Now convert it to a lisp object in some semi-rational
1261 manner. */
1262 val = selection_data_to_lisp_data (display, data, bytes,
1263 actual_type, actual_format);
1264
1265 xfree ((char *) data);
1266 return val;
1267}
1268\f
1269/* These functions convert from the selection data read from the server into
1270 something that we can use from Lisp, and vice versa.
1271
1272 Type: Format: Size: Lisp Type:
1273 ----- ------- ----- -----------
1274 * 8 * String
1275 ATOM 32 1 Symbol
1276 ATOM 32 > 1 Vector of Symbols
1277 * 16 1 Integer
1278 * 16 > 1 Vector of Integers
1279 * 32 1 if <=16 bits: Integer
1280 if > 16 bits: Cons of top16, bot16
1281 * 32 > 1 Vector of the above
1282
1283 When converting a Lisp number to C, it is assumed to be of format 16 if
1284 it is an integer, and of format 32 if it is a cons of two integers.
1285
1286 When converting a vector of numbers from Lisp to C, it is assumed to be
1287 of format 16 if every element in the vector is an integer, and is assumed
1288 to be of format 32 if any element is a cons of two integers.
1289
1290 When converting an object to C, it may be of the form (SYMBOL . <data>)
1291 where SYMBOL is what we should claim that the type is. Format and
1292 representation are as above. */
1293
1294
1295
1296static Lisp_Object
1297selection_data_to_lisp_data (display, data, size, type, format)
1298 Display *display;
1299 unsigned char *data;
1300 Atom type;
1301 int size, format;
1302{
1303
1304 if (type == Xatom_NULL)
1305 return QNULL;
1306
1307 /* Convert any 8-bit data to a string, for compactness. */
1308 else if (format == 8)
1309 return make_string ((char *) data, size);
1310
1311 /* Convert a single atom to a Lisp_Symbol. Convert a set of atoms to
1312 a vector of symbols.
1313 */
1314 else if (type == XA_ATOM)
1315 {
1316 int i;
1317 if (size == sizeof (Atom))
1318 return x_atom_to_symbol (display, *((Atom *) data));
1319 else
1320 {
1321 Lisp_Object v = Fmake_vector (size / sizeof (Atom), 0);
1322 for (i = 0; i < size / sizeof (Atom); i++)
1323 Faset (v, i, x_atom_to_symbol (display, ((Atom *) data) [i]));
1324 return v;
1325 }
1326 }
1327
1328 /* Convert a single 16 or small 32 bit number to a Lisp_Int.
1329 If the number is > 16 bits, convert it to a cons of integers,
1330 16 bits in each half.
1331 */
1332 else if (format == 32 && size == sizeof (long))
1333 return long_to_cons (((unsigned long *) data) [0]);
1334 else if (format == 16 && size == sizeof (short))
1335 return make_number ((int) (((unsigned short *) data) [0]));
1336
1337 /* Convert any other kind of data to a vector of numbers, represented
1338 as above (as an integer, or a cons of two 16 bit integers.)
1339 */
1340 else if (format == 16)
1341 {
1342 int i;
1343 Lisp_Object v = Fmake_vector (size / 4, 0);
1344 for (i = 0; i < size / 4; i++)
1345 {
1346 int j = (int) ((unsigned short *) data) [i];
1347 Faset (v, i, make_number (j));
1348 }
1349 return v;
1350 }
1351 else
1352 {
1353 int i;
1354 Lisp_Object v = Fmake_vector (size / 4, 0);
1355 for (i = 0; i < size / 4; i++)
1356 {
1357 unsigned long j = ((unsigned long *) data) [i];
1358 Faset (v, i, long_to_cons (j));
1359 }
1360 return v;
1361 }
1362}
1363
1364
1365static void
1366lisp_data_to_selection_data (display, obj,
aca39f42
RS
1367 data_ret, type_ret, size_ret,
1368 format_ret, nofree_ret)
ede4db72
RS
1369 Display *display;
1370 Lisp_Object obj;
1371 unsigned char **data_ret;
1372 Atom *type_ret;
1373 unsigned int *size_ret;
1374 int *format_ret;
aca39f42 1375 int *nofree_ret;
ede4db72
RS
1376{
1377 Lisp_Object type = Qnil;
aca39f42
RS
1378
1379 *nofree_ret = 0;
1380
ede4db72
RS
1381 if (CONSP (obj) && SYMBOLP (XCONS (obj)->car))
1382 {
1383 type = XCONS (obj)->car;
1384 obj = XCONS (obj)->cdr;
1385 if (CONSP (obj) && NILP (XCONS (obj)->cdr))
1386 obj = XCONS (obj)->car;
1387 }
1388
1389 if (EQ (obj, QNULL) || (EQ (type, QNULL)))
1390 { /* This is not the same as declining */
1391 *format_ret = 32;
1392 *size_ret = 0;
1393 *data_ret = 0;
1394 type = QNULL;
1395 }
1396 else if (STRINGP (obj))
1397 {
1398 *format_ret = 8;
1399 *size_ret = XSTRING (obj)->size;
aca39f42
RS
1400 *data_ret = XSTRING (obj)->data;
1401 *nofree_ret = 1;
ede4db72
RS
1402 if (NILP (type)) type = QSTRING;
1403 }
1404 else if (SYMBOLP (obj))
1405 {
1406 *format_ret = 32;
1407 *size_ret = 1;
1408 *data_ret = (unsigned char *) xmalloc (sizeof (Atom) + 1);
1409 (*data_ret) [sizeof (Atom)] = 0;
1410 (*(Atom **) data_ret) [0] = symbol_to_x_atom (display, obj);
1411 if (NILP (type)) type = QATOM;
1412 }
7da64e5c 1413 else if (INTEGERP (obj)
ede4db72
RS
1414 && XINT (obj) < 0xFFFF
1415 && XINT (obj) > -0xFFFF)
1416 {
1417 *format_ret = 16;
1418 *size_ret = 1;
1419 *data_ret = (unsigned char *) xmalloc (sizeof (short) + 1);
1420 (*data_ret) [sizeof (short)] = 0;
1421 (*(short **) data_ret) [0] = (short) XINT (obj);
1422 if (NILP (type)) type = QINTEGER;
1423 }
a87ed99c
RS
1424 else if (INTEGERP (obj)
1425 || (CONSP (obj) && INTEGERP (XCONS (obj)->car)
1426 && (INTEGERP (XCONS (obj)->cdr)
1427 || (CONSP (XCONS (obj)->cdr)
1428 && INTEGERP (XCONS (XCONS (obj)->cdr)->car)))))
ede4db72
RS
1429 {
1430 *format_ret = 32;
1431 *size_ret = 1;
1432 *data_ret = (unsigned char *) xmalloc (sizeof (long) + 1);
1433 (*data_ret) [sizeof (long)] = 0;
1434 (*(unsigned long **) data_ret) [0] = cons_to_long (obj);
1435 if (NILP (type)) type = QINTEGER;
1436 }
1437 else if (VECTORP (obj))
1438 {
1439 /* Lisp_Vectors may represent a set of ATOMs;
1440 a set of 16 or 32 bit INTEGERs;
1441 or a set of ATOM_PAIRs (represented as [[A1 A2] [A3 A4] ...]
1442 */
1443 int i;
1444
1445 if (SYMBOLP (XVECTOR (obj)->contents [0]))
1446 /* This vector is an ATOM set */
1447 {
1448 if (NILP (type)) type = QATOM;
1449 *size_ret = XVECTOR (obj)->size;
1450 *format_ret = 32;
1451 *data_ret = (unsigned char *) xmalloc ((*size_ret) * sizeof (Atom));
1452 for (i = 0; i < *size_ret; i++)
1453 if (SYMBOLP (XVECTOR (obj)->contents [i]))
1454 (*(Atom **) data_ret) [i]
1455 = symbol_to_x_atom (display, XVECTOR (obj)->contents [i]);
1456 else
1457 Fsignal (Qerror, /* Qselection_error */
1458 Fcons (build_string
1459 ("all elements of selection vector must have same type"),
1460 Fcons (obj, Qnil)));
1461 }
1462#if 0 /* #### MULTIPLE doesn't work yet */
1463 else if (VECTORP (XVECTOR (obj)->contents [0]))
1464 /* This vector is an ATOM_PAIR set */
1465 {
1466 if (NILP (type)) type = QATOM_PAIR;
1467 *size_ret = XVECTOR (obj)->size;
1468 *format_ret = 32;
1469 *data_ret = (unsigned char *)
1470 xmalloc ((*size_ret) * sizeof (Atom) * 2);
1471 for (i = 0; i < *size_ret; i++)
1472 if (VECTORP (XVECTOR (obj)->contents [i]))
1473 {
1474 Lisp_Object pair = XVECTOR (obj)->contents [i];
1475 if (XVECTOR (pair)->size != 2)
1476 Fsignal (Qerror,
1477 Fcons (build_string
1478 ("elements of the vector must be vectors of exactly two elements"),
1479 Fcons (pair, Qnil)));
1480
1481 (*(Atom **) data_ret) [i * 2]
1482 = symbol_to_x_atom (display, XVECTOR (pair)->contents [0]);
1483 (*(Atom **) data_ret) [(i * 2) + 1]
1484 = symbol_to_x_atom (display, XVECTOR (pair)->contents [1]);
1485 }
1486 else
1487 Fsignal (Qerror,
1488 Fcons (build_string
1489 ("all elements of the vector must be of the same type"),
1490 Fcons (obj, Qnil)));
1491
1492 }
1493#endif
1494 else
1495 /* This vector is an INTEGER set, or something like it */
1496 {
1497 *size_ret = XVECTOR (obj)->size;
1498 if (NILP (type)) type = QINTEGER;
1499 *format_ret = 16;
1500 for (i = 0; i < *size_ret; i++)
1501 if (CONSP (XVECTOR (obj)->contents [i]))
1502 *format_ret = 32;
7da64e5c 1503 else if (!INTEGERP (XVECTOR (obj)->contents [i]))
ede4db72
RS
1504 Fsignal (Qerror, /* Qselection_error */
1505 Fcons (build_string
1506 ("elements of selection vector must be integers or conses of integers"),
1507 Fcons (obj, Qnil)));
1508
1509 *data_ret = (unsigned char *) xmalloc (*size_ret * (*format_ret/8));
1510 for (i = 0; i < *size_ret; i++)
1511 if (*format_ret == 32)
1512 (*((unsigned long **) data_ret)) [i]
1513 = cons_to_long (XVECTOR (obj)->contents [i]);
1514 else
1515 (*((unsigned short **) data_ret)) [i]
1516 = (unsigned short) cons_to_long (XVECTOR (obj)->contents [i]);
1517 }
1518 }
1519 else
1520 Fsignal (Qerror, /* Qselection_error */
1521 Fcons (build_string ("unrecognised selection data"),
1522 Fcons (obj, Qnil)));
1523
1524 *type_ret = symbol_to_x_atom (display, type);
1525}
1526
1527static Lisp_Object
1528clean_local_selection_data (obj)
1529 Lisp_Object obj;
1530{
1531 if (CONSP (obj)
7da64e5c 1532 && INTEGERP (XCONS (obj)->car)
ede4db72 1533 && CONSP (XCONS (obj)->cdr)
7da64e5c 1534 && INTEGERP (XCONS (XCONS (obj)->cdr)->car)
ede4db72
RS
1535 && NILP (XCONS (XCONS (obj)->cdr)->cdr))
1536 obj = Fcons (XCONS (obj)->car, XCONS (obj)->cdr);
1537
1538 if (CONSP (obj)
7da64e5c
RS
1539 && INTEGERP (XCONS (obj)->car)
1540 && INTEGERP (XCONS (obj)->cdr))
ede4db72
RS
1541 {
1542 if (XINT (XCONS (obj)->car) == 0)
1543 return XCONS (obj)->cdr;
1544 if (XINT (XCONS (obj)->car) == -1)
1545 return make_number (- XINT (XCONS (obj)->cdr));
1546 }
1547 if (VECTORP (obj))
1548 {
1549 int i;
1550 int size = XVECTOR (obj)->size;
1551 Lisp_Object copy;
1552 if (size == 1)
1553 return clean_local_selection_data (XVECTOR (obj)->contents [0]);
1554 copy = Fmake_vector (size, Qnil);
1555 for (i = 0; i < size; i++)
1556 XVECTOR (copy)->contents [i]
1557 = clean_local_selection_data (XVECTOR (obj)->contents [i]);
1558 return copy;
1559 }
1560 return obj;
1561}
1562\f
1563/* Called from XTread_socket to handle SelectionNotify events.
1564 If it's the selection we are waiting for, stop waiting. */
1565
1566void
1567x_handle_selection_notify (event)
1568 XSelectionEvent *event;
1569{
1570 if (event->requestor != reading_selection_window)
1571 return;
1572 if (event->selection != reading_which_selection)
1573 return;
1574
1575 XCONS (reading_selection_reply)->car = Qt;
1576}
1577
1578\f
1579DEFUN ("x-own-selection-internal",
1580 Fx_own_selection_internal, Sx_own_selection_internal,
1581 2, 2, 0,
1582 "Assert an X selection of the given TYPE with the given VALUE.\n\
1583TYPE is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\
1584\(Those are literal upper-case symbol names, since that's what X expects.)\n\
1585VALUE is typically a string, or a cons of two markers, but may be\n\
a87ed99c 1586anything that the functions on `selection-converter-alist' know about.")
ede4db72
RS
1587 (selection_name, selection_value)
1588 Lisp_Object selection_name, selection_value;
1589{
703e0710 1590 check_x ();
ede4db72
RS
1591 CHECK_SYMBOL (selection_name, 0);
1592 if (NILP (selection_value)) error ("selection-value may not be nil.");
1593 x_own_selection (selection_name, selection_value);
1594 return selection_value;
1595}
1596
1597
1598/* Request the selection value from the owner. If we are the owner,
1599 simply return our selection value. If we are not the owner, this
1600 will block until all of the data has arrived. */
1601
1602DEFUN ("x-get-selection-internal",
1603 Fx_get_selection_internal, Sx_get_selection_internal, 2, 2, 0,
1604 "Return text selected from some X window.\n\
1605SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\
1606\(Those are literal upper-case symbol names, since that's what X expects.)\n\
a87ed99c 1607TYPE is the type of data desired, typically `STRING'.")
ede4db72
RS
1608 (selection_symbol, target_type)
1609 Lisp_Object selection_symbol, target_type;
1610{
1611 Lisp_Object val = Qnil;
1612 struct gcpro gcpro1, gcpro2;
1613 GCPRO2 (target_type, val); /* we store newly consed data into these */
703e0710 1614 check_x ();
ede4db72
RS
1615 CHECK_SYMBOL (selection_symbol, 0);
1616
1617#if 0 /* #### MULTIPLE doesn't work yet */
1618 if (CONSP (target_type)
1619 && XCONS (target_type)->car == QMULTIPLE)
1620 {
1621 CHECK_VECTOR (XCONS (target_type)->cdr, 0);
1622 /* So we don't destructively modify this... */
1623 target_type = copy_multiple_data (target_type);
1624 }
1625 else
1626#endif
1627 CHECK_SYMBOL (target_type, 0);
1628
1629 val = x_get_local_selection (selection_symbol, target_type);
1630
1631 if (NILP (val))
1632 {
1633 val = x_get_foreign_selection (selection_symbol, target_type);
1634 goto DONE;
1635 }
1636
1637 if (CONSP (val)
1638 && SYMBOLP (XCONS (val)->car))
1639 {
1640 val = XCONS (val)->cdr;
1641 if (CONSP (val) && NILP (XCONS (val)->cdr))
1642 val = XCONS (val)->car;
1643 }
1644 val = clean_local_selection_data (val);
1645 DONE:
1646 UNGCPRO;
1647 return val;
1648}
1649
1650DEFUN ("x-disown-selection-internal",
1651 Fx_disown_selection_internal, Sx_disown_selection_internal, 1, 2, 0,
a87ed99c
RS
1652 "If we own the selection SELECTION, disown it.\n\
1653Disowning it means there is no such selection.")
ede4db72
RS
1654 (selection, time)
1655 Lisp_Object selection;
1656 Lisp_Object time;
1657{
1658 Display *display = x_current_display;
1659 Time timestamp;
1660 Atom selection_atom;
1661 XSelectionClearEvent event;
1662
703e0710 1663 check_x ();
ede4db72
RS
1664 CHECK_SYMBOL (selection, 0);
1665 if (NILP (time))
7da64e5c 1666 timestamp = last_event_timestamp;
ede4db72
RS
1667 else
1668 timestamp = cons_to_long (time);
1669
1670 if (NILP (assq_no_quit (selection, Vselection_alist)))
1671 return Qnil; /* Don't disown the selection when we're not the owner. */
1672
1673 selection_atom = symbol_to_x_atom (display, selection);
1674
1675 BLOCK_INPUT;
1676 XSetSelectionOwner (display, selection_atom, None, timestamp);
1677 UNBLOCK_INPUT;
1678
eb8c3be9 1679 /* It doesn't seem to be guaranteed that a SelectionClear event will be
ede4db72
RS
1680 generated for a window which owns the selection when that window sets
1681 the selection owner to None. The NCD server does, the MIT Sun4 server
1682 doesn't. So we synthesize one; this means we might get two, but
1683 that's ok, because the second one won't have any effect. */
8d47f8c4
RS
1684 SELECTION_EVENT_DISPLAY (&event) = display;
1685 SELECTION_EVENT_SELECTION (&event) = selection_atom;
1686 SELECTION_EVENT_TIME (&event) = timestamp;
ede4db72
RS
1687 x_handle_selection_clear (&event);
1688
1689 return Qt;
1690}
1691
a87ed99c
RS
1692/* Get rid of all the selections in buffer BUFFER.
1693 This is used when we kill a buffer. */
1694
1695void
1696x_disown_buffer_selections (buffer)
1697 Lisp_Object buffer;
1698{
1699 Lisp_Object tail;
1700 struct buffer *buf = XBUFFER (buffer);
1701
1702 for (tail = Vselection_alist; CONSP (tail); tail = XCONS (tail)->cdr)
1703 {
1704 Lisp_Object elt, value;
1705 elt = XCONS (tail)->car;
1706 value = XCONS (elt)->cdr;
1707 if (CONSP (value) && MARKERP (XCONS (value)->car)
1708 && XMARKER (XCONS (value)->car)->buffer == buf)
1709 Fx_disown_selection_internal (XCONS (elt)->car, Qnil);
1710 }
1711}
ede4db72
RS
1712
1713DEFUN ("x-selection-owner-p", Fx_selection_owner_p, Sx_selection_owner_p,
1714 0, 1, 0,
a87ed99c 1715 "Whether the current Emacs process owns the given X Selection.\n\
ede4db72
RS
1716The arg should be the name of the selection in question, typically one of\n\
1717the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\
1718\(Those are literal upper-case symbol names, since that's what X expects.)\n\
1719For convenience, the symbol nil is the same as `PRIMARY',\n\
1720and t is the same as `SECONDARY'.)")
1721 (selection)
1722 Lisp_Object selection;
1723{
703e0710 1724 check_x ();
ede4db72
RS
1725 CHECK_SYMBOL (selection, 0);
1726 if (EQ (selection, Qnil)) selection = QPRIMARY;
1727 if (EQ (selection, Qt)) selection = QSECONDARY;
1728
1729 if (NILP (Fassq (selection, Vselection_alist)))
1730 return Qnil;
1731 return Qt;
1732}
1733
1734DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p,
1735 0, 1, 0,
1736 "Whether there is an owner for the given X Selection.\n\
1737The arg should be the name of the selection in question, typically one of\n\
1738the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\
1739\(Those are literal upper-case symbol names, since that's what X expects.)\n\
1740For convenience, the symbol nil is the same as `PRIMARY',\n\
1741and t is the same as `SECONDARY'.)")
1742 (selection)
1743 Lisp_Object selection;
1744{
1745 Window owner;
356ba514 1746 Atom atom;
ede4db72 1747 Display *dpy = x_current_display;
703e0710 1748 check_x ();
ede4db72
RS
1749 CHECK_SYMBOL (selection, 0);
1750 if (!NILP (Fx_selection_owner_p (selection)))
1751 return Qt;
356ba514
RS
1752 if (EQ (selection, Qnil)) selection = QPRIMARY;
1753 if (EQ (selection, Qt)) selection = QSECONDARY;
1754 atom = symbol_to_x_atom (dpy, selection);
1755 if (atom == 0)
1756 return Qnil;
ede4db72 1757 BLOCK_INPUT;
356ba514 1758 owner = XGetSelectionOwner (dpy, atom);
ede4db72
RS
1759 UNBLOCK_INPUT;
1760 return (owner ? Qt : Qnil);
1761}
1762
1763\f
1764#ifdef CUT_BUFFER_SUPPORT
1765
1766static int cut_buffers_initialized; /* Whether we're sure they all exist */
1767
1768/* Ensure that all 8 cut buffers exist. ICCCM says we gotta... */
1769static void
1770initialize_cut_buffers (display, window)
1771 Display *display;
1772 Window window;
1773{
1774 unsigned char *data = (unsigned char *) "";
1775 BLOCK_INPUT;
1776#define FROB(atom) XChangeProperty (display, window, atom, XA_STRING, 8, \
1777 PropModeAppend, data, 0)
1778 FROB (XA_CUT_BUFFER0);
1779 FROB (XA_CUT_BUFFER1);
1780 FROB (XA_CUT_BUFFER2);
1781 FROB (XA_CUT_BUFFER3);
1782 FROB (XA_CUT_BUFFER4);
1783 FROB (XA_CUT_BUFFER5);
1784 FROB (XA_CUT_BUFFER6);
1785 FROB (XA_CUT_BUFFER7);
1786#undef FROB
1787 UNBLOCK_INPUT;
1788 cut_buffers_initialized = 1;
1789}
1790
1791
a87ed99c 1792#define CHECK_CUT_BUFFER(symbol,n) \
ede4db72
RS
1793 { CHECK_SYMBOL ((symbol), (n)); \
1794 if (!EQ((symbol), QCUT_BUFFER0) && !EQ((symbol), QCUT_BUFFER1) \
1795 && !EQ((symbol), QCUT_BUFFER2) && !EQ((symbol), QCUT_BUFFER3) \
1796 && !EQ((symbol), QCUT_BUFFER4) && !EQ((symbol), QCUT_BUFFER5) \
1797 && !EQ((symbol), QCUT_BUFFER6) && !EQ((symbol), QCUT_BUFFER7)) \
1798 Fsignal (Qerror, \
a87ed99c 1799 Fcons (build_string ("doesn't name a cut buffer"), \
ede4db72
RS
1800 Fcons ((symbol), Qnil))); \
1801 }
1802
a87ed99c
RS
1803DEFUN ("x-get-cut-buffer-internal", Fx_get_cut_buffer_internal,
1804 Sx_get_cut_buffer_internal, 1, 1, 0,
1805 "Returns the value of the named cut buffer (typically CUT_BUFFER0).")
ede4db72
RS
1806 (buffer)
1807 Lisp_Object buffer;
1808{
1809 Display *display = x_current_display;
a87ed99c 1810 Window window = RootWindow (display, 0); /* Cut buffers are on screen 0 */
ede4db72
RS
1811 Atom buffer_atom;
1812 unsigned char *data;
1813 int bytes;
1814 Atom type;
1815 int format;
1816 unsigned long size;
1817 Lisp_Object ret;
1818
703e0710 1819 check_x ();
a87ed99c 1820 CHECK_CUT_BUFFER (buffer, 0);
ede4db72
RS
1821 buffer_atom = symbol_to_x_atom (display, buffer);
1822
1823 x_get_window_property (display, window, buffer_atom, &data, &bytes,
1824 &type, &format, &size, 0);
1825 if (!data) return Qnil;
1826
1827 if (format != 8 || type != XA_STRING)
1828 Fsignal (Qerror,
1829 Fcons (build_string ("cut buffer doesn't contain 8-bit data"),
1830 Fcons (x_atom_to_symbol (display, type),
1831 Fcons (make_number (format), Qnil))));
1832
1833 ret = (bytes ? make_string ((char *) data, bytes) : Qnil);
1834 xfree (data);
1835 return ret;
1836}
1837
1838
a87ed99c
RS
1839DEFUN ("x-store-cut-buffer-internal", Fx_store_cut_buffer_internal,
1840 Sx_store_cut_buffer_internal, 2, 2, 0,
1841 "Sets the value of the named cut buffer (typically CUT_BUFFER0).")
ede4db72
RS
1842 (buffer, string)
1843 Lisp_Object buffer, string;
1844{
1845 Display *display = x_current_display;
a87ed99c 1846 Window window = RootWindow (display, 0); /* Cut buffers are on screen 0 */
ede4db72
RS
1847 Atom buffer_atom;
1848 unsigned char *data;
1849 int bytes;
1850 int bytes_remaining;
1851 int max_bytes = SELECTION_QUANTUM (display);
1852 if (max_bytes > MAX_SELECTION_QUANTUM) max_bytes = MAX_SELECTION_QUANTUM;
1853
703e0710 1854 check_x ();
a87ed99c 1855 CHECK_CUT_BUFFER (buffer, 0);
ede4db72
RS
1856 CHECK_STRING (string, 0);
1857 buffer_atom = symbol_to_x_atom (display, buffer);
1858 data = (unsigned char *) XSTRING (string)->data;
1859 bytes = XSTRING (string)->size;
1860 bytes_remaining = bytes;
1861
1862 if (! cut_buffers_initialized) initialize_cut_buffers (display, window);
1863
1864 BLOCK_INPUT;
10608c8c
RS
1865
1866 /* Don't mess up with an empty value. */
1867 if (!bytes_remaining)
1868 XChangeProperty (display, window, buffer_atom, XA_STRING, 8,
1869 PropModeReplace, data, 0);
1870
ede4db72
RS
1871 while (bytes_remaining)
1872 {
1873 int chunk = (bytes_remaining < max_bytes
1874 ? bytes_remaining : max_bytes);
1875 XChangeProperty (display, window, buffer_atom, XA_STRING, 8,
1876 (bytes_remaining == bytes
1877 ? PropModeReplace
1878 : PropModeAppend),
1879 data, chunk);
1880 data += chunk;
1881 bytes_remaining -= chunk;
1882 }
1883 UNBLOCK_INPUT;
1884 return string;
1885}
1886
1887
a87ed99c
RS
1888DEFUN ("x-rotate-cut-buffers-internal", Fx_rotate_cut_buffers_internal,
1889 Sx_rotate_cut_buffers_internal, 1, 1, 0,
1890 "Rotate the values of the cut buffers by the given number of steps;\n\
ede4db72
RS
1891positive means move values forward, negative means backward.")
1892 (n)
1893 Lisp_Object n;
1894{
1895 Display *display = x_current_display;
a87ed99c 1896 Window window = RootWindow (display, 0); /* Cut buffers are on screen 0 */
ede4db72
RS
1897 Atom props [8];
1898
703e0710 1899 check_x ();
7da64e5c 1900 CHECK_NUMBER (n, 0);
ede4db72
RS
1901 if (XINT (n) == 0) return n;
1902 if (! cut_buffers_initialized) initialize_cut_buffers (display, window);
1903 props[0] = XA_CUT_BUFFER0;
1904 props[1] = XA_CUT_BUFFER1;
1905 props[2] = XA_CUT_BUFFER2;
1906 props[3] = XA_CUT_BUFFER3;
1907 props[4] = XA_CUT_BUFFER4;
1908 props[5] = XA_CUT_BUFFER5;
1909 props[6] = XA_CUT_BUFFER6;
1910 props[7] = XA_CUT_BUFFER7;
1911 BLOCK_INPUT;
1912 XRotateWindowProperties (display, window, props, 8, XINT (n));
1913 UNBLOCK_INPUT;
1914 return n;
1915}
1916
1917#endif
1918\f
7da64e5c
RS
1919void
1920Xatoms_of_xselect ()
ede4db72
RS
1921{
1922#define ATOM(x) XInternAtom (x_current_display, (x), False)
1923
1924 BLOCK_INPUT;
1925 /* Non-predefined atoms that we might end up using a lot */
1926 Xatom_CLIPBOARD = ATOM ("CLIPBOARD");
1927 Xatom_TIMESTAMP = ATOM ("TIMESTAMP");
1928 Xatom_TEXT = ATOM ("TEXT");
1929 Xatom_DELETE = ATOM ("DELETE");
1930 Xatom_MULTIPLE = ATOM ("MULTIPLE");
1931 Xatom_INCR = ATOM ("INCR");
1932 Xatom_EMACS_TMP = ATOM ("_EMACS_TMP_");
1933 Xatom_TARGETS = ATOM ("TARGETS");
1934 Xatom_NULL = ATOM ("NULL");
1935 Xatom_ATOM_PAIR = ATOM ("ATOM_PAIR");
1936 UNBLOCK_INPUT;
1937}
1938
1939void
1940syms_of_xselect ()
1941{
ede4db72
RS
1942 defsubr (&Sx_get_selection_internal);
1943 defsubr (&Sx_own_selection_internal);
1944 defsubr (&Sx_disown_selection_internal);
1945 defsubr (&Sx_selection_owner_p);
1946 defsubr (&Sx_selection_exists_p);
1947
1948#ifdef CUT_BUFFER_SUPPORT
a87ed99c
RS
1949 defsubr (&Sx_get_cut_buffer_internal);
1950 defsubr (&Sx_store_cut_buffer_internal);
1951 defsubr (&Sx_rotate_cut_buffers_internal);
ede4db72
RS
1952 cut_buffers_initialized = 0;
1953#endif
1954
1955 reading_selection_reply = Fcons (Qnil, Qnil);
1956 staticpro (&reading_selection_reply);
1957 reading_selection_window = 0;
1958 reading_which_selection = 0;
1959
1960 property_change_wait_list = 0;
2f65feb6 1961 prop_location_identifier = 0;
ede4db72
RS
1962 property_change_reply = Fcons (Qnil, Qnil);
1963 staticpro (&property_change_reply);
1964
1965 Vselection_alist = Qnil;
1966 staticpro (&Vselection_alist);
1967
1968 DEFVAR_LISP ("selection-converter-alist", &Vselection_converter_alist,
1969 "An alist associating X Windows selection-types with functions.\n\
1970These functions are called to convert the selection, with three args:\n\
1971the name of the selection (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\
1972a desired type to which the selection should be converted;\n\
1973and the local selection value (whatever was given to `x-own-selection').\n\
1974\n\
1975The function should return the value to send to the X server\n\
1976\(typically a string). A return value of nil\n\
1977means that the conversion could not be done.\n\
1978A return value which is the symbol `NULL'\n\
1979means that a side-effect was executed,\n\
1980and there is no meaningful selection value.");
1981 Vselection_converter_alist = Qnil;
1982
1983 DEFVAR_LISP ("x-lost-selection-hooks", &Vx_lost_selection_hooks,
1984 "A list of functions to be called when Emacs loses an X selection.\n\
1985\(This happens when some other X client makes its own selection\n\
1986or when a Lisp program explicitly clears the selection.)\n\
1987The functions are called with one argument, the selection type\n\
1988\(a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.)");
1989 Vx_lost_selection_hooks = Qnil;
1990
1991 DEFVAR_LISP ("x-sent-selection-hooks", &Vx_sent_selection_hooks,
1992 "A list of functions to be called when Emacs answers a selection request.\n\
1993The functions are called with four arguments:\n\
1994 - the selection name (typically `PRIMARY', `SECONDARY', or `CLIPBOARD');\n\
1995 - the selection-type which Emacs was asked to convert the\n\
1996 selection into before sending (for example, `STRING' or `LENGTH');\n\
1997 - a flag indicating success or failure for responding to the request.\n\
1998We might have failed (and declined the request) for any number of reasons,\n\
1999including being asked for a selection that we no longer own, or being asked\n\
2000to convert into a type that we don't know about or that is inappropriate.\n\
2001This hook doesn't let you change the behavior of Emacs's selection replies,\n\
2002it merely informs you that they have happened.");
2003 Vx_sent_selection_hooks = Qnil;
2004
2005 DEFVAR_INT ("x-selection-timeout", &x_selection_timeout,
80da0190
RS
2006 "Number of milliseconds to wait for a selection reply.\n\
2007If the selection owner doens't reply in this time, we give up.\n\
ede4db72 2008A value of 0 means wait as long as necessary. This is initialized from the\n\
80da0190 2009\"*selectionTimeout\" resource.");
ede4db72
RS
2010 x_selection_timeout = 0;
2011
2012 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY);
2013 QSECONDARY = intern ("SECONDARY"); staticpro (&QSECONDARY);
2014 QSTRING = intern ("STRING"); staticpro (&QSTRING);
2015 QINTEGER = intern ("INTEGER"); staticpro (&QINTEGER);
2016 QCLIPBOARD = intern ("CLIPBOARD"); staticpro (&QCLIPBOARD);
2017 QTIMESTAMP = intern ("TIMESTAMP"); staticpro (&QTIMESTAMP);
2018 QTEXT = intern ("TEXT"); staticpro (&QTEXT);
2019 QTIMESTAMP = intern ("TIMESTAMP"); staticpro (&QTIMESTAMP);
2020 QDELETE = intern ("DELETE"); staticpro (&QDELETE);
2021 QMULTIPLE = intern ("MULTIPLE"); staticpro (&QMULTIPLE);
2022 QINCR = intern ("INCR"); staticpro (&QINCR);
2023 QEMACS_TMP = intern ("_EMACS_TMP_"); staticpro (&QEMACS_TMP);
2024 QTARGETS = intern ("TARGETS"); staticpro (&QTARGETS);
2025 QATOM = intern ("ATOM"); staticpro (&QATOM);
2026 QATOM_PAIR = intern ("ATOM_PAIR"); staticpro (&QATOM_PAIR);
2027 QNULL = intern ("NULL"); staticpro (&QNULL);
2028
2029#ifdef CUT_BUFFER_SUPPORT
2030 QCUT_BUFFER0 = intern ("CUT_BUFFER0"); staticpro (&QCUT_BUFFER0);
2031 QCUT_BUFFER1 = intern ("CUT_BUFFER1"); staticpro (&QCUT_BUFFER1);
2032 QCUT_BUFFER2 = intern ("CUT_BUFFER2"); staticpro (&QCUT_BUFFER2);
2033 QCUT_BUFFER3 = intern ("CUT_BUFFER3"); staticpro (&QCUT_BUFFER3);
2034 QCUT_BUFFER4 = intern ("CUT_BUFFER4"); staticpro (&QCUT_BUFFER4);
2035 QCUT_BUFFER5 = intern ("CUT_BUFFER5"); staticpro (&QCUT_BUFFER5);
2036 QCUT_BUFFER6 = intern ("CUT_BUFFER6"); staticpro (&QCUT_BUFFER6);
2037 QCUT_BUFFER7 = intern ("CUT_BUFFER7"); staticpro (&QCUT_BUFFER7);
2038#endif
2039
2040}