428
|
1 /* The console object.
|
|
2 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
|
800
|
3 Copyright (C) 1996, 2002 Ben Wing.
|
428
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Not in FSF. */
|
|
23
|
853
|
24 /* Written by Ben Wing, late 1995?.
|
|
25 suspend-console, set-input-mode, and related stuff largely based on
|
|
26 existing code.
|
|
27 */
|
428
|
28
|
|
29 #include <config.h>
|
|
30 #include "lisp.h"
|
|
31
|
|
32 #include "buffer.h"
|
872
|
33 #include "console-impl.h"
|
|
34 #include "device-impl.h"
|
428
|
35 #include "events.h"
|
872
|
36 #include "frame-impl.h"
|
428
|
37 #include "redisplay.h"
|
|
38 #include "sysdep.h"
|
|
39 #include "window.h"
|
|
40
|
872
|
41 #ifdef HAVE_TTY
|
|
42 #include "console-tty-impl.h"
|
|
43 #endif
|
800
|
44
|
428
|
45 Lisp_Object Vconsole_list, Vselected_console;
|
|
46
|
|
47 Lisp_Object Vcreate_console_hook, Vdelete_console_hook;
|
|
48
|
|
49 Lisp_Object Qconsolep, Qconsole_live_p;
|
|
50 Lisp_Object Qcreate_console_hook;
|
|
51 Lisp_Object Qdelete_console_hook;
|
|
52
|
|
53 Lisp_Object Qsuspend_hook;
|
|
54 Lisp_Object Qsuspend_resume_hook;
|
|
55
|
|
56 /* This structure holds the default values of the console-local
|
|
57 variables defined with DEFVAR_CONSOLE_LOCAL, that have special
|
|
58 slots in each console. The default value occupies the same slot
|
|
59 in this structure as an individual console's value occupies in
|
|
60 that console. Setting the default value also goes through the
|
|
61 list of consoles and stores into each console that does not say
|
|
62 it has a local value. */
|
|
63 Lisp_Object Vconsole_defaults;
|
|
64 static void *console_defaults_saved_slots;
|
|
65
|
|
66 /* This structure marks which slots in a console have corresponding
|
|
67 default values in console_defaults.
|
|
68 Each such slot has a nonzero value in this structure.
|
|
69 The value has only one nonzero bit.
|
|
70
|
|
71 When a console has its own local value for a slot,
|
|
72 the bit for that slot (found in the same slot in this structure)
|
|
73 is turned on in the console's local_var_flags slot.
|
|
74
|
|
75 If a slot in this structure is 0, then there is a DEFVAR_CONSOLE_LOCAL
|
|
76 for the slot, but there is no default value for it; the corresponding
|
|
77 slot in console_defaults is not used except to initialize newly-created
|
|
78 consoles.
|
|
79
|
|
80 If a slot is -1, then there is a DEFVAR_CONSOLE_LOCAL for it
|
|
81 as well as a default value which is used to initialize newly-created
|
|
82 consoles and as a reset-value when local-vars are killed.
|
|
83
|
|
84 If a slot is -2, there is no DEFVAR_CONSOLE_LOCAL for it.
|
|
85 (The slot is always local, but there's no lisp variable for it.)
|
|
86 The default value is only used to initialize newly-creation consoles.
|
|
87
|
|
88 If a slot is -3, then there is no DEFVAR_CONSOLE_LOCAL for it but
|
|
89 there is a default which is used to initialize newly-creation
|
|
90 consoles and as a reset-value when local-vars are killed.
|
|
91
|
|
92
|
|
93 */
|
|
94 struct console console_local_flags;
|
|
95
|
|
96 /* This structure holds the names of symbols whose values may be
|
|
97 console-local. It is indexed and accessed in the same way as the above. */
|
|
98 static Lisp_Object Vconsole_local_symbols;
|
|
99 static void *console_local_symbols_saved_slots;
|
|
100
|
|
101 DEFINE_CONSOLE_TYPE (dead);
|
|
102
|
|
103 Lisp_Object Vconsole_type_list;
|
|
104
|
|
105 console_type_entry_dynarr *the_console_type_entry_dynarr;
|
|
106
|
|
107
|
|
108 static Lisp_Object
|
|
109 mark_console (Lisp_Object obj)
|
|
110 {
|
|
111 struct console *con = XCONSOLE (obj);
|
|
112
|
|
113 #define MARKED_SLOT(x) mark_object (con->x)
|
|
114 #include "conslots.h"
|
|
115
|
|
116 /* Can be zero for Vconsole_defaults, Vconsole_local_symbols */
|
|
117 if (con->conmeths)
|
|
118 {
|
|
119 mark_object (con->conmeths->symbol);
|
|
120 MAYBE_CONMETH (con, mark_console, (con));
|
|
121 }
|
|
122
|
|
123 return Qnil;
|
|
124 }
|
|
125
|
|
126 static void
|
|
127 print_console (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
128 {
|
|
129 struct console *con = XCONSOLE (obj);
|
|
130
|
|
131 if (print_readably)
|
563
|
132 printing_unreadable_object ("#<console %s 0x%x>",
|
|
133 XSTRING_DATA (con->name), con->header.uid);
|
428
|
134
|
800
|
135 write_fmt_string (printcharfun, "#<%s-console",
|
|
136 !CONSOLE_LIVE_P (con) ? "dead" : CONSOLE_TYPE_NAME (con));
|
440
|
137 if (CONSOLE_LIVE_P (con) && !NILP (CONSOLE_CONNECTION (con)))
|
800
|
138 write_fmt_string_lisp (printcharfun, " on %S", 1,
|
|
139 CONSOLE_CONNECTION (con));
|
|
140 write_fmt_string (printcharfun, " 0x%x>", con->header.uid);
|
428
|
141 }
|
|
142
|
|
143 DEFINE_LRECORD_IMPLEMENTATION ("console", console,
|
|
144 mark_console, print_console, 0, 0, 0, 0,
|
|
145 struct console);
|
|
146
|
|
147 static struct console *
|
|
148 allocate_console (void)
|
|
149 {
|
|
150 Lisp_Object console;
|
|
151 struct console *con = alloc_lcrecord_type (struct console, &lrecord_console);
|
|
152 struct gcpro gcpro1;
|
|
153
|
|
154 copy_lcrecord (con, XCONSOLE (Vconsole_defaults));
|
|
155
|
793
|
156 console = wrap_console (con);
|
428
|
157 GCPRO1 (console);
|
|
158
|
|
159 con->quit_char = 7; /* C-g */
|
771
|
160 con->command_builder = allocate_command_builder (console, 1);
|
428
|
161 con->function_key_map = Fmake_sparse_keymap (Qnil);
|
|
162
|
|
163 UNGCPRO;
|
|
164 return con;
|
|
165 }
|
|
166
|
|
167 struct console *
|
|
168 decode_console (Lisp_Object console)
|
|
169 {
|
|
170 if (NILP (console))
|
|
171 console = Fselected_console ();
|
|
172 /* quietly accept devices and frames for the console arg */
|
|
173 if (DEVICEP (console) || FRAMEP (console))
|
|
174 console = DEVICE_CONSOLE (decode_device (console));
|
|
175 CHECK_LIVE_CONSOLE (console);
|
|
176 return XCONSOLE (console);
|
|
177 }
|
|
178
|
|
179
|
|
180 struct console_methods *
|
578
|
181 decode_console_type (Lisp_Object type, Error_Behavior errb)
|
428
|
182 {
|
|
183 int i;
|
|
184
|
|
185 for (i = 0; i < Dynarr_length (the_console_type_entry_dynarr); i++)
|
|
186 if (EQ (type, Dynarr_at (the_console_type_entry_dynarr, i).symbol))
|
|
187 return Dynarr_at (the_console_type_entry_dynarr, i).meths;
|
|
188
|
563
|
189 maybe_invalid_constant ("Invalid console type", type, Qconsole, errb);
|
428
|
190
|
|
191 return 0;
|
|
192 }
|
|
193
|
|
194 int
|
|
195 valid_console_type_p (Lisp_Object type)
|
|
196 {
|
|
197 return decode_console_type (type, ERROR_ME_NOT) != 0;
|
|
198 }
|
|
199
|
|
200 DEFUN ("valid-console-type-p", Fvalid_console_type_p, 1, 1, 0, /*
|
444
|
201 Return t if CONSOLE-TYPE is a valid console type.
|
428
|
202 Valid types are 'x, 'tty, and 'stream.
|
|
203 */
|
|
204 (console_type))
|
|
205 {
|
|
206 return valid_console_type_p (console_type) ? Qt : Qnil;
|
|
207 }
|
|
208
|
|
209 DEFUN ("console-type-list", Fconsole_type_list, 0, 0, 0, /*
|
|
210 Return a list of valid console types.
|
|
211 */
|
|
212 ())
|
|
213 {
|
|
214 return Fcopy_sequence (Vconsole_type_list);
|
|
215 }
|
|
216
|
|
217 DEFUN ("cdfw-console", Fcdfw_console, 1, 1, 0, /*
|
|
218 Given a console, device, frame, or window, return the associated console.
|
|
219 Return nil otherwise.
|
|
220 */
|
444
|
221 (object))
|
428
|
222 {
|
444
|
223 return CDFW_CONSOLE (object);
|
428
|
224 }
|
|
225
|
872
|
226 int
|
|
227 console_live_p (struct console *c)
|
|
228 {
|
|
229 return CONSOLE_LIVE_P (c);
|
|
230 }
|
|
231
|
|
232 Lisp_Object
|
|
233 console_device_list (struct console *c)
|
|
234 {
|
|
235 return CONSOLE_DEVICE_LIST (c);
|
|
236 }
|
|
237
|
428
|
238
|
|
239 DEFUN ("selected-console", Fselected_console, 0, 0, 0, /*
|
|
240 Return the console which is currently active.
|
|
241 */
|
|
242 ())
|
|
243 {
|
|
244 return Vselected_console;
|
|
245 }
|
|
246
|
|
247 /* Called from selected_device_1(), called from selected_frame_1(),
|
|
248 called from Fselect_window() */
|
|
249 void
|
|
250 select_console_1 (Lisp_Object console)
|
|
251 {
|
|
252 /* perhaps this should do something more complicated */
|
|
253 Vselected_console = console;
|
|
254
|
|
255 /* #### Schedule this to be removed in 19.14 */
|
|
256 #ifdef HAVE_X_WINDOWS
|
|
257 if (CONSOLE_X_P (XCONSOLE (console)))
|
|
258 Vwindow_system = Qx;
|
|
259 else
|
|
260 #endif
|
462
|
261 #ifdef HAVE_GTK
|
|
262 if (CONSOLE_GTK_P (XCONSOLE (console)))
|
|
263 Vwindow_system = Qgtk;
|
|
264 else
|
|
265 #endif
|
428
|
266 #ifdef HAVE_MS_WINDOWS
|
|
267 if (CONSOLE_MSWINDOWS_P (XCONSOLE (console)))
|
|
268 Vwindow_system = Qmswindows;
|
|
269 else
|
|
270 #endif
|
|
271 Vwindow_system = Qnil;
|
|
272 }
|
|
273
|
|
274 DEFUN ("select-console", Fselect_console, 1, 1, 0, /*
|
|
275 Select the console CONSOLE.
|
|
276 Subsequent editing commands apply to its selected device, selected frame,
|
|
277 and selected window. The selection of CONSOLE lasts until the next time
|
|
278 the user does something to select a different console, or until the next
|
|
279 time this function is called.
|
|
280 */
|
|
281 (console))
|
|
282 {
|
|
283 Lisp_Object device;
|
|
284
|
|
285 CHECK_LIVE_CONSOLE (console);
|
|
286
|
|
287 device = CONSOLE_SELECTED_DEVICE (XCONSOLE (console));
|
|
288 if (!NILP (device))
|
|
289 {
|
|
290 struct device *d = XDEVICE (device);
|
|
291 Lisp_Object frame = DEVICE_SELECTED_FRAME (d);
|
|
292 if (!NILP (frame))
|
|
293 {
|
|
294 struct frame *f = XFRAME(frame);
|
|
295 Fselect_window (FRAME_SELECTED_WINDOW (f), Qnil);
|
|
296 }
|
|
297 else
|
563
|
298 invalid_operation ("Can't select console with no frames", Qunbound);
|
428
|
299 }
|
|
300 else
|
563
|
301 invalid_operation ("Can't select a console with no devices", Qunbound);
|
428
|
302 return Qnil;
|
|
303 }
|
|
304
|
|
305 void
|
|
306 set_console_last_nonminibuf_frame (struct console *con,
|
|
307 Lisp_Object frame)
|
|
308 {
|
|
309 con->last_nonminibuf_frame = frame;
|
|
310 }
|
|
311
|
|
312 DEFUN ("consolep", Fconsolep, 1, 1, 0, /*
|
|
313 Return non-nil if OBJECT is a console.
|
|
314 */
|
|
315 (object))
|
|
316 {
|
|
317 return CONSOLEP (object) ? Qt : Qnil;
|
|
318 }
|
|
319
|
|
320 DEFUN ("console-live-p", Fconsole_live_p, 1, 1, 0, /*
|
|
321 Return non-nil if OBJECT is a console that has not been deleted.
|
|
322 */
|
|
323 (object))
|
|
324 {
|
|
325 return CONSOLEP (object) && CONSOLE_LIVE_P (XCONSOLE (object)) ? Qt : Qnil;
|
|
326 }
|
|
327
|
|
328 DEFUN ("console-type", Fconsole_type, 0, 1, 0, /*
|
444
|
329 Return the console type (e.g. `x' or `tty') of CONSOLE.
|
428
|
330 Value is `tty' for a tty console (a character-only terminal),
|
|
331 `x' for a console that is an X display,
|
|
332 `mswindows' for a console that is a Windows NT/95/97 connection,
|
|
333 `pc' for a console that is a direct-write MS-DOS connection (not yet
|
|
334 implemented),
|
|
335 `stream' for a stream console (which acts like a stdio stream), and
|
|
336 `dead' for a deleted console.
|
|
337 */
|
|
338 (console))
|
|
339 {
|
|
340 /* don't call decode_console() because we want to allow for dead
|
|
341 consoles. */
|
|
342 if (NILP (console))
|
|
343 console = Fselected_console ();
|
|
344 CHECK_CONSOLE (console);
|
|
345 return CONSOLE_TYPE (XCONSOLE (console));
|
|
346 }
|
|
347
|
|
348 DEFUN ("console-name", Fconsole_name, 0, 1, 0, /*
|
444
|
349 Return the name of CONSOLE.
|
428
|
350 */
|
|
351 (console))
|
|
352 {
|
|
353 return CONSOLE_NAME (decode_console (console));
|
|
354 }
|
|
355
|
|
356 DEFUN ("console-connection", Fconsole_connection, 0, 1, 0, /*
|
|
357 Return the connection of the specified console.
|
|
358 CONSOLE defaults to the selected console if omitted.
|
|
359 */
|
|
360 (console))
|
|
361 {
|
|
362 return CONSOLE_CONNECTION (decode_console (console));
|
|
363 }
|
|
364
|
|
365 static Lisp_Object
|
|
366 semi_canonicalize_console_connection (struct console_methods *meths,
|
578
|
367 Lisp_Object name, Error_Behavior errb)
|
428
|
368 {
|
440
|
369 if (HAS_CONTYPE_METH_P (meths, semi_canonicalize_console_connection))
|
|
370 return CONTYPE_METH (meths, semi_canonicalize_console_connection,
|
|
371 (name, errb));
|
|
372 else
|
|
373 return CONTYPE_METH_OR_GIVEN (meths, canonicalize_console_connection,
|
|
374 (name, errb), name);
|
428
|
375 }
|
|
376
|
|
377 static Lisp_Object
|
|
378 canonicalize_console_connection (struct console_methods *meths,
|
578
|
379 Lisp_Object name, Error_Behavior errb)
|
428
|
380 {
|
440
|
381 if (HAS_CONTYPE_METH_P (meths, canonicalize_console_connection))
|
|
382 return CONTYPE_METH (meths, canonicalize_console_connection,
|
|
383 (name, errb));
|
|
384 else
|
|
385 return CONTYPE_METH_OR_GIVEN (meths, semi_canonicalize_console_connection,
|
|
386 (name, errb), name);
|
428
|
387 }
|
|
388
|
|
389 static Lisp_Object
|
|
390 find_console_of_type (struct console_methods *meths, Lisp_Object canon)
|
|
391 {
|
|
392 Lisp_Object concons;
|
|
393
|
|
394 CONSOLE_LOOP (concons)
|
|
395 {
|
|
396 Lisp_Object console = XCAR (concons);
|
|
397
|
|
398 if (EQ (CONMETH_TYPE (meths), CONSOLE_TYPE (XCONSOLE (console)))
|
|
399 && internal_equal (CONSOLE_CANON_CONNECTION (XCONSOLE (console)),
|
|
400 canon, 0))
|
|
401 return console;
|
|
402 }
|
|
403
|
|
404 return Qnil;
|
|
405 }
|
|
406
|
|
407 DEFUN ("find-console", Ffind_console, 1, 2, 0, /*
|
|
408 Look for an existing console attached to connection CONNECTION.
|
|
409 Return the console if found; otherwise, return nil.
|
|
410
|
|
411 If TYPE is specified, only return consoles of that type; otherwise,
|
|
412 return consoles of any type. (It is possible, although unlikely,
|
|
413 that two consoles of different types could have the same connection
|
|
414 name; in such a case, the first console found is returned.)
|
|
415 */
|
|
416 (connection, type))
|
|
417 {
|
|
418 Lisp_Object canon = Qnil;
|
|
419 struct gcpro gcpro1;
|
|
420
|
|
421 GCPRO1 (canon);
|
|
422
|
|
423 if (!NILP (type))
|
|
424 {
|
|
425 struct console_methods *conmeths = decode_console_type (type, ERROR_ME);
|
|
426 canon = canonicalize_console_connection (conmeths, connection,
|
|
427 ERROR_ME_NOT);
|
|
428 if (UNBOUNDP (canon))
|
|
429 RETURN_UNGCPRO (Qnil);
|
|
430
|
|
431 RETURN_UNGCPRO (find_console_of_type (conmeths, canon));
|
|
432 }
|
|
433 else
|
|
434 {
|
|
435 int i;
|
|
436
|
|
437 for (i = 0; i < Dynarr_length (the_console_type_entry_dynarr); i++)
|
|
438 {
|
|
439 struct console_methods *conmeths =
|
|
440 Dynarr_at (the_console_type_entry_dynarr, i).meths;
|
|
441 canon = canonicalize_console_connection (conmeths, connection,
|
|
442 ERROR_ME_NOT);
|
|
443 if (!UNBOUNDP (canon))
|
|
444 {
|
|
445 Lisp_Object console = find_console_of_type (conmeths, canon);
|
|
446 if (!NILP (console))
|
|
447 RETURN_UNGCPRO (console);
|
|
448 }
|
|
449 }
|
|
450
|
|
451 RETURN_UNGCPRO (Qnil);
|
|
452 }
|
|
453 }
|
|
454
|
|
455 DEFUN ("get-console", Fget_console, 1, 2, 0, /*
|
|
456 Look for an existing console attached to connection CONNECTION.
|
|
457 Return the console if found; otherwise, signal an error.
|
|
458
|
|
459 If TYPE is specified, only return consoles of that type; otherwise,
|
|
460 return consoles of any type. (It is possible, although unlikely,
|
|
461 that two consoles of different types could have the same connection
|
|
462 name; in such a case, the first console found is returned.)
|
|
463 */
|
|
464 (connection, type))
|
|
465 {
|
|
466 Lisp_Object console = Ffind_console (connection, type);
|
|
467 if (NILP (console))
|
|
468 {
|
|
469 if (NILP (type))
|
563
|
470 invalid_argument ("No such console", connection);
|
428
|
471 else
|
563
|
472 invalid_argument_2 ("No such console", type, connection);
|
428
|
473 }
|
|
474 return console;
|
|
475 }
|
|
476
|
|
477 Lisp_Object
|
|
478 create_console (Lisp_Object name, Lisp_Object type, Lisp_Object connection,
|
|
479 Lisp_Object props)
|
|
480 {
|
|
481 /* This function can GC */
|
|
482 struct console *con;
|
|
483 Lisp_Object console;
|
|
484 struct gcpro gcpro1;
|
|
485
|
|
486 console = Ffind_console (connection, type);
|
|
487 if (!NILP (console))
|
|
488 return console;
|
|
489
|
|
490 con = allocate_console ();
|
793
|
491 console = wrap_console (con);
|
428
|
492
|
|
493 GCPRO1 (console);
|
|
494
|
|
495 con->conmeths = decode_console_type (type, ERROR_ME);
|
|
496
|
|
497 CONSOLE_NAME (con) = name;
|
|
498 CONSOLE_CONNECTION (con) =
|
|
499 semi_canonicalize_console_connection (con->conmeths, connection,
|
|
500 ERROR_ME);
|
|
501 CONSOLE_CANON_CONNECTION (con) =
|
|
502 canonicalize_console_connection (con->conmeths, connection,
|
|
503 ERROR_ME);
|
|
504
|
|
505 MAYBE_CONMETH (con, init_console, (con, props));
|
|
506
|
|
507 /* Do it this way so that the console list is in order of creation */
|
|
508 Vconsole_list = nconc2 (Vconsole_list, Fcons (console, Qnil));
|
853
|
509 note_object_created (console);
|
428
|
510
|
440
|
511 if (CONMETH_OR_GIVEN (con, initially_selected_for_input, (con), 0))
|
428
|
512 event_stream_select_console (con);
|
|
513
|
|
514 UNGCPRO;
|
|
515 return console;
|
|
516 }
|
|
517
|
|
518 void
|
|
519 add_entry_to_console_type_list (Lisp_Object symbol,
|
|
520 struct console_methods *meths)
|
|
521 {
|
|
522 struct console_type_entry entry;
|
|
523
|
|
524 entry.symbol = symbol;
|
|
525 entry.meths = meths;
|
|
526 Dynarr_add (the_console_type_entry_dynarr, entry);
|
|
527 Vconsole_type_list = Fcons (symbol, Vconsole_type_list);
|
|
528 }
|
|
529
|
|
530 /* find a console other than the selected one. Prefer non-stream
|
|
531 consoles over stream consoles. */
|
|
532
|
|
533 static Lisp_Object
|
|
534 find_other_console (Lisp_Object console)
|
|
535 {
|
|
536 Lisp_Object concons;
|
|
537
|
|
538 /* look for a non-stream console */
|
|
539 CONSOLE_LOOP (concons)
|
|
540 {
|
|
541 Lisp_Object con = XCAR (concons);
|
|
542 if (!CONSOLE_STREAM_P (XCONSOLE (con))
|
|
543 && !EQ (con, console)
|
|
544 && !NILP (CONSOLE_SELECTED_DEVICE (XCONSOLE (con)))
|
|
545 && !NILP (DEVICE_SELECTED_FRAME
|
|
546 (XDEVICE (CONSOLE_SELECTED_DEVICE (XCONSOLE (con))))))
|
|
547 break;
|
|
548 }
|
|
549 if (!NILP (concons))
|
|
550 return XCAR (concons);
|
|
551
|
|
552 /* OK, now look for a stream console */
|
|
553 CONSOLE_LOOP (concons)
|
|
554 {
|
|
555 Lisp_Object con = XCAR (concons);
|
|
556 if (!EQ (con, console)
|
|
557 && !NILP (CONSOLE_SELECTED_DEVICE (XCONSOLE (con)))
|
|
558 && !NILP (DEVICE_SELECTED_FRAME
|
|
559 (XDEVICE (CONSOLE_SELECTED_DEVICE (XCONSOLE (con))))))
|
|
560 break;
|
|
561 }
|
|
562 if (!NILP (concons))
|
|
563 return XCAR (concons);
|
|
564
|
|
565 /* Sorry, there ain't none */
|
|
566 return Qnil;
|
|
567 }
|
|
568
|
|
569 static int
|
|
570 find_nonminibuffer_frame_not_on_console_predicate (Lisp_Object frame,
|
|
571 void *closure)
|
|
572 {
|
|
573 Lisp_Object console;
|
|
574
|
826
|
575 console = VOID_TO_LISP (closure);
|
428
|
576 if (FRAME_MINIBUF_ONLY_P (XFRAME (frame)))
|
|
577 return 0;
|
|
578 if (EQ (console, FRAME_CONSOLE (XFRAME (frame))))
|
|
579 return 0;
|
|
580 return 1;
|
|
581 }
|
|
582
|
|
583 static Lisp_Object
|
|
584 find_nonminibuffer_frame_not_on_console (Lisp_Object console)
|
|
585 {
|
|
586 return find_some_frame (find_nonminibuffer_frame_not_on_console_predicate,
|
|
587 LISP_TO_VOID (console));
|
|
588 }
|
|
589
|
617
|
590 static void
|
|
591 nuke_all_console_slots (struct console *con, Lisp_Object zap)
|
|
592 {
|
|
593 zero_lcrecord (con);
|
|
594
|
|
595 #define MARKED_SLOT(x) con->x = zap
|
|
596 #include "conslots.h"
|
|
597 }
|
|
598
|
428
|
599 /* Delete console CON.
|
|
600
|
|
601 If FORCE is non-zero, allow deletion of the only frame.
|
|
602
|
|
603 If CALLED_FROM_KILL_EMACS is non-zero, then, if
|
|
604 deleting the last console, just delete it,
|
|
605 instead of calling `save-buffers-kill-emacs'.
|
|
606
|
|
607 If FROM_IO_ERROR is non-zero, then the console is gone due
|
|
608 to an I/O error. This affects what happens if we exit
|
|
609 (we do an emergency exit instead of `save-buffers-kill-emacs'.)
|
|
610 */
|
|
611
|
|
612 void
|
|
613 delete_console_internal (struct console *con, int force,
|
|
614 int called_from_kill_emacs, int from_io_error)
|
|
615 {
|
|
616 /* This function can GC */
|
|
617 Lisp_Object console;
|
|
618 struct gcpro gcpro1;
|
|
619
|
|
620 /* OK to delete an already-deleted console. */
|
|
621 if (!CONSOLE_LIVE_P (con))
|
|
622 return;
|
|
623
|
793
|
624 console = wrap_console (con);
|
853
|
625
|
|
626 if (!force)
|
|
627 check_allowed_operation (OPERATION_DELETE_OBJECT, console, Qnil);
|
|
628
|
428
|
629 GCPRO1 (console);
|
|
630
|
|
631 if (!called_from_kill_emacs)
|
|
632 {
|
|
633 int down_we_go = 0;
|
|
634
|
|
635 if ((XINT (Flength (Vconsole_list)) == 1)
|
|
636 /* if we just created the console, it might not be listed,
|
|
637 or something ... */
|
|
638 && !NILP (memq_no_quit (console, Vconsole_list)))
|
|
639 down_we_go = 1;
|
|
640 /* If there aren't any nonminibuffer frames that would
|
|
641 be left, then exit. */
|
|
642 else if (NILP (find_nonminibuffer_frame_not_on_console (console)))
|
|
643 down_we_go = 1;
|
|
644
|
|
645 if (down_we_go)
|
|
646 {
|
|
647 if (!force)
|
563
|
648 invalid_operation ("Attempt to delete the only frame", Qunbound);
|
428
|
649 else if (from_io_error)
|
|
650 {
|
|
651 /* Mayday mayday! We're going down! */
|
|
652 stderr_out (" Autosaving and exiting...\n");
|
|
653 Vwindow_system = Qnil; /* let it lie! */
|
|
654 preparing_for_armageddon = 1;
|
|
655 Fkill_emacs (make_int (70));
|
|
656 }
|
|
657 else
|
|
658 {
|
|
659 call0 (Qsave_buffers_kill_emacs);
|
|
660 UNGCPRO;
|
|
661 /* If we get here, the user said they didn't want
|
|
662 to exit, so don't. */
|
|
663 return;
|
|
664 }
|
|
665 }
|
|
666 }
|
|
667
|
|
668 /* Breathe a sigh of relief. We're still alive. */
|
|
669
|
|
670 {
|
|
671 Lisp_Object frmcons, devcons;
|
|
672
|
|
673 /* First delete all frames without their own minibuffers,
|
|
674 to avoid errors coming from attempting to delete a frame
|
|
675 that is a surrogate for another frame.
|
|
676
|
|
677 We don't set "called_from_delete_console" because we want the
|
|
678 device to go ahead and get deleted if we delete the last frame
|
|
679 on a device. We won't run into trouble here because for any
|
|
680 frame without a minibuffer, there has to be another one on
|
|
681 the same console with a minibuffer, and we're not deleting that,
|
|
682 so delete_console_internal() won't get recursively called.
|
|
683
|
|
684 WRONG! With surrogate minibuffers this isn't true. Frames
|
|
685 with only a minibuffer are not enough to prevent
|
|
686 delete_frame_internal from triggering a device deletion. */
|
|
687 CONSOLE_FRAME_LOOP_NO_BREAK (frmcons, devcons, con)
|
|
688 {
|
|
689 struct frame *f = XFRAME (XCAR (frmcons));
|
|
690 /* delete_frame_internal() might do anything such as run hooks,
|
|
691 so be defensive. */
|
|
692 if (FRAME_LIVE_P (f) && !FRAME_HAS_MINIBUF_P (f))
|
|
693 delete_frame_internal (f, 1, 1, from_io_error);
|
|
694
|
|
695 if (!CONSOLE_LIVE_P (con)) /* make sure the delete-*-hook didn't
|
|
696 go ahead and delete anything */
|
|
697 {
|
|
698 UNGCPRO;
|
|
699 return;
|
|
700 }
|
|
701 }
|
|
702
|
|
703 CONSOLE_DEVICE_LOOP (devcons, con)
|
|
704 {
|
|
705 struct device *d = XDEVICE (XCAR (devcons));
|
|
706 /* delete_device_internal() might do anything such as run hooks,
|
|
707 so be defensive. */
|
|
708 if (DEVICE_LIVE_P (d))
|
|
709 delete_device_internal (d, 1, 1, from_io_error);
|
|
710 if (!CONSOLE_LIVE_P (con)) /* make sure the delete-*-hook didn't
|
|
711 go ahead and delete anything */
|
|
712 {
|
|
713 UNGCPRO;
|
|
714 return;
|
|
715 }
|
|
716 }
|
|
717 }
|
|
718
|
|
719 CONSOLE_SELECTED_DEVICE (con) = Qnil;
|
|
720
|
|
721 /* try to select another console */
|
|
722
|
|
723 if (EQ (console, Fselected_console ()))
|
|
724 {
|
|
725 Lisp_Object other_dev = find_other_console (console);
|
|
726 if (!NILP (other_dev))
|
|
727 Fselect_console (other_dev);
|
|
728 else
|
|
729 {
|
|
730 /* necessary? */
|
|
731 Vselected_console = Qnil;
|
|
732 Vwindow_system = Qnil;
|
|
733 }
|
|
734 }
|
|
735
|
|
736 if (con->input_enabled)
|
|
737 event_stream_unselect_console (con);
|
|
738
|
|
739 MAYBE_CONMETH (con, delete_console, (con));
|
|
740
|
|
741 Vconsole_list = delq_no_quit (console, Vconsole_list);
|
617
|
742
|
428
|
743 RESET_CHANGED_SET_FLAGS;
|
617
|
744
|
|
745 /* Nobody should be accessing anything in this object any more, and
|
|
746 making all Lisp_Objects Qnil allows for better GC'ing in case a
|
|
747 pointer to the dead console continues to hang around. Zero all
|
|
748 other structs in case someone tries to access something through
|
|
749 them. */
|
|
750 nuke_all_console_slots (con, Qnil);
|
428
|
751 con->conmeths = dead_console_methods;
|
853
|
752 note_object_deleted (console);
|
428
|
753
|
|
754 UNGCPRO;
|
|
755 }
|
|
756
|
|
757 void
|
|
758 io_error_delete_console (Lisp_Object console)
|
|
759 {
|
|
760 delete_console_internal (XCONSOLE (console), 1, 0, 1);
|
|
761 }
|
|
762
|
|
763 DEFUN ("delete-console", Fdelete_console, 1, 2, 0, /*
|
|
764 Delete CONSOLE, permanently eliminating it from use.
|
|
765 Normally, you cannot delete the last non-minibuffer-only frame (you must
|
|
766 use `save-buffers-kill-emacs' or `kill-emacs'). However, if optional
|
|
767 second argument FORCE is non-nil, you can delete the last frame. (This
|
|
768 will automatically call `save-buffers-kill-emacs'.)
|
|
769 */
|
|
770 (console, force))
|
|
771 {
|
|
772 CHECK_CONSOLE (console);
|
|
773 delete_console_internal (XCONSOLE (console), !NILP (force), 0, 0);
|
|
774 return Qnil;
|
|
775 }
|
|
776
|
|
777 DEFUN ("console-list", Fconsole_list, 0, 0, 0, /*
|
|
778 Return a list of all consoles.
|
|
779 */
|
|
780 ())
|
|
781 {
|
|
782 return Fcopy_sequence (Vconsole_list);
|
|
783 }
|
|
784
|
|
785 DEFUN ("console-device-list", Fconsole_device_list, 0, 1, 0, /*
|
|
786 Return a list of all devices on CONSOLE.
|
444
|
787 If CONSOLE is nil, the selected console is used.
|
428
|
788 */
|
|
789 (console))
|
|
790 {
|
|
791 return Fcopy_sequence (CONSOLE_DEVICE_LIST (decode_console (console)));
|
|
792 }
|
|
793
|
|
794 DEFUN ("console-enable-input", Fconsole_enable_input, 1, 1, 0, /*
|
|
795 Enable input on console CONSOLE.
|
|
796 */
|
|
797 (console))
|
|
798 {
|
|
799 struct console *con = decode_console (console);
|
|
800 if (!con->input_enabled)
|
|
801 event_stream_select_console (con);
|
|
802 return Qnil;
|
|
803 }
|
|
804
|
|
805 DEFUN ("console-disable-input", Fconsole_disable_input, 1, 1, 0, /*
|
|
806 Disable input on console CONSOLE.
|
|
807 */
|
|
808 (console))
|
|
809 {
|
|
810 struct console *con = decode_console (console);
|
|
811 if (con->input_enabled)
|
|
812 event_stream_unselect_console (con);
|
|
813 return Qnil;
|
|
814 }
|
|
815
|
|
816 DEFUN ("console-on-window-system-p", Fconsole_on_window_system_p, 0, 1, 0, /*
|
444
|
817 Return t if CONSOLE is on a window system.
|
|
818 If CONSOLE is nil, the selected console is used.
|
428
|
819 This generally means that there is support for the mouse, the menubar,
|
|
820 the toolbar, glyphs, etc.
|
|
821 */
|
|
822 (console))
|
|
823 {
|
|
824 Lisp_Object type = CONSOLE_TYPE (decode_console (console));
|
|
825
|
|
826 return !EQ (type, Qtty) && !EQ (type, Qstream) ? Qt : Qnil;
|
|
827 }
|
|
828
|
|
829
|
|
830
|
|
831 /**********************************************************************/
|
|
832 /* Miscellaneous low-level functions */
|
|
833 /**********************************************************************/
|
|
834
|
|
835 static Lisp_Object
|
|
836 unwind_init_sys_modes (Lisp_Object console)
|
|
837 {
|
|
838 reinit_initial_console ();
|
|
839
|
|
840 if (!no_redraw_on_reenter &&
|
|
841 CONSOLEP (console) &&
|
|
842 CONSOLE_LIVE_P (XCONSOLE (console)))
|
|
843 {
|
|
844 struct frame *f =
|
|
845 XFRAME (DEVICE_SELECTED_FRAME
|
|
846 (XDEVICE (CONSOLE_SELECTED_DEVICE (XCONSOLE (console)))));
|
|
847 MARK_FRAME_CHANGED (f);
|
|
848 }
|
|
849 return Qnil;
|
|
850 }
|
|
851
|
|
852 DEFUN ("suspend-emacs", Fsuspend_emacs, 0, 1, "", /*
|
|
853 Stop Emacs and return to superior process. You can resume later.
|
|
854 On systems that don't have job control, run a subshell instead.
|
|
855
|
|
856 If optional arg STUFFSTRING is non-nil, its characters are stuffed
|
|
857 to be read as terminal input by Emacs's superior shell.
|
|
858
|
|
859 Before suspending, run the normal hook `suspend-hook'.
|
|
860 After resumption run the normal hook `suspend-resume-hook'.
|
|
861
|
|
862 Some operating systems cannot stop the Emacs process and resume it later.
|
|
863 On such systems, Emacs will start a subshell and wait for it to exit.
|
|
864 */
|
|
865 (stuffstring))
|
|
866 {
|
|
867 int speccount = specpdl_depth ();
|
|
868 struct gcpro gcpro1;
|
|
869
|
|
870 if (!NILP (stuffstring))
|
|
871 CHECK_STRING (stuffstring);
|
|
872 GCPRO1 (stuffstring);
|
|
873
|
|
874 /* There used to be a check that the initial console is TTY.
|
|
875 This is bogus. Even checking to see whether any console
|
|
876 is a controlling terminal is not correct -- maybe
|
|
877 the user used the -t option or something. If we want to
|
|
878 suspend, then we suspend. Period. */
|
|
879
|
|
880 /* Call value of suspend-hook. */
|
|
881 run_hook (Qsuspend_hook);
|
|
882
|
|
883 reset_initial_console ();
|
|
884 /* sys_suspend can get an error if it tries to fork a subshell
|
|
885 and the system resources aren't available for that. */
|
|
886 record_unwind_protect (unwind_init_sys_modes, Vcontrolling_terminal);
|
|
887 stuff_buffered_input (stuffstring);
|
|
888 sys_suspend ();
|
|
889 /* the console is un-reset inside of the unwind-protect. */
|
771
|
890 unbind_to (speccount);
|
428
|
891
|
|
892 #ifdef SIGWINCH
|
|
893 /* It is possible that a size change occurred while we were
|
|
894 suspended. Assume one did just to be safe. It won't hurt
|
|
895 anything if one didn't. */
|
|
896 asynch_device_change_pending++;
|
|
897 #endif
|
|
898
|
|
899 /* Call value of suspend-resume-hook
|
|
900 if it is bound and value is non-nil. */
|
|
901 run_hook (Qsuspend_resume_hook);
|
|
902
|
|
903 UNGCPRO;
|
|
904 return Qnil;
|
|
905 }
|
|
906
|
|
907 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
|
|
908 Then in any case stuff anything Emacs has read ahead and not used. */
|
|
909
|
|
910 void
|
|
911 stuff_buffered_input (Lisp_Object stuffstring)
|
|
912 {
|
|
913 /* stuff_char works only in BSD, versions 4.2 and up. */
|
|
914 #if defined (BSD)
|
|
915 if (!CONSOLEP (Vcontrolling_terminal) ||
|
|
916 !CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
|
|
917 return;
|
|
918
|
|
919 if (STRINGP (stuffstring))
|
|
920 {
|
665
|
921 Bytecount count;
|
428
|
922 Extbyte *p;
|
|
923
|
440
|
924 TO_EXTERNAL_FORMAT (LISP_STRING, stuffstring,
|
|
925 ALLOCA, (p, count),
|
|
926 Qkeyboard);
|
428
|
927 while (count-- > 0)
|
|
928 stuff_char (XCONSOLE (Vcontrolling_terminal), *p++);
|
|
929 stuff_char (XCONSOLE (Vcontrolling_terminal), '\n');
|
|
930 }
|
|
931 /* Anything we have read ahead, put back for the shell to read. */
|
|
932 # if 0 /* oh, who cares about this silliness */
|
|
933 while (kbd_fetch_ptr != kbd_store_ptr)
|
|
934 {
|
|
935 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
|
|
936 kbd_fetch_ptr = kbd_buffer;
|
|
937 stuff_char (XCONSOLE (Vcontrolling_terminal), *kbd_fetch_ptr++);
|
|
938 }
|
|
939 # endif
|
|
940 #endif /* BSD */
|
|
941 }
|
|
942
|
|
943 DEFUN ("suspend-console", Fsuspend_console, 0, 1, "", /*
|
|
944 Suspend a console. For tty consoles, it sends a signal to suspend
|
|
945 the process in charge of the tty, and removes the devices and
|
|
946 frames of that console from the display.
|
|
947
|
|
948 If optional arg CONSOLE is non-nil, it is the console to be suspended.
|
|
949 Otherwise it is assumed to be the selected console.
|
|
950
|
|
951 Some operating systems cannot stop processes and resume them later.
|
|
952 On such systems, who knows what will happen.
|
|
953 */
|
|
954 (console))
|
|
955 {
|
|
956 #ifdef HAVE_TTY
|
|
957 struct console *con = decode_console (console);
|
|
958
|
|
959 if (CONSOLE_TTY_P (con))
|
|
960 {
|
|
961 /*
|
|
962 * hide all the unhidden frames so the display code won't update
|
|
963 * them while the console is suspended.
|
|
964 */
|
|
965 Lisp_Object device = CONSOLE_SELECTED_DEVICE (con);
|
|
966 if (!NILP (device))
|
|
967 {
|
|
968 struct device *d = XDEVICE (device);
|
|
969 Lisp_Object frame_list = DEVICE_FRAME_LIST (d);
|
|
970 while (CONSP (frame_list))
|
|
971 {
|
|
972 struct frame *f = XFRAME (XCAR (frame_list));
|
|
973 if (FRAME_REPAINT_P (f))
|
|
974 f->visible = -1;
|
|
975 frame_list = XCDR (frame_list);
|
|
976 }
|
|
977 }
|
|
978 reset_one_console (con);
|
|
979 event_stream_unselect_console (con);
|
|
980 sys_suspend_process (XINT (Fconsole_tty_controlling_process (console)));
|
|
981 }
|
|
982 #endif /* HAVE_TTY */
|
|
983
|
|
984 return Qnil;
|
|
985 }
|
|
986
|
|
987 DEFUN ("resume-console", Fresume_console, 1, 1, "", /*
|
|
988 Re-initialize a previously suspended console.
|
|
989 For tty consoles, do stuff to the tty to make it sane again.
|
|
990 */
|
|
991 (console))
|
|
992 {
|
|
993 #ifdef HAVE_TTY
|
|
994 struct console *con = decode_console (console);
|
|
995
|
|
996 if (CONSOLE_TTY_P (con))
|
|
997 {
|
|
998 /* raise the selected frame */
|
|
999 Lisp_Object device = CONSOLE_SELECTED_DEVICE (con);
|
|
1000 if (!NILP (device))
|
|
1001 {
|
|
1002 struct device *d = XDEVICE (device);
|
|
1003 Lisp_Object frame = DEVICE_SELECTED_FRAME (d);
|
|
1004 if (!NILP (frame))
|
|
1005 {
|
|
1006 /* force the frame to be cleared */
|
|
1007 SET_FRAME_CLEAR (XFRAME (frame));
|
|
1008 Fraise_frame (frame);
|
|
1009 }
|
|
1010 }
|
|
1011 init_one_console (con);
|
|
1012 event_stream_select_console (con);
|
|
1013 #ifdef SIGWINCH
|
|
1014 /* The same as in Fsuspend_emacs: it is possible that a size
|
|
1015 change occurred while we were suspended. Assume one did just
|
|
1016 to be safe. It won't hurt anything if one didn't. */
|
|
1017 asynch_device_change_pending++;
|
|
1018 #endif
|
|
1019 }
|
|
1020 #endif /* HAVE_TTY */
|
|
1021
|
|
1022 return Qnil;
|
|
1023 }
|
|
1024
|
|
1025 DEFUN ("set-input-mode", Fset_input_mode, 3, 5, 0, /*
|
|
1026 Set mode of reading keyboard input.
|
|
1027 First arg is ignored, for backward compatibility.
|
|
1028 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
|
|
1029 (no effect except in CBREAK mode).
|
|
1030 Third arg META t means accept 8-bit input (for a Meta key).
|
|
1031 META nil means ignore the top bit, on the assumption it is parity.
|
|
1032 Otherwise, accept 8-bit input and don't use the top bit for Meta.
|
|
1033 First three arguments only apply to TTY consoles.
|
|
1034 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
|
|
1035 Optional fifth arg CONSOLE specifies console to make changes to; nil means
|
|
1036 the selected console.
|
|
1037 See also `current-input-mode'.
|
|
1038 */
|
|
1039 (ignored, flow, meta, quit, console))
|
|
1040 {
|
|
1041 struct console *con = decode_console (console);
|
|
1042 int meta_key = (!CONSOLE_TTY_P (con) ? 1 :
|
|
1043 EQ (meta, Qnil) ? 0 :
|
|
1044 EQ (meta, Qt) ? 1 :
|
|
1045 2);
|
|
1046
|
|
1047 if (!NILP (quit))
|
|
1048 {
|
|
1049 CHECK_CHAR_COERCE_INT (quit);
|
|
1050 CONSOLE_QUIT_CHAR (con) =
|
|
1051 ((unsigned int) XCHAR (quit)) & (meta_key ? 0377 : 0177);
|
|
1052 }
|
|
1053
|
|
1054 #ifdef HAVE_TTY
|
|
1055 if (CONSOLE_TTY_P (con))
|
|
1056 {
|
|
1057 reset_one_console (con);
|
|
1058 TTY_FLAGS (con).flow_control = !NILP (flow);
|
|
1059 TTY_FLAGS (con).meta_key = meta_key;
|
|
1060 init_one_console (con);
|
444
|
1061 MARK_FRAME_CHANGED (XFRAME (CONSOLE_SELECTED_FRAME (con)));
|
428
|
1062 }
|
|
1063 #endif
|
|
1064
|
|
1065 return Qnil;
|
|
1066 }
|
|
1067
|
|
1068 DEFUN ("current-input-mode", Fcurrent_input_mode, 0, 1, 0, /*
|
|
1069 Return information about the way Emacs currently reads keyboard input.
|
|
1070 Optional arg CONSOLE specifies console to return information about; nil means
|
|
1071 the selected console.
|
|
1072 The value is a list of the form (nil FLOW META QUIT), where
|
|
1073 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
|
|
1074 terminal; this does not apply if Emacs uses interrupt-driven input.
|
|
1075 META is t if accepting 8-bit input with 8th bit as Meta flag.
|
|
1076 META nil means ignoring the top bit, on the assumption it is parity.
|
|
1077 META is neither t nor nil if accepting 8-bit input and using
|
|
1078 all 8 bits as the character code.
|
|
1079 QUIT is the character Emacs currently uses to quit.
|
|
1080 FLOW, and META are only meaningful for TTY consoles.
|
|
1081 The elements of this list correspond to the arguments of
|
|
1082 `set-input-mode'.
|
|
1083 */
|
|
1084 (console))
|
|
1085 {
|
|
1086 struct console *con = decode_console (console);
|
|
1087 Lisp_Object flow, meta, quit;
|
|
1088
|
|
1089 #ifdef HAVE_TTY
|
|
1090 flow = CONSOLE_TTY_P (con) && TTY_FLAGS (con).flow_control ? Qt : Qnil;
|
|
1091 meta = (!CONSOLE_TTY_P (con) ? Qt :
|
|
1092 TTY_FLAGS (con).meta_key == 1 ? Qt :
|
|
1093 TTY_FLAGS (con).meta_key == 2 ? Qzero :
|
|
1094 Qnil);
|
|
1095 #else
|
|
1096 flow = Qnil;
|
|
1097 meta = Qt;
|
|
1098 #endif
|
|
1099 quit = make_char (CONSOLE_QUIT_CHAR (con));
|
|
1100
|
|
1101 return list4 (Qnil, flow, meta, quit);
|
|
1102 }
|
|
1103
|
|
1104
|
|
1105 /************************************************************************/
|
|
1106 /* initialization */
|
|
1107 /************************************************************************/
|
|
1108
|
|
1109 void
|
|
1110 syms_of_console (void)
|
|
1111 {
|
442
|
1112 INIT_LRECORD_IMPLEMENTATION (console);
|
|
1113
|
428
|
1114 DEFSUBR (Fvalid_console_type_p);
|
|
1115 DEFSUBR (Fconsole_type_list);
|
|
1116 DEFSUBR (Fcdfw_console);
|
|
1117 DEFSUBR (Fselected_console);
|
|
1118 DEFSUBR (Fselect_console);
|
|
1119 DEFSUBR (Fconsolep);
|
|
1120 DEFSUBR (Fconsole_live_p);
|
|
1121 DEFSUBR (Fconsole_type);
|
|
1122 DEFSUBR (Fconsole_name);
|
|
1123 DEFSUBR (Fconsole_connection);
|
|
1124 DEFSUBR (Ffind_console);
|
|
1125 DEFSUBR (Fget_console);
|
|
1126 DEFSUBR (Fdelete_console);
|
|
1127 DEFSUBR (Fconsole_list);
|
|
1128 DEFSUBR (Fconsole_device_list);
|
|
1129 DEFSUBR (Fconsole_enable_input);
|
|
1130 DEFSUBR (Fconsole_disable_input);
|
|
1131 DEFSUBR (Fconsole_on_window_system_p);
|
|
1132 DEFSUBR (Fsuspend_console);
|
|
1133 DEFSUBR (Fresume_console);
|
|
1134
|
|
1135 DEFSUBR (Fsuspend_emacs);
|
|
1136 DEFSUBR (Fset_input_mode);
|
|
1137 DEFSUBR (Fcurrent_input_mode);
|
|
1138
|
563
|
1139 DEFSYMBOL (Qconsolep);
|
|
1140 DEFSYMBOL (Qconsole_live_p);
|
428
|
1141
|
563
|
1142 DEFSYMBOL (Qcreate_console_hook);
|
|
1143 DEFSYMBOL (Qdelete_console_hook);
|
428
|
1144
|
563
|
1145 DEFSYMBOL (Qsuspend_hook);
|
|
1146 DEFSYMBOL (Qsuspend_resume_hook);
|
428
|
1147 }
|
|
1148
|
|
1149 static const struct lrecord_description cte_description_1[] = {
|
440
|
1150 { XD_LISP_OBJECT, offsetof (console_type_entry, symbol) },
|
|
1151 { XD_STRUCT_PTR, offsetof (console_type_entry, meths), 1, &console_methods_description },
|
428
|
1152 { XD_END }
|
|
1153 };
|
|
1154
|
|
1155 static const struct struct_description cte_description = {
|
440
|
1156 sizeof (console_type_entry),
|
428
|
1157 cte_description_1
|
|
1158 };
|
|
1159
|
|
1160 static const struct lrecord_description cted_description_1[] = {
|
440
|
1161 XD_DYNARR_DESC (console_type_entry_dynarr, &cte_description),
|
428
|
1162 { XD_END }
|
|
1163 };
|
|
1164
|
|
1165 const struct struct_description cted_description = {
|
440
|
1166 sizeof (console_type_entry_dynarr),
|
428
|
1167 cted_description_1
|
|
1168 };
|
|
1169
|
|
1170 static const struct lrecord_description console_methods_description_1[] = {
|
440
|
1171 { XD_LISP_OBJECT, offsetof (struct console_methods, symbol) },
|
|
1172 { XD_LISP_OBJECT, offsetof (struct console_methods, predicate_symbol) },
|
|
1173 { XD_LISP_OBJECT, offsetof (struct console_methods, image_conversion_list) },
|
428
|
1174 { XD_END }
|
|
1175 };
|
|
1176
|
|
1177 const struct struct_description console_methods_description = {
|
440
|
1178 sizeof (struct console_methods),
|
428
|
1179 console_methods_description_1
|
|
1180 };
|
|
1181
|
|
1182
|
|
1183 void
|
|
1184 console_type_create (void)
|
|
1185 {
|
|
1186 the_console_type_entry_dynarr = Dynarr_new (console_type_entry);
|
452
|
1187 dump_add_root_struct_ptr (&the_console_type_entry_dynarr, &cted_description);
|
428
|
1188
|
|
1189 Vconsole_type_list = Qnil;
|
|
1190 staticpro (&Vconsole_type_list);
|
|
1191
|
|
1192 /* Initialize the dead console type */
|
|
1193 INITIALIZE_CONSOLE_TYPE (dead, "dead", "console-dead-p");
|
|
1194
|
|
1195 /* then reset the console-type lists, because `dead' is not really
|
|
1196 a valid console type */
|
|
1197 Dynarr_reset (the_console_type_entry_dynarr);
|
|
1198 Vconsole_type_list = Qnil;
|
|
1199 }
|
|
1200
|
|
1201 void
|
|
1202 reinit_vars_of_console (void)
|
|
1203 {
|
|
1204 staticpro_nodump (&Vconsole_list);
|
|
1205 Vconsole_list = Qnil;
|
|
1206 staticpro_nodump (&Vselected_console);
|
|
1207 Vselected_console = Qnil;
|
|
1208 }
|
|
1209
|
|
1210 void
|
|
1211 vars_of_console (void)
|
|
1212 {
|
|
1213 reinit_vars_of_console ();
|
|
1214
|
|
1215 DEFVAR_LISP ("create-console-hook", &Vcreate_console_hook /*
|
|
1216 Function or functions to call when a console is created.
|
|
1217 One argument, the newly-created console.
|
|
1218 This is called after the first frame has been created, but before
|
|
1219 calling the `create-device-hook' or `create-frame-hook'.
|
|
1220 Note that in general the console will not be selected.
|
|
1221 */ );
|
|
1222 Vcreate_console_hook = Qnil;
|
|
1223
|
|
1224 DEFVAR_LISP ("delete-console-hook", &Vdelete_console_hook /*
|
|
1225 Function or functions to call when a console is deleted.
|
|
1226 One argument, the to-be-deleted console.
|
|
1227 */ );
|
|
1228 Vdelete_console_hook = Qnil;
|
|
1229
|
|
1230 #ifdef HAVE_WINDOW_SYSTEM
|
|
1231 Fprovide (intern ("window-system"));
|
|
1232 #endif
|
|
1233 }
|
|
1234
|
643
|
1235 /* The docstrings for DEFVAR_* are recorded externally by make-docfile. */
|
617
|
1236 #define DEFVAR_CONSOLE_LOCAL_1(lname, field_name, forward_type, magicfun) \
|
|
1237 do { \
|
|
1238 static const struct symbol_value_forward I_hate_C = \
|
|
1239 { /* struct symbol_value_forward */ \
|
|
1240 { /* struct symbol_value_magic */ \
|
|
1241 { /* struct lcrecord_header */ \
|
|
1242 { /* struct lrecord_header */ \
|
|
1243 lrecord_type_symbol_value_forward, /* lrecord_type_index */ \
|
|
1244 1, /* mark bit */ \
|
|
1245 1, /* c_readonly bit */ \
|
|
1246 1 /* lisp_readonly bit */ \
|
|
1247 }, \
|
|
1248 0, /* next */ \
|
|
1249 0, /* uid */ \
|
|
1250 0 /* free */ \
|
|
1251 }, \
|
|
1252 &(console_local_flags.field_name), \
|
|
1253 forward_type \
|
|
1254 }, \
|
|
1255 magicfun \
|
|
1256 }; \
|
|
1257 \
|
|
1258 { \
|
|
1259 int offset = ((char *)symbol_value_forward_forward (&I_hate_C) \
|
|
1260 - (char *)&console_local_flags); \
|
|
1261 \
|
|
1262 defvar_magic (lname, &I_hate_C); \
|
|
1263 \
|
|
1264 *((Lisp_Object *)(offset + (char *)XCONSOLE (Vconsole_local_symbols))) \
|
|
1265 = intern (lname); \
|
|
1266 } \
|
428
|
1267 } while (0)
|
|
1268
|
|
1269 #define DEFVAR_CONSOLE_LOCAL_MAGIC(lname, field_name, magicfun) \
|
|
1270 DEFVAR_CONSOLE_LOCAL_1 (lname, field_name, \
|
|
1271 SYMVAL_SELECTED_CONSOLE_FORWARD, magicfun)
|
|
1272 #define DEFVAR_CONSOLE_LOCAL(lname, field_name) \
|
|
1273 DEFVAR_CONSOLE_LOCAL_MAGIC (lname, field_name, 0)
|
|
1274 #define DEFVAR_CONST_CONSOLE_LOCAL_MAGIC(lname, field_name, magicfun) \
|
|
1275 DEFVAR_CONSOLE_LOCAL_1 (lname, field_name, \
|
|
1276 SYMVAL_CONST_SELECTED_CONSOLE_FORWARD, magicfun)
|
|
1277 #define DEFVAR_CONST_CONSOLE_LOCAL(lname, field_name) \
|
|
1278 DEFVAR_CONST_CONSOLE_LOCAL_MAGIC (lname, field_name, 0)
|
|
1279
|
|
1280 #define DEFVAR_CONSOLE_DEFAULTS_MAGIC(lname, field_name, magicfun) \
|
|
1281 DEFVAR_SYMVAL_FWD(lname, &(console_local_flags.field_name), \
|
|
1282 SYMVAL_DEFAULT_CONSOLE_FORWARD, magicfun)
|
|
1283 #define DEFVAR_CONSOLE_DEFAULTS(lname, field_name) \
|
|
1284 DEFVAR_CONSOLE_DEFAULTS_MAGIC (lname, field_name, 0)
|
|
1285
|
|
1286 static void
|
|
1287 common_init_complex_vars_of_console (void)
|
|
1288 {
|
|
1289 /* Make sure all markable slots in console_defaults
|
|
1290 are initialized reasonably, so mark_console won't choke.
|
|
1291 */
|
|
1292 struct console *defs = alloc_lcrecord_type (struct console, &lrecord_console);
|
|
1293 struct console *syms = alloc_lcrecord_type (struct console, &lrecord_console);
|
|
1294
|
|
1295 staticpro_nodump (&Vconsole_defaults);
|
|
1296 staticpro_nodump (&Vconsole_local_symbols);
|
793
|
1297 Vconsole_defaults = wrap_console (defs);
|
|
1298 Vconsole_local_symbols = wrap_console (syms);
|
428
|
1299
|
|
1300 nuke_all_console_slots (syms, Qnil);
|
|
1301 nuke_all_console_slots (defs, Qnil);
|
|
1302
|
|
1303 /* Set up the non-nil default values of various console slots.
|
|
1304 Must do these before making the first console.
|
|
1305 */
|
|
1306 /* #### Anything needed here? */
|
|
1307
|
|
1308 {
|
|
1309 /* 0 means var is always local. Default used only at creation.
|
|
1310 * -1 means var is always local. Default used only at reset and
|
|
1311 * creation.
|
|
1312 * -2 means there's no lisp variable corresponding to this slot
|
|
1313 * and the default is only used at creation.
|
|
1314 * -3 means no Lisp variable. Default used only at reset and creation.
|
|
1315 * >0 is mask. Var is local if ((console->local_var_flags & mask) != 0)
|
|
1316 * Otherwise default is used.
|
|
1317 *
|
|
1318 * #### We don't currently ever reset console variables, so there
|
|
1319 * is no current distinction between 0 and -1, and between -2 and -3.
|
|
1320 */
|
|
1321 Lisp_Object always_local_resettable = make_int (-1);
|
|
1322
|
|
1323 #if 0 /* not used */
|
|
1324 Lisp_Object always_local_no_default = make_int (0);
|
|
1325 Lisp_Object resettable = make_int (-3);
|
|
1326 #endif
|
|
1327
|
|
1328 /* Assign the local-flags to the slots that have default values.
|
|
1329 The local flag is a bit that is used in the console
|
|
1330 to say that it has its own local value for the slot.
|
|
1331 The local flag bits are in the local_var_flags slot of the
|
|
1332 console. */
|
|
1333
|
|
1334 nuke_all_console_slots (&console_local_flags, make_int (-2));
|
|
1335 console_local_flags.defining_kbd_macro = always_local_resettable;
|
|
1336 console_local_flags.last_kbd_macro = always_local_resettable;
|
|
1337 console_local_flags.prefix_arg = always_local_resettable;
|
|
1338 console_local_flags.default_minibuffer_frame = always_local_resettable;
|
|
1339 console_local_flags.overriding_terminal_local_map =
|
|
1340 always_local_resettable;
|
|
1341 #ifdef HAVE_TTY
|
|
1342 console_local_flags.tty_erase_char = always_local_resettable;
|
|
1343 #endif
|
|
1344
|
|
1345 console_local_flags.function_key_map = make_int (1);
|
|
1346
|
|
1347 /* #### Warning, 0x4000000 (that's six zeroes) is the largest number
|
|
1348 currently allowable due to the XINT() handling of this value.
|
|
1349 With some rearrangement you can get 4 more bits. */
|
|
1350 }
|
|
1351 }
|
|
1352
|
|
1353
|
|
1354 #define CONSOLE_SLOTS_SIZE (offsetof (struct console, CONSOLE_SLOTS_LAST_NAME) - offsetof (struct console, CONSOLE_SLOTS_FIRST_NAME) + sizeof (Lisp_Object))
|
|
1355 #define CONSOLE_SLOTS_COUNT (CONSOLE_SLOTS_SIZE / sizeof (Lisp_Object))
|
|
1356
|
|
1357 void
|
771
|
1358 reinit_complex_vars_of_console_runtime_only (void)
|
428
|
1359 {
|
|
1360 struct console *defs, *syms;
|
|
1361
|
|
1362 common_init_complex_vars_of_console ();
|
|
1363
|
|
1364 defs = XCONSOLE (Vconsole_defaults);
|
|
1365 syms = XCONSOLE (Vconsole_local_symbols);
|
|
1366 memcpy (&defs->CONSOLE_SLOTS_FIRST_NAME,
|
|
1367 console_defaults_saved_slots,
|
|
1368 CONSOLE_SLOTS_SIZE);
|
|
1369 memcpy (&syms->CONSOLE_SLOTS_FIRST_NAME,
|
|
1370 console_local_symbols_saved_slots,
|
|
1371 CONSOLE_SLOTS_SIZE);
|
|
1372 }
|
|
1373
|
|
1374
|
|
1375 static const struct lrecord_description console_slots_description_1[] = {
|
440
|
1376 { XD_LISP_OBJECT_ARRAY, 0, CONSOLE_SLOTS_COUNT },
|
428
|
1377 { XD_END }
|
|
1378 };
|
|
1379
|
|
1380 static const struct struct_description console_slots_description = {
|
|
1381 CONSOLE_SLOTS_SIZE,
|
|
1382 console_slots_description_1
|
|
1383 };
|
|
1384
|
|
1385 void
|
|
1386 complex_vars_of_console (void)
|
|
1387 {
|
|
1388 struct console *defs, *syms;
|
|
1389
|
|
1390 common_init_complex_vars_of_console ();
|
|
1391
|
|
1392 defs = XCONSOLE (Vconsole_defaults);
|
|
1393 syms = XCONSOLE (Vconsole_local_symbols);
|
|
1394 console_defaults_saved_slots = &defs->CONSOLE_SLOTS_FIRST_NAME;
|
|
1395 console_local_symbols_saved_slots = &syms->CONSOLE_SLOTS_FIRST_NAME;
|
452
|
1396 dump_add_root_struct_ptr (&console_defaults_saved_slots, &console_slots_description);
|
|
1397 dump_add_root_struct_ptr (&console_local_symbols_saved_slots, &console_slots_description);
|
428
|
1398
|
|
1399 DEFVAR_CONSOLE_DEFAULTS ("default-function-key-map", function_key_map /*
|
|
1400 Default value of `function-key-map' for consoles that don't override it.
|
|
1401 This is the same as (default-value 'function-key-map).
|
|
1402 */ );
|
|
1403
|
|
1404 DEFVAR_CONSOLE_LOCAL ("function-key-map", function_key_map /*
|
|
1405 Keymap mapping ASCII function key sequences onto their preferred forms.
|
|
1406 This allows Emacs to recognize function keys sent from ASCII
|
|
1407 terminals at any point in a key sequence.
|
|
1408
|
|
1409 The `read-key-sequence' function replaces any subsequence bound by
|
|
1410 `function-key-map' with its binding. More precisely, when the active
|
|
1411 keymaps have no binding for the current key sequence but
|
|
1412 `function-key-map' binds a suffix of the sequence to a vector or string,
|
|
1413 `read-key-sequence' replaces the matching suffix with its binding, and
|
|
1414 continues with the new sequence.
|
|
1415
|
|
1416 The events that come from bindings in `function-key-map' are not
|
|
1417 themselves looked up in `function-key-map'.
|
|
1418
|
|
1419 For example, suppose `function-key-map' binds `ESC O P' to [f1].
|
|
1420 Typing `ESC O P' to `read-key-sequence' would return
|
|
1421 \[#<keypress-event f1>]. Typing `C-x ESC O P' would return
|
|
1422 \[#<keypress-event control-X> #<keypress-event f1>]. If [f1]
|
|
1423 were a prefix key, typing `ESC O P x' would return
|
|
1424 \[#<keypress-event f1> #<keypress-event x>].
|
|
1425 */ );
|
|
1426
|
|
1427 #ifdef HAVE_TTY
|
440
|
1428 /* #### Should this somehow go to TTY data? How do we make it
|
428
|
1429 accessible from Lisp, then? */
|
|
1430 DEFVAR_CONSOLE_LOCAL ("tty-erase-char", tty_erase_char /*
|
|
1431 The ERASE character as set by the user with stty.
|
|
1432 When this value cannot be determined or would be meaningless (on non-TTY
|
|
1433 consoles, for example), it is set to nil.
|
|
1434 */ );
|
|
1435 #endif
|
|
1436
|
442
|
1437 /* While this should be const it can't be because some things
|
428
|
1438 (i.e. edebug) do manipulate it. */
|
|
1439 DEFVAR_CONSOLE_LOCAL ("defining-kbd-macro", defining_kbd_macro /*
|
442
|
1440 Non-nil while a keyboard macro is being defined. Don't set this!
|
428
|
1441 */ );
|
|
1442
|
|
1443 DEFVAR_CONSOLE_LOCAL ("last-kbd-macro", last_kbd_macro /*
|
442
|
1444 Last keyboard macro defined, as a vector of events; nil if none defined.
|
428
|
1445 */ );
|
|
1446
|
|
1447 DEFVAR_CONSOLE_LOCAL ("prefix-arg", prefix_arg /*
|
|
1448 The value of the prefix argument for the next editing command.
|
|
1449 It may be a number, or the symbol `-' for just a minus sign as arg,
|
|
1450 or a list whose car is a number for just one or more C-U's
|
|
1451 or nil if no argument has been specified.
|
|
1452
|
|
1453 You cannot examine this variable to find the argument for this command
|
|
1454 since it has been set to nil by the time you can look.
|
|
1455 Instead, you should use the variable `current-prefix-arg', although
|
|
1456 normally commands can get this prefix argument with (interactive "P").
|
|
1457 */ );
|
|
1458
|
|
1459 DEFVAR_CONSOLE_LOCAL ("default-minibuffer-frame",
|
|
1460 default_minibuffer_frame /*
|
|
1461 Minibufferless frames use this frame's minibuffer.
|
|
1462
|
|
1463 Emacs cannot create minibufferless frames unless this is set to an
|
|
1464 appropriate surrogate.
|
|
1465
|
|
1466 XEmacs consults this variable only when creating minibufferless
|
|
1467 frames; once the frame is created, it sticks with its assigned
|
|
1468 minibuffer, no matter what this variable is set to. This means that
|
|
1469 this variable doesn't necessarily say anything meaningful about the
|
|
1470 current set of frames, or where the minibuffer is currently being
|
|
1471 displayed.
|
|
1472 */ );
|
|
1473
|
|
1474 DEFVAR_CONSOLE_LOCAL ("overriding-terminal-local-map",
|
|
1475 overriding_terminal_local_map /*
|
|
1476 Keymap that overrides all other local keymaps, for the selected console only.
|
|
1477 If this variable is non-nil, it is used as a keymap instead of the
|
|
1478 buffer's local map, and the minor mode keymaps and text property keymaps.
|
|
1479 */ );
|
|
1480
|
|
1481 /* Check for DEFVAR_CONSOLE_LOCAL without initializing the corresponding
|
|
1482 slot of console_local_flags and vice-versa. Must be done after all
|
|
1483 DEFVAR_CONSOLE_LOCAL() calls. */
|
|
1484 #define MARKED_SLOT(slot) \
|
|
1485 if ((XINT (console_local_flags.slot) != -2 && \
|
|
1486 XINT (console_local_flags.slot) != -3) \
|
|
1487 != !(NILP (XCONSOLE (Vconsole_local_symbols)->slot))) \
|
|
1488 abort ()
|
|
1489 #include "conslots.h"
|
|
1490 }
|