-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathtkUnixSelect.c
More file actions
1553 lines (1392 loc) · 44.4 KB
/
tkUnixSelect.c
File metadata and controls
1553 lines (1392 loc) · 44.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* tkUnixSelect.c --
*
* This file contains X specific routines for manipulating selections.
*
* Copyright © 1995-1997 Sun Microsystems, Inc.
*
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
#include "tkInt.h"
#include "tkSelect.h"
typedef struct ConvertInfo {
int offset; /* The starting byte offset into the selection
* for the next chunk; -1 means all data has
* been transferred for this conversion. -2
* means only the final zero-length transfer
* still has to be done. Otherwise it is the
* offset of the next chunk of data to
* transfer. */
Tcl_EncodingState state; /* The encoding state needed across chunks. */
char buffer[4]; /* A buffer to hold part of a UTF character
* that is split across chunks.*/
} ConvertInfo;
/*
* When handling INCR-style selection retrievals, the selection owner uses the
* following data structure to communicate between the ConvertSelection
* function and TkSelPropProc.
*/
typedef struct IncrInfo {
TkWindow *winPtr; /* Window that owns selection. */
Atom selection; /* Selection that is being retrieved. */
Atom *multAtoms; /* Information about conversions to perform:
* one or more pairs of (target, property).
* This either points to a retrieved property
* (for MULTIPLE retrievals) or to a static
* array. */
unsigned long numConversions;
/* Number of entries in converts (same as # of
* pairs in multAtoms). */
ConvertInfo *converts; /* One entry for each pair in multAtoms. This
* array is malloc-ed. */
char **tempBufs; /* One pointer for each pair in multAtoms;
* each pointer is either NULL, or it points
* to a small bit of character data that was
* left over from the previous chunk. */
Tcl_EncodingState *state; /* One state info per pair in multAtoms: State
* info for encoding conversions that span
* multiple buffers. */
int *flags; /* One state flag per pair in multAtoms:
* Encoding flags, set to TCL_ENCODING_START
* at the beginning of an INCR transfer. */
int numIncrs; /* Number of entries in converts that aren't
* -1 (i.e. # of INCR-mode transfers not yet
* completed). */
Tcl_TimerToken timeout; /* Token for timer function. */
int idleTime; /* Number of seconds since we heard anything
* from the selection requestor. */
Window reqWindow; /* Requestor's window id. */
Time time; /* Timestamp corresponding to selection at
* beginning of request; used to abort
* transfer if selection changes. */
struct IncrInfo *nextPtr; /* Next in list of all INCR-style retrievals
* currently pending. */
} IncrInfo;
typedef struct {
IncrInfo *pendingIncrs; /* List of all incr structures currently
* active. */
} ThreadSpecificData;
static Tcl_ThreadDataKey dataKey;
/*
* Largest property that we'll accept when sending or receiving the selection:
*/
#define MAX_PROP_WORDS 100000
static TkSelRetrievalInfo *pendingRetrievals = NULL;
/* List of all retrievals currently being
* waited for. */
/*
* Forward declarations for functions defined in this file:
*/
static void ConvertSelection(TkWindow *winPtr,
XSelectionRequestEvent *eventPtr);
static void IncrTimeoutProc(void *clientData);
static void SelCvtFromX32(long *propPtr, unsigned long numValues, Atom type,
Tk_Window tkwin, Tcl_DString *dsPtr);
static void SelCvtFromX8(char *propPtr, unsigned long numValues, Atom type,
Tk_Window tkwin, Tcl_DString *dsPtr);
static long * SelCvtToX(char *string, Atom type, Tk_Window tkwin,
Tcl_Size *numLongsPtr);
static int SelectionSize(TkSelHandler *selPtr);
static void SelRcvIncrProc(void *clientData,
XEvent *eventPtr);
static void SelTimeoutProc(void *clientData);
/*
*----------------------------------------------------------------------
*
* TkSelGetSelection --
*
* Retrieve the specified selection from another process.
*
* Results:
* The return value is a standard Tcl return value. If an error occurs
* (such as no selection exists) then an error message is left in the
* interp's result.
*
* Side effects:
* None.
*
*----------------------------------------------------------------------
*/
int
TkSelGetSelection(
Tcl_Interp *interp, /* Interpreter to use for reporting errors. */
Tk_Window tkwin, /* Window on whose behalf to retrieve the
* selection (determines display from which to
* retrieve). */
Atom selection, /* Selection to retrieve. */
Atom target, /* Desired form in which selection is to be
* returned. */
Tk_GetSelProc *proc, /* Function to call to process the selection,
* once it has been retrieved. */
void *clientData) /* Arbitrary value to pass to proc. */
{
TkSelRetrievalInfo retr;
TkWindow *winPtr = (TkWindow *) tkwin;
TkDisplay *dispPtr = winPtr->dispPtr;
/*
* The selection is owned by some other process. To retrieve it, first
* record information about the retrieval in progress. Use an internal
* window as the requestor.
*/
retr.interp = interp;
if (dispPtr->clipWindow == NULL) {
int result;
result = TkClipInit(interp, dispPtr);
if (result != TCL_OK) {
return result;
}
}
retr.winPtr = (TkWindow *) dispPtr->clipWindow;
retr.selection = selection;
retr.property = selection;
retr.target = target;
retr.proc = proc;
retr.clientData = clientData;
retr.result = -1;
retr.idleTime = 0;
retr.encFlags = TCL_ENCODING_START;
retr.nextPtr = pendingRetrievals;
Tcl_DStringInit(&retr.buf);
pendingRetrievals = &retr;
/*
* Delete the property to indicate that no parameters are supplied for
* the conversion request.
*/
XDeleteProperty(winPtr->display, retr.winPtr->window, retr.property);
/*
* Initiate the request for the selection. Note: can't use TkCurrentTime
* for the time. If we do, and this application hasn't received any X
* events in a long time, the current time will be way in the past and
* could even predate the time when the selection was made; if this
* happens, the request will be rejected.
*/
XConvertSelection(winPtr->display, retr.selection, retr.target,
retr.property, retr.winPtr->window, CurrentTime);
/*
* Enter a loop processing X events until the selection has been retrieved
* and processed. If no response is received within a few seconds, then
* timeout.
*/
retr.timeout = Tcl_CreateTimerHandler(1000, SelTimeoutProc,
&retr);
while (retr.result == -1) {
Tcl_DoOneEvent(0);
}
Tcl_DeleteTimerHandler(retr.timeout);
/*
* Unregister the information about the selection retrieval in progress.
*/
if (pendingRetrievals == &retr) {
pendingRetrievals = retr.nextPtr;
} else {
TkSelRetrievalInfo *retrPtr;
for (retrPtr = pendingRetrievals; retrPtr != NULL;
retrPtr = retrPtr->nextPtr) {
if (retrPtr->nextPtr == &retr) {
retrPtr->nextPtr = retr.nextPtr;
break;
}
}
}
Tcl_DStringFree(&retr.buf);
return retr.result;
}
/*
*----------------------------------------------------------------------
*
* TkSelPropProc --
*
* This function is invoked when property-change events occur on windows
* not known to the toolkit. Its function is to implement the sending
* side of the INCR selection retrieval protocol when the selection
* requestor deletes the property containing a part of the selection.
*
* Results:
* None.
*
* Side effects:
* If the property that is receiving the selection was just deleted, then
* a new piece of the selection is fetched and placed in the property,
* until eventually there's no more selection to fetch.
*
*----------------------------------------------------------------------
*/
void
TkSelPropProc(
XEvent *eventPtr) /* X PropertyChange event. */
{
IncrInfo *incrPtr;
TkSelHandler *selPtr;
int length;
Tcl_Size numItems;
unsigned long i;
Atom target, formatType;
long buffer[TK_SEL_WORDS_AT_ONCE];
TkDisplay *dispPtr = TkGetDisplay(eventPtr->xany.display);
Tk_ErrorHandler errorHandler;
ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
/*
* See if this event announces the deletion of a property being used for
* an INCR transfer. If so, then add the next chunk of data to the
* property.
*/
if (eventPtr->xproperty.state != PropertyDelete) {
return;
}
for (incrPtr = tsdPtr->pendingIncrs; incrPtr != NULL;
incrPtr = incrPtr->nextPtr) {
if (incrPtr->reqWindow != eventPtr->xproperty.window) {
continue;
}
/*
* For each conversion that has been requested, handle any chunks that
* haven't been transmitted yet.
*/
for (i = 0; i < incrPtr->numConversions; i++) {
if ((eventPtr->xproperty.atom != incrPtr->multAtoms[2*i + 1])
|| (incrPtr->converts[i].offset == -1)) {
continue;
}
target = incrPtr->multAtoms[2*i];
incrPtr->idleTime = 0;
/*
* Look for a matching selection handler.
*/
for (selPtr = incrPtr->winPtr->selHandlerList; ;
selPtr = selPtr->nextPtr) {
if (selPtr == NULL) {
/*
* No handlers match, so mark the conversion as done.
*/
incrPtr->multAtoms[2*i + 1] = None;
incrPtr->converts[i].offset = -1;
incrPtr->numIncrs --;
return;
}
if ((selPtr->target == target)
&& (selPtr->selection == incrPtr->selection)) {
break;
}
}
/*
* We found a handler, so get the next chunk from it.
*/
formatType = selPtr->format;
if (incrPtr->converts[i].offset == -2) {
/*
* We already got the last chunk, so send a null chunk to
* indicate that we are finished.
*/
numItems = 0;
length = 0;
} else {
TkSelInProgress ip;
ip.selPtr = selPtr;
ip.nextPtr = TkSelGetInProgress();
TkSelSetInProgress(&ip);
/*
* Copy any bytes left over from a partial character at the
* end of the previous chunk into the beginning of the buffer.
* Pass the rest of the buffer space into the selection
* handler.
*/
length = strlen(incrPtr->converts[i].buffer);
strcpy((char *)buffer, incrPtr->converts[i].buffer);
numItems = selPtr->proc(selPtr->clientData,
incrPtr->converts[i].offset,
((char *) buffer) + length,
TK_SEL_BYTES_AT_ONCE - length);
TkSelSetInProgress(ip.nextPtr);
if (ip.selPtr == NULL) {
/*
* The selection handler deleted itself.
*/
return;
}
if (numItems == TCL_INDEX_NONE) {
numItems = 0;
}
numItems += length;
if (numItems > TK_SEL_BYTES_AT_ONCE) {
Tcl_Panic("selection handler returned too many bytes");
}
}
((char *) buffer)[numItems] = 0;
errorHandler = Tk_CreateErrorHandler(eventPtr->xproperty.display,
-1, -1, -1, NULL, NULL);
/*
* Encode the data using the proper format for each type.
*/
if ((formatType == XA_STRING)
|| (dispPtr && formatType==dispPtr->utf8Atom)
|| (dispPtr && formatType==dispPtr->compoundTextAtom)) {
Tcl_DString ds;
int encodingCvtFlags;
int srcLen, dstLen, result, srcRead, dstWrote, soFar;
char *src, *dst;
Tcl_Encoding encoding;
/*
* Set up the encoding state based on the format and whether
* this is the first and/or last chunk.
*/
encodingCvtFlags = TCL_ENCODING_PROFILE_TCL8;
if (incrPtr->converts[i].offset == 0) {
encodingCvtFlags |= TCL_ENCODING_START;
}
if (numItems < TK_SEL_BYTES_AT_ONCE) {
encodingCvtFlags |= TCL_ENCODING_END;
}
if (formatType == XA_STRING) {
encoding = Tcl_GetEncoding(NULL, "iso8859-1");
} else if (dispPtr && formatType==dispPtr->utf8Atom) {
encoding = Tcl_GetEncoding(NULL, "utf-8");
} else {
encoding = Tcl_GetEncoding(NULL, "iso2022");
}
/*
* Now convert the data.
*/
src = (char *)buffer;
srcLen = numItems;
Tcl_DStringInit(&ds);
dst = Tcl_DStringValue(&ds);
dstLen = ds.spaceAvl - 1;
/*
* Now convert the data, growing the destination buffer as
* needed.
*/
while (1) {
result = Tcl_UtfToExternal(NULL, encoding, src, srcLen,
encodingCvtFlags, &incrPtr->converts[i].state,
dst, dstLen, &srcRead, &dstWrote, NULL);
soFar = dst + dstWrote - Tcl_DStringValue(&ds);
encodingCvtFlags &= ~TCL_ENCODING_START;
src += srcRead;
srcLen -= srcRead;
if (result != TCL_CONVERT_NOSPACE) {
Tcl_DStringSetLength(&ds, soFar);
break;
}
if (Tcl_DStringLength(&ds) == 0) {
Tcl_DStringSetLength(&ds, dstLen);
}
Tcl_DStringSetLength(&ds, 2 * Tcl_DStringLength(&ds) + 1);
dst = Tcl_DStringValue(&ds) + soFar;
dstLen = Tcl_DStringLength(&ds) - soFar - 1;
}
Tcl_DStringSetLength(&ds, soFar);
if (encoding) {
Tcl_FreeEncoding(encoding);
}
/*
* Set the property to the encoded string value.
*/
XChangeProperty(eventPtr->xproperty.display,
eventPtr->xproperty.window, eventPtr->xproperty.atom,
formatType, 8, PropModeReplace,
(unsigned char *) Tcl_DStringValue(&ds),
Tcl_DStringLength(&ds));
/*
* Preserve any left-over bytes.
*/
if (srcLen > 3) {
Tcl_Panic("selection conversion left too many bytes unconverted");
}
memcpy(incrPtr->converts[i].buffer, src, srcLen + 1);
Tcl_DStringFree(&ds);
} else {
/*
* Set the property to the encoded string value.
*/
char *propPtr = (char *) SelCvtToX((char *) buffer,
formatType, (Tk_Window) incrPtr->winPtr, &numItems);
if (propPtr == NULL) {
numItems = 0;
}
XChangeProperty(eventPtr->xproperty.display,
eventPtr->xproperty.window, eventPtr->xproperty.atom,
formatType, 32, PropModeReplace,
(unsigned char *) propPtr, numItems);
if (propPtr != NULL) {
ckfree(propPtr);
}
}
Tk_DeleteErrorHandler(errorHandler);
/*
* Compute the next offset value. If this was the last chunk, then
* set the offset to -2. If this was an empty chunk, then set the
* offset to -1 to indicate we are done.
*/
if (numItems < TK_SEL_BYTES_AT_ONCE) {
if (numItems < 1) {
incrPtr->converts[i].offset = -1;
incrPtr->numIncrs--;
} else {
incrPtr->converts[i].offset = -2;
}
} else {
/*
* Advance over the selection data that was consumed this
* time.
*/
incrPtr->converts[i].offset += numItems - length;
}
return;
}
}
}
/*
*--------------------------------------------------------------
*
* TkSelEventProc --
*
* This function is invoked whenever a selection-related event occurs.
* It does the lion's share of the work in implementing the selection
* protocol.
*
* Results:
* None.
*
* Side effects:
* Lots: depends on the type of event.
*
*--------------------------------------------------------------
*/
void
TkSelEventProc(
Tk_Window tkwin, /* Window for which event was targeted. */
XEvent *eventPtr) /* X event: either SelectionClear,
* SelectionRequest, or SelectionNotify. */
{
TkWindow *winPtr = (TkWindow *) tkwin;
TkDisplay *dispPtr = winPtr->dispPtr;
Tcl_Interp *interp;
/*
* Case #1: SelectionClear events.
*/
if (eventPtr->type == SelectionClear) {
TkSelClearSelection(tkwin, eventPtr);
}
/*
* Case #2: SelectionNotify events. Call the relevant function to handle
* the incoming selection.
*/
if (eventPtr->type == SelectionNotify) {
TkSelRetrievalInfo *retrPtr;
char *propInfo, **propInfoPtr = &propInfo;
Atom type;
int format, result;
unsigned long numItems, bytesAfter;
for (retrPtr = pendingRetrievals; ; retrPtr = retrPtr->nextPtr) {
if (retrPtr == NULL) {
return;
}
if ((retrPtr->winPtr == winPtr)
&& (retrPtr->selection == eventPtr->xselection.selection)
&& (retrPtr->target == eventPtr->xselection.target)
&& (retrPtr->result == -1)) {
if (retrPtr->property == eventPtr->xselection.property) {
break;
}
if (eventPtr->xselection.property == None) {
Tcl_SetObjResult(retrPtr->interp, Tcl_ObjPrintf(
"%s selection doesn't exist or form \"%s\" not defined",
Tk_GetAtomName(tkwin, retrPtr->selection),
Tk_GetAtomName(tkwin, retrPtr->target)));
Tcl_SetErrorCode(retrPtr->interp, "TK", "SELECTION",
"NONE", NULL);
retrPtr->result = TCL_ERROR;
return;
}
}
}
propInfo = NULL;
result = XGetWindowProperty(eventPtr->xselection.display,
eventPtr->xselection.requestor, retrPtr->property,
0, MAX_PROP_WORDS, False, (Atom) AnyPropertyType,
&type, &format, &numItems, &bytesAfter,
(unsigned char **) propInfoPtr);
if ((result != Success) || (type == None)) {
return;
}
if (bytesAfter != 0) {
Tcl_SetObjResult(retrPtr->interp, Tcl_NewStringObj(
"selection property too large", TCL_INDEX_NONE));
Tcl_SetErrorCode(retrPtr->interp, "TK", "SELECTION", "SIZE", (char *)NULL);
retrPtr->result = TCL_ERROR;
XFree(propInfo);
return;
}
if ((type == XA_STRING) || (type == dispPtr->textAtom)
|| (type == dispPtr->compoundTextAtom)) {
Tcl_Encoding encoding;
Tcl_DString ds;
if (format != 8) {
Tcl_SetObjResult(retrPtr->interp, Tcl_ObjPrintf(
"bad format for string selection: wanted \"8\", got \"%d\"",
format));
Tcl_SetErrorCode(retrPtr->interp, "TK", "SELECTION", "FORMAT",
NULL);
retrPtr->result = TCL_ERROR;
return;
}
interp = retrPtr->interp;
Tcl_Preserve(interp);
/*
* Convert the X selection data into UTF before passing it to the
* selection callback. Note that the COMPOUND_TEXT uses a modified
* iso2022 encoding, not the current system encoding. For now
* we'll just blindly apply the iso2022 encoding. This is probably
* wrong, but it's a placeholder until we figure out what we're
* really supposed to do. For STRING, we need to use Latin-1
* instead. Again, it's not really the full iso8859-1 space, but
* this is close enough.
*/
if (type == dispPtr->compoundTextAtom) {
encoding = Tcl_GetEncoding(NULL, "iso2022");
} else {
encoding = Tcl_GetEncoding(NULL, "iso8859-1");
}
char *str = Tcl_ExternalToUtfDString(encoding, propInfo, numItems, &ds);
if (encoding) {
Tcl_FreeEncoding(encoding);
}
retrPtr->result = retrPtr->proc(retrPtr->clientData, interp, str);
Tcl_DStringFree(&ds);
Tcl_Release(interp);
} else if (type == dispPtr->utf8Atom) {
/*
* The X selection data is in UTF-8 format already. We can't
* guarantee that propInfo is NULL-terminated, so we might have to
* copy the string.
*/
char *propData = propInfo;
if (format != 8) {
Tcl_SetObjResult(retrPtr->interp, Tcl_ObjPrintf(
"bad format for string selection: wanted \"8\", got \"%d\"",
format));
Tcl_SetErrorCode(retrPtr->interp, "TK", "SELECTION", "FORMAT",
NULL);
retrPtr->result = TCL_ERROR;
return;
}
if (propInfo[numItems] != '\0') {
propData = (char *)ckalloc(numItems + 1);
strcpy(propData, propInfo);
propData[numItems] = '\0';
}
retrPtr->result = retrPtr->proc(retrPtr->clientData,
retrPtr->interp, propData);
if (propData != propInfo) {
ckfree(propData);
}
} else if (type == dispPtr->incrAtom) {
/*
* It's a !?#@!?!! INCR-style reception. Arrange to receive the
* selection in pieces, using the ICCCM protocol, then hang around
* until either the selection is all here or a timeout occurs.
*/
retrPtr->idleTime = 0;
Tk_CreateEventHandler(tkwin, PropertyChangeMask, SelRcvIncrProc,
retrPtr);
XDeleteProperty(Tk_Display(tkwin), Tk_WindowId(tkwin),
retrPtr->property);
while (retrPtr->result == -1) {
Tcl_DoOneEvent(0);
}
Tk_DeleteEventHandler(tkwin, PropertyChangeMask, SelRcvIncrProc,
retrPtr);
} else {
Tcl_DString ds;
if (format != 32 && format != 8) {
Tcl_SetObjResult(retrPtr->interp, Tcl_ObjPrintf(
"bad format for selection: wanted \"32\" or "
"\"8\", got \"%d\"", format));
Tcl_SetErrorCode(retrPtr->interp, "TK", "SELECTION", "FORMAT",
NULL);
retrPtr->result = TCL_ERROR;
return;
}
Tcl_DStringInit(&ds);
if (format == 32) {
SelCvtFromX32((long *) propInfo, numItems, type,
(Tk_Window) winPtr, &ds);
} else {
SelCvtFromX8((char *) propInfo, numItems, type,
(Tk_Window) winPtr, &ds);
}
interp = retrPtr->interp;
Tcl_Preserve(interp);
retrPtr->result = retrPtr->proc(retrPtr->clientData,
interp, Tcl_DStringValue(&ds));
Tcl_Release(interp);
Tcl_DStringFree(&ds);
}
XFree(propInfo);
return;
}
/*
* Case #3: SelectionRequest events. Call ConvertSelection to do the dirty
* work.
*/
if (eventPtr->type == SelectionRequest) {
ConvertSelection(winPtr, &eventPtr->xselectionrequest);
return;
}
}
/*
*----------------------------------------------------------------------
*
* SelTimeoutProc --
*
* This function is invoked once every second while waiting for the
* selection to be returned. After a while it gives up and aborts the
* selection retrieval.
*
* Results:
* None.
*
* Side effects:
* A new timer callback is created to call us again in another second,
* unless time has expired, in which case an error is recorded for the
* retrieval.
*
*----------------------------------------------------------------------
*/
static void
SelTimeoutProc(
void *clientData) /* Information about retrieval in progress. */
{
TkSelRetrievalInfo *retrPtr = (TkSelRetrievalInfo *)clientData;
/*
* Make sure that the retrieval is still in progress. Then see how long
* it's been since any sort of response was received from the other side.
*/
if (retrPtr->result != -1) {
return;
}
retrPtr->idleTime++;
if (retrPtr->idleTime >= 5) {
/*
* Use a careful function to store the error message, because the
* result could already be partially filled in with a partial
* selection return.
*/
Tcl_SetObjResult(retrPtr->interp, Tcl_NewStringObj(
"selection owner didn't respond", TCL_INDEX_NONE));
Tcl_SetErrorCode(retrPtr->interp, "TK", "SELECTION", "IGNORED", (char *)NULL);
retrPtr->result = TCL_ERROR;
} else {
retrPtr->timeout = Tcl_CreateTimerHandler(1000, SelTimeoutProc,
retrPtr);
}
}
/*
*----------------------------------------------------------------------
*
* ConvertSelection --
*
* This function is invoked to handle SelectionRequest events. It
* responds to the requests, obeying the ICCCM protocols.
*
* Results:
* None.
*
* Side effects:
* Properties are created for the selection requestor, and a
* SelectionNotify event is generated for the selection requestor. In the
* event of long selections, this function implements INCR-mode
* transfers, using the ICCCM protocol.
*
*----------------------------------------------------------------------
*/
static void
ConvertSelection(
TkWindow *winPtr, /* Window that received the conversion
* request; may not be selection's current
* owner, be we set it to the current
* owner. */
XSelectionRequestEvent *eventPtr)
/* Event describing request. */
{
union {
XSelectionEvent xsel;
XEvent ev;
} reply; /* Used to notify requestor that selection
* info is ready. */
int multiple; /* Non-zero means a MULTIPLE request is being
* handled. */
IncrInfo incr; /* State of selection conversion. */
Atom singleInfo[2]; /* incr.multAtoms points here except for
* multiple conversions. */
unsigned long i;
Tk_ErrorHandler errorHandler;
TkSelectionInfo *infoPtr;
TkSelInProgress ip;
ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
errorHandler = Tk_CreateErrorHandler(eventPtr->display, -1, -1,
-1, NULL, NULL);
/*
* Initialize the reply event.
*/
reply.xsel.type = SelectionNotify;
reply.xsel.serial = 0;
reply.xsel.send_event = True;
reply.xsel.display = eventPtr->display;
reply.xsel.requestor = eventPtr->requestor;
reply.xsel.selection = eventPtr->selection;
reply.xsel.target = eventPtr->target;
reply.xsel.property = eventPtr->property;
if (reply.xsel.property == None) {
reply.xsel.property = reply.xsel.target;
}
reply.xsel.time = eventPtr->time;
for (infoPtr = winPtr->dispPtr->selectionInfoPtr; infoPtr != NULL;
infoPtr = infoPtr->nextPtr) {
if (infoPtr->selection == eventPtr->selection) {
break;
}
}
if (infoPtr == NULL) {
goto refuse;
}
winPtr = (TkWindow *) infoPtr->owner;
/*
* Figure out which kind(s) of conversion to perform. If handling a
* MULTIPLE conversion, then read the property describing which
* conversions to perform.
*/
incr.winPtr = winPtr;
incr.selection = eventPtr->selection;
if (eventPtr->target != winPtr->dispPtr->multipleAtom) {
multiple = 0;
singleInfo[0] = reply.xsel.target;
singleInfo[1] = reply.xsel.property;
incr.multAtoms = singleInfo;
incr.numConversions = 1;
} else {
Atom type, **multAtomsPtr = &incr.multAtoms;
int format, result;
unsigned long bytesAfter;
multiple = 1;
incr.multAtoms = NULL;
if (eventPtr->property == None) {
goto refuse;
}
result = XGetWindowProperty(eventPtr->display, eventPtr->requestor,
eventPtr->property, 0, MAX_PROP_WORDS, False,
winPtr->dispPtr->atomPairAtom, &type, &format,
&incr.numConversions, &bytesAfter,
(unsigned char **) multAtomsPtr);
if ((result != Success) || (bytesAfter != 0) || (format != 32)
|| (type == None)) {
if (incr.multAtoms != NULL) {
XFree(incr.multAtoms);
}
goto refuse;
}
incr.numConversions /= 2; /* Two atoms per conversion. */
}
/*
* Loop through all of the requested conversions, and either return the
* entire converted selection, if it can be returned in a single bunch, or
* return INCR information only (the actual selection will be returned
* below).
*/
incr.converts = (ConvertInfo *)ckalloc(incr.numConversions * sizeof(ConvertInfo));
incr.numIncrs = 0;
for (i = 0; i < incr.numConversions; i++) {
Atom target, property, type;
long buffer[TK_SEL_WORDS_AT_ONCE];
TkSelHandler *selPtr;
Tcl_Size numItems;
int format;
char *propPtr;
target = incr.multAtoms[2*i];
property = incr.multAtoms[2*i + 1];
incr.converts[i].offset = -1;
incr.converts[i].buffer[0] = '\0';
for (selPtr = winPtr->selHandlerList; selPtr != NULL;
selPtr = selPtr->nextPtr) {
if ((selPtr->target == target)
&& (selPtr->selection == eventPtr->selection)) {
break;
}
}
if (selPtr == NULL) {
/*
* Nobody seems to know about this kind of request. If it's of a
* sort that we can handle without any help, do it. Otherwise mark
* the request as an error.
*/
numItems = TkSelDefaultSelection(infoPtr, target, (char *) buffer,
TK_SEL_BYTES_AT_ONCE, &type);
if (numItems == TCL_INDEX_NONE) {
incr.multAtoms[2*i + 1] = None;
continue;
}
} else {
ip.selPtr = selPtr;
ip.nextPtr = TkSelGetInProgress();
TkSelSetInProgress(&ip);
type = selPtr->format;
numItems = selPtr->proc(selPtr->clientData, 0, (char *) buffer,
TK_SEL_BYTES_AT_ONCE);
TkSelSetInProgress(ip.nextPtr);
if ((ip.selPtr == NULL) || (numItems == TCL_INDEX_NONE)) {
incr.multAtoms[2*i + 1] = None;
continue;
}
if (numItems > TK_SEL_BYTES_AT_ONCE) {
Tcl_Panic("selection handler returned too many bytes");
}
((char *) buffer)[numItems] = '\0';
}
/*
* Got the selection; store it back on the requestor's property.
*/
if (numItems == TK_SEL_BYTES_AT_ONCE) {
/*
* Selection is too big to send at once; start an INCR-mode
* transfer.
*/
incr.numIncrs++;
type = winPtr->dispPtr->incrAtom;
buffer[0] = SelectionSize(selPtr);
if (buffer[0] == 0) {
incr.multAtoms[2*i + 1] = None;
continue;
}
numItems = 1;
propPtr = (char *) buffer;
format = 32;
incr.converts[i].offset = 0;
XChangeProperty(reply.xsel.display, reply.xsel.requestor,
property, type, format, PropModeReplace,
(unsigned char *) propPtr, numItems);
} else if (type == winPtr->dispPtr->utf8Atom) {
/*
* This matches selection requests of type UTF8_STRING, which
* allows us to pass our utf-8 information untouched.
*/
XChangeProperty(reply.xsel.display, reply.xsel.requestor,
property, type, 8, PropModeReplace,
(unsigned char *) buffer, numItems);
} else if ((type == XA_STRING)
|| (type == winPtr->dispPtr->compoundTextAtom)) {
Tcl_DString ds;
Tcl_Encoding encoding;
/*
* STRING is Latin-1, COMPOUND_TEXT is an iso2022 variant. We need
* to convert the selection text into these external forms before
* modifying the property.
*/
if (type == XA_STRING) {
encoding = Tcl_GetEncoding(NULL, "iso8859-1");
} else {
encoding = Tcl_GetEncoding(NULL, "iso2022");
}
unsigned char *str = (unsigned char *)Tcl_UtfToExternalDString(encoding,
(char *) buffer, TCL_INDEX_NONE, &ds);