]>
git.saurik.com Git - bison.git/blob - src/uniqstr.c
1 /* Keep a unique copy of strings.
3 Copyright (C) 2002-2005, 2009-2015 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
30 /*-----------------------.
31 | A uniqstr hash table. |
32 `-----------------------*/
34 /* Initial capacity of uniqstr hash table. */
35 #define HT_INITIAL_CAPACITY 257
37 static struct hash_table
*uniqstrs_table
= NULL
;
39 /*-------------------------------------.
40 | Create the uniqstr for S if needed. |
41 `-------------------------------------*/
44 uniqstr_new (char const *str
)
46 uniqstr res
= hash_lookup (uniqstrs_table
, str
);
49 /* First insertion in the hash. */
51 if (!hash_insert (uniqstrs_table
, res
))
58 uniqstr_vsprintf (char const *format
, ...)
62 va_start (args
, format
);
63 length
= vsnprintf (NULL
, 0, format
, args
);
67 va_start (args
, format
);
68 vsprintf (res
, format
, args
);
70 return uniqstr_new (res
);
73 /*------------------------------.
74 | Abort if S is not a uniqstr. |
75 `------------------------------*/
78 uniqstr_assert (char const *str
)
80 uniqstr s
= hash_lookup (uniqstrs_table
, str
);
84 "not a uniqstr: %s", quotearg (str
));
90 /*--------------------.
91 | Print the uniqstr. |
92 `--------------------*/
95 uniqstr_print (uniqstr ustr
)
97 fprintf (stderr
, "%s\n", ustr
);
102 uniqstr_print_processor (void *ustr
, void *null ATTRIBUTE_UNUSED
)
104 return uniqstr_print (ustr
);
109 uniqstr_cmp (uniqstr l
, uniqstr r
)
118 /*-----------------------.
119 | A uniqstr hash table. |
120 `-----------------------*/
123 hash_compare_uniqstr (void const *m1
, void const *m2
)
125 return STREQ (m1
, m2
);
129 hash_uniqstr (void const *m
, size_t tablesize
)
131 return hash_string (m
, tablesize
);
135 /*----------------------------.
136 | Create the uniqstrs table. |
137 `----------------------------*/
142 uniqstrs_table
= hash_initialize (HT_INITIAL_CAPACITY
,
145 hash_compare_uniqstr
,
150 /*-------------------------------------.
151 | Perform a task on all the uniqstrs. |
152 `-------------------------------------*/
155 uniqstrs_do (Hash_processor processor
, void *processor_data
)
157 hash_do_for_each (uniqstrs_table
, processor
, processor_data
);
166 uniqstrs_print (void)
168 uniqstrs_do (uniqstr_print_processor
, NULL
);
172 /*--------------------.
173 | Free the uniqstrs. |
174 `--------------------*/
179 hash_free (uniqstrs_table
);