]> code.delx.au - gnu-emacs/blob - src/terminal.c
Nuke arch-tags.
[gnu-emacs] / src / terminal.c
1 /* Functions related to terminal devices.
2 Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19 #include <config.h>
20 #include <stdio.h>
21 #include <setjmp.h>
22
23 #include "lisp.h"
24 #include "frame.h"
25 #include "termchar.h"
26 #include "termhooks.h"
27 #include "charset.h"
28 #include "coding.h"
29 #include "keyboard.h"
30
31 /* Chain of all terminals currently in use. */
32 struct terminal *terminal_list;
33
34 /* The first unallocated terminal id. */
35 static int next_terminal_id;
36
37 /* The initial terminal device, created by initial_term_init. */
38 struct terminal *initial_terminal;
39
40 /* Function to use to ring the bell. */
41 Lisp_Object Vring_bell_function;
42
43 static void delete_initial_terminal (struct terminal *);
44
45 \f
46
47 void
48 ring_bell (struct frame *f)
49 {
50 if (!NILP (Vring_bell_function))
51 {
52 Lisp_Object function;
53
54 /* Temporarily set the global variable to nil
55 so that if we get an error, it stays nil
56 and we don't call it over and over.
57
58 We don't specbind it, because that would carefully
59 restore the bad value if there's an error
60 and make the loop of errors happen anyway. */
61
62 function = Vring_bell_function;
63 Vring_bell_function = Qnil;
64
65 call0 (function);
66
67 Vring_bell_function = function;
68 }
69 else if (FRAME_TERMINAL (f)->ring_bell_hook)
70 (*FRAME_TERMINAL (f)->ring_bell_hook) (f);
71 }
72
73 void
74 update_begin (struct frame *f)
75 {
76 if (FRAME_TERMINAL (f)->update_begin_hook)
77 (*FRAME_TERMINAL (f)->update_begin_hook) (f);
78 }
79
80 void
81 update_end (struct frame *f)
82 {
83 if (FRAME_TERMINAL (f)->update_end_hook)
84 (*FRAME_TERMINAL (f)->update_end_hook) (f);
85 }
86
87 /* Specify how many text lines, from the top of the window,
88 should be affected by insert-lines and delete-lines operations.
89 This, and those operations, are used only within an update
90 that is bounded by calls to update_begin and update_end. */
91
92 void
93 set_terminal_window (struct frame *f, int size)
94 {
95 if (FRAME_TERMINAL (f)->set_terminal_window_hook)
96 (*FRAME_TERMINAL (f)->set_terminal_window_hook) (f, size);
97 }
98
99 /* Move cursor to row/column position VPOS/HPOS. HPOS/VPOS are
100 frame-relative coordinates. */
101
102 void
103 cursor_to (struct frame *f, int vpos, int hpos)
104 {
105 if (FRAME_TERMINAL (f)->cursor_to_hook)
106 (*FRAME_TERMINAL (f)->cursor_to_hook) (f, vpos, hpos);
107 }
108
109 /* Similar but don't take any account of the wasted characters. */
110
111 void
112 raw_cursor_to (struct frame *f, int row, int col)
113 {
114 if (FRAME_TERMINAL (f)->raw_cursor_to_hook)
115 (*FRAME_TERMINAL (f)->raw_cursor_to_hook) (f, row, col);
116 }
117
118 /* Erase operations */
119
120 /* Clear from cursor to end of frame. */
121 void
122 clear_to_end (struct frame *f)
123 {
124 if (FRAME_TERMINAL (f)->clear_to_end_hook)
125 (*FRAME_TERMINAL (f)->clear_to_end_hook) (f);
126 }
127
128 /* Clear entire frame */
129
130 void
131 clear_frame (struct frame *f)
132 {
133 if (FRAME_TERMINAL (f)->clear_frame_hook)
134 (*FRAME_TERMINAL (f)->clear_frame_hook) (f);
135 }
136
137 /* Clear from cursor to end of line.
138 Assume that the line is already clear starting at column first_unused_hpos.
139
140 Note that the cursor may be moved, on terminals lacking a `ce' string. */
141
142 void
143 clear_end_of_line (struct frame *f, int first_unused_hpos)
144 {
145 if (FRAME_TERMINAL (f)->clear_end_of_line_hook)
146 (*FRAME_TERMINAL (f)->clear_end_of_line_hook) (f, first_unused_hpos);
147 }
148
149 /* Output LEN glyphs starting at STRING at the nominal cursor position.
150 Advance the nominal cursor over the text. */
151
152 void
153 write_glyphs (struct frame *f, struct glyph *string, int len)
154 {
155 if (FRAME_TERMINAL (f)->write_glyphs_hook)
156 (*FRAME_TERMINAL (f)->write_glyphs_hook) (f, string, len);
157 }
158
159 /* Insert LEN glyphs from START at the nominal cursor position.
160
161 If start is zero, insert blanks instead of a string at start */
162
163 void
164 insert_glyphs (struct frame *f, struct glyph *start, int len)
165 {
166 if (len <= 0)
167 return;
168
169 if (FRAME_TERMINAL (f)->insert_glyphs_hook)
170 (*FRAME_TERMINAL (f)->insert_glyphs_hook) (f, start, len);
171 }
172
173 /* Delete N glyphs at the nominal cursor position. */
174
175 void
176 delete_glyphs (struct frame *f, int n)
177 {
178 if (FRAME_TERMINAL (f)->delete_glyphs_hook)
179 (*FRAME_TERMINAL (f)->delete_glyphs_hook) (f, n);
180 }
181
182 /* Insert N lines at vpos VPOS. If N is negative, delete -N lines. */
183
184 void
185 ins_del_lines (struct frame *f, int vpos, int n)
186 {
187 if (FRAME_TERMINAL (f)->ins_del_lines_hook)
188 (*FRAME_TERMINAL (f)->ins_del_lines_hook) (f, vpos, n);
189 }
190
191
192 \f
193
194 /* Return the terminal object specified by TERMINAL. TERMINAL may be
195 a terminal object, a frame, or nil for the terminal device of the
196 current frame. If THROW is zero, return NULL for failure,
197 otherwise throw an error. */
198
199 struct terminal *
200 get_terminal (Lisp_Object terminal, int throw)
201 {
202 struct terminal *result = NULL;
203
204 if (NILP (terminal))
205 terminal = selected_frame;
206
207 if (TERMINALP (terminal))
208 result = XTERMINAL (terminal);
209 else if (FRAMEP (terminal))
210 result = FRAME_TERMINAL (XFRAME (terminal));
211
212 if (result && !result->name)
213 result = NULL;
214
215 if (result == NULL && throw)
216 wrong_type_argument (Qterminal_live_p, terminal);
217
218 return result;
219 }
220
221 \f
222
223 /* Create a new terminal object and add it to the terminal list. */
224
225 struct terminal *
226 create_terminal (void)
227 {
228 struct terminal *terminal = allocate_terminal ();
229
230 terminal->name = NULL;
231 terminal->next_terminal = terminal_list;
232 terminal_list = terminal;
233
234 terminal->id = next_terminal_id++;
235
236 terminal->keyboard_coding =
237 (struct coding_system *) xmalloc (sizeof (struct coding_system));
238 terminal->terminal_coding =
239 (struct coding_system *) xmalloc (sizeof (struct coding_system));
240
241 setup_coding_system (Qno_conversion, terminal->keyboard_coding);
242 setup_coding_system (Qundecided, terminal->terminal_coding);
243
244 terminal->param_alist = Qnil;
245 return terminal;
246 }
247
248 /* Low-level function to close all frames on a terminal, remove it
249 from the terminal list and free its memory. */
250
251 void
252 delete_terminal (struct terminal *terminal)
253 {
254 struct terminal **tp;
255 Lisp_Object tail, frame;
256
257 /* Protect against recursive calls. delete_frame calls the
258 delete_terminal_hook when we delete our last frame. */
259 if (!terminal->name)
260 return;
261 xfree (terminal->name);
262 terminal->name = NULL;
263
264 /* Check for live frames that are still on this terminal. */
265 FOR_EACH_FRAME (tail, frame)
266 {
267 struct frame *f = XFRAME (frame);
268 if (FRAME_LIVE_P (f) && f->terminal == terminal)
269 {
270 /* Pass Qnoelisp rather than Qt. */
271 delete_frame (frame, Qnoelisp);
272 }
273 }
274
275 for (tp = &terminal_list; *tp != terminal; tp = &(*tp)->next_terminal)
276 if (! *tp)
277 abort ();
278 *tp = terminal->next_terminal;
279
280 xfree (terminal->keyboard_coding);
281 terminal->keyboard_coding = NULL;
282 xfree (terminal->terminal_coding);
283 terminal->terminal_coding = NULL;
284
285 if (terminal->kboard && --terminal->kboard->reference_count == 0)
286 {
287 delete_kboard (terminal->kboard);
288 terminal->kboard = NULL;
289 }
290 }
291
292 Lisp_Object Qrun_hook_with_args;
293 static Lisp_Object Qdelete_terminal_functions;
294 static Lisp_Object Vdelete_terminal_functions;
295
296 DEFUN ("delete-terminal", Fdelete_terminal, Sdelete_terminal, 0, 2, 0,
297 doc: /* Delete TERMINAL by deleting all frames on it and closing the terminal.
298 TERMINAL may be a terminal object, a frame, or nil (meaning the
299 selected frame's terminal).
300
301 Normally, you may not delete a display if all other displays are suspended,
302 but if the second argument FORCE is non-nil, you may do so. */)
303 (Lisp_Object terminal, Lisp_Object force)
304 {
305 struct terminal *t = get_terminal (terminal, 0);
306
307 if (!t)
308 return Qnil;
309
310 if (NILP (force))
311 {
312 struct terminal *p = terminal_list;
313 while (p && (p == t || !TERMINAL_ACTIVE_P (p)))
314 p = p->next_terminal;
315
316 if (!p)
317 error ("Attempt to delete the sole active display terminal");
318 }
319
320 if (NILP (Vrun_hooks))
321 ;
322 else if (EQ (force, Qnoelisp))
323 pending_funcalls
324 = Fcons (list3 (Qrun_hook_with_args,
325 Qdelete_terminal_functions, terminal),
326 pending_funcalls);
327 else
328 safe_call2 (Qrun_hook_with_args, Qdelete_terminal_functions, terminal);
329
330 if (t->delete_terminal_hook)
331 (*t->delete_terminal_hook) (t);
332 else
333 delete_terminal (t);
334
335 return Qnil;
336 }
337
338 \f
339 DEFUN ("frame-terminal", Fframe_terminal, Sframe_terminal, 0, 1, 0,
340 doc: /* Return the terminal that FRAME is displayed on.
341 If FRAME is nil, the selected frame is used.
342
343 The terminal device is represented by its integer identifier. */)
344 (Lisp_Object frame)
345 {
346 struct terminal *t;
347
348 if (NILP (frame))
349 frame = selected_frame;
350
351 CHECK_LIVE_FRAME (frame);
352
353 t = FRAME_TERMINAL (XFRAME (frame));
354
355 if (!t)
356 return Qnil;
357 else
358 {
359 Lisp_Object terminal;
360 XSETTERMINAL (terminal, t);
361 return terminal;
362 }
363 }
364
365 DEFUN ("terminal-live-p", Fterminal_live_p, Sterminal_live_p, 1, 1, 0,
366 doc: /* Return non-nil if OBJECT is a terminal which has not been deleted.
367 Value is nil if OBJECT is not a live display terminal.
368 If object is a live display terminal, the return value indicates what
369 sort of output terminal it uses. See the documentation of `framep' for
370 possible return values. */)
371 (Lisp_Object object)
372 {
373 struct terminal *t;
374
375 t = get_terminal (object, 0);
376
377 if (!t)
378 return Qnil;
379
380 switch (t->type)
381 {
382 case output_initial: /* The initial frame is like a termcap frame. */
383 case output_termcap:
384 return Qt;
385 case output_x_window:
386 return Qx;
387 case output_w32:
388 return Qw32;
389 case output_msdos_raw:
390 return Qpc;
391 case output_mac:
392 return Qmac;
393 case output_ns:
394 return Qns;
395 default:
396 abort ();
397 }
398 }
399
400 DEFUN ("terminal-list", Fterminal_list, Sterminal_list, 0, 0, 0,
401 doc: /* Return a list of all terminal devices. */)
402 (void)
403 {
404 Lisp_Object terminal, terminals = Qnil;
405 struct terminal *t;
406
407 for (t = terminal_list; t; t = t->next_terminal)
408 {
409 XSETTERMINAL (terminal, t);
410 terminals = Fcons (terminal, terminals);
411 }
412
413 return terminals;
414 }
415
416 DEFUN ("terminal-name", Fterminal_name, Sterminal_name, 0, 1, 0,
417 doc: /* Return the name of the terminal device TERMINAL.
418 It is not guaranteed that the returned value is unique among opened devices.
419
420 TERMINAL may be a terminal object, a frame, or nil (meaning the
421 selected frame's terminal). */)
422 (Lisp_Object terminal)
423 {
424 struct terminal *t
425 = TERMINALP (terminal) ? XTERMINAL (terminal) : get_terminal (terminal, 1);
426
427 return t->name ? build_string (t->name) : Qnil;
428 }
429
430
431 \f
432 /* Set the value of terminal parameter PARAMETER in terminal D to VALUE.
433 Return the previous value. */
434
435 Lisp_Object
436 store_terminal_param (struct terminal *t, Lisp_Object parameter, Lisp_Object value)
437 {
438 Lisp_Object old_alist_elt = Fassq (parameter, t->param_alist);
439 if (EQ (old_alist_elt, Qnil))
440 {
441 t->param_alist = Fcons (Fcons (parameter, value), t->param_alist);
442 return Qnil;
443 }
444 else
445 {
446 Lisp_Object result = Fcdr (old_alist_elt);
447 Fsetcdr (old_alist_elt, value);
448 return result;
449 }
450 }
451
452
453 DEFUN ("terminal-parameters", Fterminal_parameters, Sterminal_parameters, 0, 1, 0,
454 doc: /* Return the parameter-alist of terminal TERMINAL.
455 The value is a list of elements of the form (PARM . VALUE), where PARM
456 is a symbol.
457
458 TERMINAL can be a terminal object, a frame, or nil (meaning the
459 selected frame's terminal). */)
460 (Lisp_Object terminal)
461 {
462 struct terminal *t
463 = TERMINALP (terminal) ? XTERMINAL (terminal) : get_terminal (terminal, 1);
464 return Fcopy_alist (t->param_alist);
465 }
466
467 DEFUN ("terminal-parameter", Fterminal_parameter, Sterminal_parameter, 2, 2, 0,
468 doc: /* Return TERMINAL's value for parameter PARAMETER.
469 TERMINAL can be a terminal object, a frame, or nil (meaning the
470 selected frame's terminal). */)
471 (Lisp_Object terminal, Lisp_Object parameter)
472 {
473 Lisp_Object value;
474 struct terminal *t
475 = TERMINALP (terminal) ? XTERMINAL (terminal) : get_terminal (terminal, 1);
476 CHECK_SYMBOL (parameter);
477 value = Fcdr (Fassq (parameter, t->param_alist));
478 return value;
479 }
480
481 DEFUN ("set-terminal-parameter", Fset_terminal_parameter,
482 Sset_terminal_parameter, 3, 3, 0,
483 doc: /* Set TERMINAL's value for parameter PARAMETER to VALUE.
484 Return the previous value of PARAMETER.
485
486 TERMINAL can be a terminal object, a frame or nil (meaning the
487 selected frame's terminal). */)
488 (Lisp_Object terminal, Lisp_Object parameter, Lisp_Object value)
489 {
490 struct terminal *t
491 = TERMINALP (terminal) ? XTERMINAL (terminal) : get_terminal (terminal, 1);
492 return store_terminal_param (t, parameter, value);
493 }
494
495 \f
496
497 /* Create the bootstrap display terminal for the initial frame.
498 Returns a terminal of type output_initial. */
499
500 struct terminal *
501 init_initial_terminal (void)
502 {
503 if (initialized || terminal_list || tty_list)
504 abort ();
505
506 initial_terminal = create_terminal ();
507 initial_terminal->type = output_initial;
508 initial_terminal->name = xstrdup ("initial_terminal");
509 initial_terminal->kboard = initial_kboard;
510 initial_terminal->delete_terminal_hook = &delete_initial_terminal;
511 /* All other hooks are NULL. */
512
513 return initial_terminal;
514 }
515
516 /* Deletes the bootstrap terminal device.
517 Called through delete_terminal_hook. */
518
519 static void
520 delete_initial_terminal (struct terminal *terminal)
521 {
522 if (terminal != initial_terminal)
523 abort ();
524
525 delete_terminal (terminal);
526 initial_terminal = NULL;
527 }
528
529 void
530 syms_of_terminal (void)
531 {
532
533 DEFVAR_LISP ("ring-bell-function", &Vring_bell_function,
534 doc: /* Non-nil means call this function to ring the bell.
535 The function should accept no arguments. */);
536 Vring_bell_function = Qnil;
537
538 DEFVAR_LISP ("delete-terminal-functions", &Vdelete_terminal_functions,
539 doc: /* Special hook run when a terminal is deleted.
540 Each function is called with argument, the terminal.
541 This may be called just before actually deleting the terminal,
542 or some time later. */);
543 Vdelete_terminal_functions = Qnil;
544 Qdelete_terminal_functions = intern_c_string ("delete-terminal-functions");
545 staticpro (&Qdelete_terminal_functions);
546 Qrun_hook_with_args = intern_c_string ("run-hook-with-args");
547 staticpro (&Qrun_hook_with_args);
548
549 defsubr (&Sdelete_terminal);
550 defsubr (&Sframe_terminal);
551 defsubr (&Sterminal_live_p);
552 defsubr (&Sterminal_list);
553 defsubr (&Sterminal_name);
554 defsubr (&Sterminal_parameters);
555 defsubr (&Sterminal_parameter);
556 defsubr (&Sset_terminal_parameter);
557
558 Fprovide (intern_c_string ("multi-tty"), Qnil);
559 }
560