0
|
1 /* Lisp interface to hash tables -- include file.
|
|
2 Copyright (C) 1995, 1996 Ben Wing.
|
|
3
|
|
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 _XEMACS_ELHASH_H_
|
|
24 #define _XEMACS_ELHASH_H_
|
|
25
|
380
|
26 DECLARE_LRECORD (hash_table, struct Lisp_Hash_Table);
|
0
|
27
|
380
|
28 #define XHASH_TABLE(x) XRECORD (x, hash_table, struct Lisp_Hash_Table)
|
|
29 #define XSETHASH_TABLE(x, p) XSETRECORD (x, p, hash_table)
|
|
30 #define HASH_TABLEP(x) RECORDP (x, hash_table)
|
|
31 #define GC_HASH_TABLEP(x) GC_RECORDP (x, hash_table)
|
|
32 #define CHECK_HASH_TABLE(x) CHECK_RECORD (x, hash_table)
|
|
33 #define CONCHECK_HASH_TABLE(x) CONCHECK_RECORD (x, hash_table)
|
0
|
34
|
380
|
35 enum hash_table_type
|
0
|
36 {
|
380
|
37 HASH_TABLE_NON_WEAK,
|
|
38 HASH_TABLE_KEY_WEAK,
|
|
39 HASH_TABLE_VALUE_WEAK,
|
|
40 HASH_TABLE_KEY_CAR_WEAK,
|
|
41 HASH_TABLE_VALUE_CAR_WEAK,
|
|
42 HASH_TABLE_WEAK
|
0
|
43 };
|
|
44
|
380
|
45 enum hash_table_test
|
0
|
46 {
|
380
|
47 HASH_TABLE_EQ,
|
|
48 HASH_TABLE_EQL,
|
|
49 HASH_TABLE_EQUAL
|
0
|
50 };
|
|
51
|
380
|
52 EXFUN (Fcopy_hash_table, 1);
|
|
53 EXFUN (Fhash_table_count, 1);
|
|
54 EXFUN (Fgethash, 3);
|
|
55 EXFUN (Fputhash, 3);
|
272
|
56 EXFUN (Fremhash, 2);
|
380
|
57 EXFUN (Fclrhash, 1);
|
0
|
58
|
380
|
59 typedef unsigned long hashcode_t;
|
|
60 typedef int (*hash_table_test_function_t) (Lisp_Object obj1, Lisp_Object obj2);
|
|
61 typedef unsigned long (*hash_table_hash_function_t) (Lisp_Object obj);
|
|
62 typedef int (*maphash_function_t) (Lisp_Object key, Lisp_Object value,
|
|
63 void* extra_arg);
|
0
|
64
|
|
65
|
380
|
66 Lisp_Object make_general_lisp_hash_table (size_t size,
|
|
67 enum hash_table_type type,
|
|
68 enum hash_table_test test,
|
|
69 double rehash_threshold,
|
|
70 double rehash_size);
|
|
71
|
|
72 Lisp_Object make_lisp_hash_table (size_t size,
|
|
73 enum hash_table_type type,
|
|
74 enum hash_table_test test);
|
0
|
75
|
380
|
76 void elisp_maphash (maphash_function_t function,
|
|
77 Lisp_Object hash_table, void *extra_arg);
|
0
|
78
|
380
|
79 void elisp_map_remhash (maphash_function_t predicate,
|
|
80 Lisp_Object hash_table, void *extra_arg);
|
|
81
|
|
82 int finish_marking_weak_hash_tables (int (*obj_marked_p) (Lisp_Object),
|
|
83 void (*markobj) (Lisp_Object));
|
|
84 void prune_weak_hash_tables (int (*obj_marked_p) (Lisp_Object));
|
0
|
85
|
|
86 #endif /* _XEMACS_ELHASH_H_ */
|