Mercurial > hg > xemacs-beta
annotate src/casetab.h @ 939:025200a2163c
[xemacs-hg @ 2002-07-31 07:23:39 by michaels]
2002-07-17 Marcus Crestani <crestani@informatik.uni-tuebingen.de>
Markus Kaltenbach <makalten@informatik.uni-tuebingen.de>
Mike Sperber <mike@xemacs.org>
configure flag to turn these changes on: --use-kkcc
First we added a dumpable flag to lrecord_implementation. It shows,
if the object is dumpable and should be processed by the dumper.
* lrecord.h (struct lrecord_implementation): added dumpable flag
(MAKE_LRECORD_IMPLEMENTATION): fitted the different makro definitions
to the new lrecord_implementation and their calls.
Then we changed mark_object, that it no longer needs a mark method for
those types that have pdump descritions.
* alloc.c:
(mark_object): If the object has a description, the new mark algorithm
is called, and the object is marked according to its description.
Otherwise it uses the mark method like before.
These procedures mark objects according to their descriptions. They
are modeled on the corresponding pdumper procedures.
(mark_with_description):
(get_indirect_count):
(structure_size):
(mark_struct_contents):
These procedures still call mark_object, this is needed while there are
Lisp_Objects without descriptions left.
We added pdump descriptions for many Lisp_Objects:
* extents.c: extent_auxiliary_description
* database.c: database_description
* gui.c: gui_item_description
* scrollbar.c: scrollbar_instance_description
* toolbar.c: toolbar_button_description
* event-stream.c: command_builder_description
* mule-charset.c: charset_description
* device-msw.c: devmode_description
* dialog-msw.c: mswindows_dialog_id_description
* eldap.c: ldap_description
* postgresql.c: pgconn_description
pgresult_description
* tooltalk.c: tooltalk_message_description
tooltalk_pattern_description
* ui-gtk.c: emacs_ffi_description
emacs_gtk_object_description
* events.c:
* events.h:
* event-stream.c:
* event-Xt.c:
* event-gtk.c:
* event-tty.c:
To write a pdump description for Lisp_Event, we converted every struct
in the union event to a Lisp_Object. So we created nine new
Lisp_Objects: Lisp_Key_Data, Lisp_Button_Data, Lisp_Motion_Data,
Lisp_Process_Data, Lisp_Timeout_Data, Lisp_Eval_Data,
Lisp_Misc_User_Data, Lisp_Magic_Data, Lisp_Magic_Eval_Data.
We also wrote makro selectors and mutators for the fields of the new
designed Lisp_Event and added everywhere these new abstractions.
We implemented XD_UNION support in (mark_with_description), so
we can describe exspecially console/device specific data with XD_UNION.
To describe with XD_UNION, we added a field to these objects, which
holds the variant type of the object. This field is initialized in
the appendant constructor. The variant is an integer, it has also to
be described in an description, if XD_UNION is used.
XD_UNION is used in following descriptions:
* console.c: console_description
(get_console_variant): returns the variant
(create_console): added variant initialization
* console.h (console_variant): the different console types
* console-impl.h (struct console): added enum console_variant contype
* device.c: device_description
(Fmake_device): added variant initialization
* device-impl.h (struct device): added enum console_variant devtype
* objects.c: image_instance_description
font_instance_description
(Fmake_color_instance): added variant initialization
(Fmake_font_instance): added variant initialization
* objects-impl.h (struct Lisp_Color_Instance): added color_instance_type
* objects-impl.h (struct Lisp_Font_Instance): added font_instance_type
* process.c: process_description
(make_process_internal): added variant initialization
* process.h (process_variant): the different process types
author | michaels |
---|---|
date | Wed, 31 Jul 2002 07:23:39 +0000 |
parents | 6728e641994e |
children | 6fa9919a9a0b |
rev | line source |
---|---|
446 | 1 /* XEmacs routines to deal with case tables. |
2 Copyright (C) 2000 Yoshiki Hayashi. | |
826 | 3 Copyright (C) 2002 Ben Wing. |
446 | 4 This file is part of XEmacs. |
5 | |
6 XEmacs is free software; you can redistribute it and/or modify it | |
7 under the terms of the GNU General Public License as published by the | |
8 Free Software Foundation; either version 2, or (at your option) any | |
9 later version. | |
10 | |
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
14 for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with XEmacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 Boston, MA 02111-1307, USA. */ | |
20 | |
21 /* Synched up with: Not in FSF. */ | |
22 | |
23 #ifndef INCLUDED_casetab_h_ | |
24 #define INCLUDED_casetab_h_ | |
25 | |
26 struct Lisp_Case_Table | |
27 { | |
28 struct lcrecord_header header; | |
29 Lisp_Object downcase_table; | |
30 Lisp_Object upcase_table; | |
31 Lisp_Object case_canon_table; | |
32 Lisp_Object case_eqv_table; | |
826 | 33 int dirty; |
446 | 34 }; |
35 typedef struct Lisp_Case_Table Lisp_Case_Table; | |
36 | |
37 DECLARE_LRECORD (case_table, Lisp_Case_Table); | |
38 #define XCASE_TABLE(x) XRECORD (x, case_table, Lisp_Case_Table) | |
617 | 39 #define wrap_case_table(p) wrap_record (p, case_table) |
446 | 40 #define CASE_TABLEP(x) RECORDP (x, case_table) |
41 #define CHECK_CASE_TABLE(x) CHECK_RECORD (x, case_table) | |
42 #define CONCHECK_CASE_TABLE(x) CONCHECK_RECORD (x, case_table) | |
43 | |
826 | 44 void recompute_case_table (Lisp_Object casetab); |
45 | |
46 DECLARE_INLINE_HEADER ( | |
47 Lisp_Case_Table * | |
48 XCASE_TABLE_UPDATE (Lisp_Object table) | |
49 ) | |
50 { | |
51 Lisp_Case_Table *ct = XCASE_TABLE (table); | |
52 /* If the table is dirty (changes have been made without ancillary | |
53 structures updated), recompute first. */ | |
54 if (ct->dirty) | |
55 recompute_case_table (table); | |
56 return ct; | |
57 } | |
58 | |
446 | 59 #define CASE_TABLE_DOWNCASE(ct) ((ct)->downcase_table) |
60 #define CASE_TABLE_UPCASE(ct) ((ct)->upcase_table) | |
61 #define CASE_TABLE_CANON(ct) ((ct)->case_canon_table) | |
62 #define CASE_TABLE_EQV(ct) ((ct)->case_eqv_table) | |
63 #define XCASE_TABLE_DOWNCASE(ct) (XCASE_TABLE (ct)->downcase_table) | |
64 #define XCASE_TABLE_UPCASE(ct) (XCASE_TABLE (ct)->upcase_table) | |
826 | 65 /* Only do automatic updating for canon and eqv, which are the two that are |
66 automatically computed and that are not up to date. These are not | |
67 normally used by the simple case routines. canon is used by | |
68 compare-buffer-substrings when case-insensitive and by the regex | |
69 routines, and eqv is used only by the Boyer-Moore search routines. */ | |
70 #define XCASE_TABLE_CANON(ct) (XCASE_TABLE_UPDATE (ct)->case_canon_table) | |
71 #define XCASE_TABLE_EQV(ct) (XCASE_TABLE_UPDATE (ct)->case_eqv_table) | |
446 | 72 |
73 #define SET_CASE_TABLE_DOWNCASE(ct, p) ((ct)->downcase_table = p) | |
74 #define SET_CASE_TABLE_UPCASE(ct, p) ((ct)->upcase_table = p) | |
75 #define SET_CASE_TABLE_CANON(ct, p) ((ct)->case_canon_table = p) | |
76 #define SET_CASE_TABLE_EQV(ct, p) ((ct)->case_eqv_table = p) | |
77 #define XSET_CASE_TABLE_DOWNCASE(ct, p) \ | |
78 SET_CASE_TABLE_DOWNCASE (XCASE_TABLE (ct), p) | |
79 #define XSET_CASE_TABLE_UPCASE(ct, p) \ | |
80 SET_CASE_TABLE_UPCASE (XCASE_TABLE (ct), p) | |
81 #define XSET_CASE_TABLE_CANON(ct, p) \ | |
82 SET_CASE_TABLE_CANON (XCASE_TABLE (ct), p) | |
83 #define XSET_CASE_TABLE_EQV(ct, p) \ | |
84 SET_CASE_TABLE_EQV (XCASE_TABLE (ct), p) | |
85 | |
86 extern Lisp_Object Vstandard_case_table; | |
87 | |
88 #endif /* INCLUDED_casetab_h_ */ |