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