(find-library): Wrap search for library name in condition-case
[emacs.git] / lisp / select.el
blobde9afec0a9dff05336ae03c73216dbf3b4731aed
1 ;;; select.el --- lisp portion of standard selection support
3 ;; Maintainer: FSF
4 ;; Keywords: internal
6 ;; Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004,
7 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
8 ;; Based partially on earlier release by Lucid.
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
27 ;;; Commentary:
29 ;;; Code:
31 ;; This is for temporary compatibility with pre-release Emacs 19.
32 (defalias 'x-selection 'x-get-selection)
33 (defun x-get-selection (&optional type data-type)
34 "Return the value of an X Windows selection.
35 The argument TYPE (default `PRIMARY') says which selection,
36 and the argument DATA-TYPE (default `STRING') says
37 how to convert the data.
39 TYPE may be any symbol \(but nil stands for `PRIMARY'). However,
40 only a few symbols are commonly used. They conventionally have
41 all upper-case names. The most often used ones, in addition to
42 `PRIMARY', are `SECONDARY' and `CLIPBOARD'.
44 DATA-TYPE is usually `STRING', but can also be one of the symbols
45 in `selection-converter-alist', which see."
46 (let ((data (x-get-selection-internal (or type 'PRIMARY)
47 (or data-type 'STRING)))
48 coding)
49 (when (and (stringp data)
50 (setq data-type (get-text-property 0 'foreign-selection data)))
51 (setq coding (if (eq data-type 'UTF8_STRING)
52 'utf-8
53 (or next-selection-coding-system
54 selection-coding-system))
55 data (decode-coding-string data coding))
56 (put-text-property 0 (length data) 'foreign-selection data-type data))
57 data))
59 (defun x-get-clipboard ()
60 "Return text pasted to the clipboard."
61 (x-get-selection-internal 'CLIPBOARD 'STRING))
63 (defun x-set-selection (type data)
64 "Make an X Windows selection of type TYPE and value DATA.
65 The argument TYPE (nil means `PRIMARY') says which selection, and
66 DATA specifies the contents. TYPE must be a symbol. \(It can also
67 be a string, which stands for the symbol with that name, but this
68 is considered obsolete.) DATA may be a string, a symbol, an
69 integer (or a cons of two integers or list of two integers).
71 The selection may also be a cons of two markers pointing to the same buffer,
72 or an overlay. In these cases, the selection is considered to be the text
73 between the markers *at whatever time the selection is examined*.
74 Thus, editing done in the buffer after you specify the selection
75 can alter the effective value of the selection.
77 The data may also be a vector of valid non-vector selection values.
79 The return value is DATA.
81 Interactively, this command sets the primary selection. Without
82 prefix argument, it reads the selection in the minibuffer. With
83 prefix argument, it uses the text of the region as the selection value ."
84 (interactive (if (not current-prefix-arg)
85 (list 'PRIMARY (read-string "Set text for pasting: "))
86 (list 'PRIMARY (buffer-substring (region-beginning) (region-end)))))
87 ;; This is for temporary compatibility with pre-release Emacs 19.
88 (if (stringp type)
89 (setq type (intern type)))
90 (or (x-valid-simple-selection-p data)
91 (and (vectorp data)
92 (let ((valid t)
93 (i (1- (length data))))
94 (while (>= i 0)
95 (or (x-valid-simple-selection-p (aref data i))
96 (setq valid nil))
97 (setq i (1- i)))
98 valid))
99 (signal 'error (list "invalid selection" data)))
100 (or type (setq type 'PRIMARY))
101 (if data
102 (x-own-selection-internal type data)
103 (x-disown-selection-internal type))
104 data)
106 (defun x-valid-simple-selection-p (data)
107 (or (stringp data)
108 (symbolp data)
109 (integerp data)
110 (and (consp data)
111 (integerp (car data))
112 (or (integerp (cdr data))
113 (and (consp (cdr data))
114 (integerp (car (cdr data))))))
115 (overlayp data)
116 (and (consp data)
117 (markerp (car data))
118 (markerp (cdr data))
119 (marker-buffer (car data))
120 (marker-buffer (cdr data))
121 (eq (marker-buffer (car data))
122 (marker-buffer (cdr data)))
123 (buffer-name (marker-buffer (car data)))
124 (buffer-name (marker-buffer (cdr data))))))
126 ;;; Cut Buffer support
128 (declare-function x-get-cut-buffer-internal "xselect.c")
130 (defun x-get-cut-buffer (&optional which-one)
131 "Returns the value of one of the 8 X server cut-buffers.
132 Optional arg WHICH-ONE should be a number from 0 to 7, defaulting to 0.
133 Cut buffers are considered obsolete; you should use selections instead."
134 (x-get-cut-buffer-internal
135 (if which-one
136 (aref [CUT_BUFFER0 CUT_BUFFER1 CUT_BUFFER2 CUT_BUFFER3
137 CUT_BUFFER4 CUT_BUFFER5 CUT_BUFFER6 CUT_BUFFER7]
138 which-one)
139 'CUT_BUFFER0)))
141 (declare-function x-rotate-cut-buffers-internal "xselect.c")
142 (declare-function x-store-cut-buffer-internal "xselect.c")
144 (defun x-set-cut-buffer (string &optional push)
145 "Store STRING into the X server's primary cut buffer.
146 If PUSH is non-nil, also rotate the cut buffers:
147 this means the previous value of the primary cut buffer moves to the second
148 cut buffer, and the second to the third, and so on (there are 8 buffers.)
149 Cut buffers are considered obsolete; you should use selections instead."
150 (or (stringp string) (signal 'wrong-type-argument (list 'string string)))
151 (if push
152 (x-rotate-cut-buffers-internal 1))
153 (x-store-cut-buffer-internal 'CUT_BUFFER0 string))
156 ;;; Functions to convert the selection into various other selection types.
157 ;;; Every selection type that Emacs handles is implemented this way, except
158 ;;; for TIMESTAMP, which is a special case.
160 (eval-when-compile (require 'ccl))
162 (define-ccl-program ccl-check-utf-8
164 ((r0 = 1)
165 (loop
166 (read-if (r1 < #x80) (repeat)
167 ((r0 = 0)
168 (if (r1 < #xC2) (end))
169 (read r2)
170 (if ((r2 & #xC0) != #x80) (end))
171 (if (r1 < #xE0) ((r0 = 1) (repeat)))
172 (read r2)
173 (if ((r2 & #xC0) != #x80) (end))
174 (if (r1 < #xF0) ((r0 = 1) (repeat)))
175 (read r2)
176 (if ((r2 & #xC0) != #x80) (end))
177 (if (r1 < #xF8) ((r0 = 1) (repeat)))
178 (read r2)
179 (if ((r2 & #xC0) != #x80) (end))
180 (if (r1 == #xF8) ((r0 = 1) (repeat)))
181 (end))))))
182 "Check if the input unibyte string is a valid UTF-8 sequence or not.
183 If it is valid, set the register `r0' to 1, else set it to 0.")
185 (defun string-utf-8-p (string)
186 "Return non-nil if STRING is a unibyte string of valid UTF-8 sequence."
187 (if (or (not (stringp string))
188 (multibyte-string-p string))
189 (error "Not a unibyte string: %s" string))
190 (let ((status (make-vector 9 0)))
191 (ccl-execute-on-string ccl-check-utf-8 status string)
192 (= (aref status 0) 1)))
195 (defun xselect-convert-to-string (selection type value)
196 (let (str coding)
197 ;; Get the actual string from VALUE.
198 (cond ((stringp value)
199 (setq str value))
201 ((overlayp value)
202 (save-excursion
203 (or (buffer-name (overlay-buffer value))
204 (error "selection is in a killed buffer"))
205 (set-buffer (overlay-buffer value))
206 (setq str (buffer-substring (overlay-start value)
207 (overlay-end value)))))
208 ((and (consp value)
209 (markerp (car value))
210 (markerp (cdr value)))
211 (or (eq (marker-buffer (car value)) (marker-buffer (cdr value)))
212 (signal 'error
213 (list "markers must be in the same buffer"
214 (car value) (cdr value))))
215 (save-excursion
216 (set-buffer (or (marker-buffer (car value))
217 (error "selection is in a killed buffer")))
218 (setq str (buffer-substring (car value) (cdr value))))))
220 (when str
221 ;; If TYPE is nil, this is a local request, thus return STR as
222 ;; is. Otherwise, encode STR.
223 (if (not type)
225 (setq coding (or next-selection-coding-system selection-coding-system))
226 (if coding
227 (setq coding (coding-system-base coding))
228 (setq coding 'raw-text))
229 (let ((inhibit-read-only t))
230 ;; Suppress producing escape sequences for compositions.
231 (remove-text-properties 0 (length str) '(composition nil) str)
232 (cond
233 ((eq type 'TEXT)
234 (if (not (multibyte-string-p str))
235 ;; Don't have to encode unibyte string.
236 (setq type 'STRING)
237 ;; If STR contains only ASCII, Latin-1, and raw bytes,
238 ;; encode STR by iso-latin-1, and return it as type
239 ;; `STRING'. Otherwise, encode STR by CODING. In that
240 ;; case, the returing type depends on CODING.
241 (let ((charsets (find-charset-string str)))
242 (setq charsets
243 (delq 'ascii
244 (delq 'latin-iso8859-1
245 (delq 'eight-bit-control
246 (delq 'eight-bit-graphic charsets)))))
247 (if charsets
248 (setq str (encode-coding-string str coding)
249 type (if (memq coding '(compound-text
250 compound-text-with-extensions))
251 'COMPOUND_TEXT
252 'STRING))
253 (setq type 'STRING
254 str (encode-coding-string str 'iso-latin-1))))))
256 ((eq type 'COMPOUND_TEXT)
257 (setq str (encode-coding-string str coding)))
259 ((eq type 'STRING)
260 (if (memq coding '(compound-text
261 compound-text-with-extensions))
262 (setq str (string-make-unibyte str))
263 (setq str (encode-coding-string str coding))))
265 ((eq type 'UTF8_STRING)
266 (if (multibyte-string-p str)
267 (setq str (encode-coding-string str 'utf-8)))
268 (if (not (string-utf-8-p str))
269 (setq str nil))) ;; Decline request as we don't have UTF-8 data.
271 (error "Unknow selection type: %S" type))
274 (setq next-selection-coding-system nil)
275 (cons type str))))
278 (defun xselect-convert-to-length (selection type value)
279 (let ((value
280 (cond ((stringp value)
281 (length value))
282 ((overlayp value)
283 (abs (- (overlay-end value) (overlay-start value))))
284 ((and (consp value)
285 (markerp (car value))
286 (markerp (cdr value)))
287 (or (eq (marker-buffer (car value))
288 (marker-buffer (cdr value)))
289 (signal 'error
290 (list "markers must be in the same buffer"
291 (car value) (cdr value))))
292 (abs (- (car value) (cdr value)))))))
293 (if value ; force it to be in 32-bit format.
294 (cons (ash value -16) (logand value 65535))
295 nil)))
297 (defun xselect-convert-to-targets (selection type value)
298 ;; return a vector of atoms, but remove duplicates first.
299 (let* ((all (cons 'TIMESTAMP (mapcar 'car selection-converter-alist)))
300 (rest all))
301 (while rest
302 (cond ((memq (car rest) (cdr rest))
303 (setcdr rest (delq (car rest) (cdr rest))))
304 ((eq (car (cdr rest)) '_EMACS_INTERNAL) ; shh, it's a secret
305 (setcdr rest (cdr (cdr rest))))
307 (setq rest (cdr rest)))))
308 (apply 'vector all)))
310 (defun xselect-convert-to-delete (selection type value)
311 (x-disown-selection-internal selection)
312 ;; A return value of nil means that we do not know how to do this conversion,
313 ;; and replies with an "error". A return value of NULL means that we have
314 ;; done the conversion (and any side-effects) but have no value to return.
315 'NULL)
317 (defun xselect-convert-to-filename (selection type value)
318 (cond ((overlayp value)
319 (buffer-file-name (or (overlay-buffer value)
320 (error "selection is in a killed buffer"))))
321 ((and (consp value)
322 (markerp (car value))
323 (markerp (cdr value)))
324 (buffer-file-name (or (marker-buffer (car value))
325 (error "selection is in a killed buffer"))))
326 (t nil)))
328 (defun xselect-convert-to-charpos (selection type value)
329 (let (a b tmp)
330 (cond ((cond ((overlayp value)
331 (setq a (overlay-start value)
332 b (overlay-end value)))
333 ((and (consp value)
334 (markerp (car value))
335 (markerp (cdr value)))
336 (setq a (car value)
337 b (cdr value))))
338 (setq a (1- a) b (1- b)) ; zero-based
339 (if (< b a) (setq tmp a a b b tmp))
340 (cons 'SPAN
341 (vector (cons (ash a -16) (logand a 65535))
342 (cons (ash b -16) (logand b 65535))))))))
344 (defun xselect-convert-to-lineno (selection type value)
345 (let (a b buf tmp)
346 (cond ((cond ((and (consp value)
347 (markerp (car value))
348 (markerp (cdr value)))
349 (setq a (marker-position (car value))
350 b (marker-position (cdr value))
351 buf (marker-buffer (car value))))
352 ((overlayp value)
353 (setq buf (overlay-buffer value)
354 a (overlay-start value)
355 b (overlay-end value)))
357 (save-excursion
358 (set-buffer buf)
359 (setq a (count-lines 1 a)
360 b (count-lines 1 b)))
361 (if (< b a) (setq tmp a a b b tmp))
362 (cons 'SPAN
363 (vector (cons (ash a -16) (logand a 65535))
364 (cons (ash b -16) (logand b 65535))))))))
366 (defun xselect-convert-to-colno (selection type value)
367 (let (a b buf tmp)
368 (cond ((cond ((and (consp value)
369 (markerp (car value))
370 (markerp (cdr value)))
371 (setq a (car value)
372 b (cdr value)
373 buf (marker-buffer a)))
374 ((overlayp value)
375 (setq buf (overlay-buffer value)
376 a (overlay-start value)
377 b (overlay-end value)))
379 (save-excursion
380 (set-buffer buf)
381 (goto-char a)
382 (setq a (current-column))
383 (goto-char b)
384 (setq b (current-column)))
385 (if (< b a) (setq tmp a a b b tmp))
386 (cons 'SPAN
387 (vector (cons (ash a -16) (logand a 65535))
388 (cons (ash b -16) (logand b 65535))))))))
390 (defun xselect-convert-to-os (selection type size)
391 (symbol-name system-type))
393 (defun xselect-convert-to-host (selection type size)
394 (system-name))
396 (defun xselect-convert-to-user (selection type size)
397 (user-full-name))
399 (defun xselect-convert-to-class (selection type size)
400 "Convert selection to class.
401 This function returns the string \"Emacs\"."
402 "Emacs")
404 ;; We do not try to determine the name Emacs was invoked with,
405 ;; because it is not clean for a program's behavior to depend on that.
406 (defun xselect-convert-to-name (selection type size)
407 "Convert selection to name.
408 This function returns the string \"emacs\"."
409 "emacs")
411 (defun xselect-convert-to-integer (selection type value)
412 (and (integerp value)
413 (cons (ash value -16) (logand value 65535))))
415 (defun xselect-convert-to-atom (selection type value)
416 (and (symbolp value) value))
418 (defun xselect-convert-to-identity (selection type value) ; used internally
419 (vector value))
421 (setq selection-converter-alist
422 '((TEXT . xselect-convert-to-string)
423 (COMPOUND_TEXT . xselect-convert-to-string)
424 (STRING . xselect-convert-to-string)
425 (UTF8_STRING . xselect-convert-to-string)
426 (TARGETS . xselect-convert-to-targets)
427 (LENGTH . xselect-convert-to-length)
428 (DELETE . xselect-convert-to-delete)
429 (FILE_NAME . xselect-convert-to-filename)
430 (CHARACTER_POSITION . xselect-convert-to-charpos)
431 (LINE_NUMBER . xselect-convert-to-lineno)
432 (COLUMN_NUMBER . xselect-convert-to-colno)
433 (OWNER_OS . xselect-convert-to-os)
434 (HOST_NAME . xselect-convert-to-host)
435 (USER . xselect-convert-to-user)
436 (CLASS . xselect-convert-to-class)
437 (NAME . xselect-convert-to-name)
438 (ATOM . xselect-convert-to-atom)
439 (INTEGER . xselect-convert-to-integer)
440 (_EMACS_INTERNAL . xselect-convert-to-identity)
443 (provide 'select)
445 ;;; arch-tag: bb634f97-8a3b-4b0a-b940-f6e09982328c
446 ;;; select.el ends here