Use streq() instead of strcmp() == 0.
[cparser] / symbol_table.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20 #include <config.h>
21
22 #include "adt/strutil.h"
23 #include "symbol_table_t.h"
24 #include "symbol_t.h"
25 #include "token_t.h"
26 #include "adt/hash_string.h"
27 #include "adt/obst.h"
28
29 struct obstack symbol_obstack;
30
31 static inline
32 void init_symbol_table_entry(symbol_t *entry, const char *string)
33 {
34         entry->string        = string;
35         entry->ID            = T_IDENTIFIER;
36         entry->pp_ID         = TP_IDENTIFIER;
37         entry->entity        = NULL;
38         entry->pp_definition = NULL;
39 }
40
41 #define HashSet                    symbol_table_t
42 #define HashSetIterator            symbol_table_iterator_t
43 #define HashSetEntry               symbol_table_hash_entry_t
44 #define ValueType                  symbol_t*
45 #define NullValue                  NULL
46 #define DeletedValue               ((symbol_t*)-1)
47 #define KeyType                    const char *
48 #define ConstKeyType               const char *
49 #define GetKey(value)              (value)->string
50 #define InitData(this,value,key)   ((void)((value) = (ValueType)obstack_alloc(&symbol_obstack, sizeof(symbol_t)), init_symbol_table_entry((value), key)))
51 #define Hash(this, key)            hash_string(key)
52 #define KeysEqual(this,key1,key2)  (streq(key1, key2))
53 #define SetRangeEmpty(ptr,size)    memset(ptr, 0, (size) * sizeof(symbol_table_hash_entry_t))
54 #define SCALAR_RETURN
55
56 #define hashset_init            _symbol_table_init
57 #define hashset_init_size       _symbol_table_init_size
58 #define hashset_destroy         _symbol_table_destroy
59 #define hashset_insert          _symbol_table_insert
60 #define hashset_remove          _symbol_table_remove
61 #define hashset_find            _symbol_table_find
62 #define hashset_size            _symbol_table_size
63 #define hashset_iterator_init   _symbol_table_iterator_init
64 #define hashset_iterator_next   _symbol_table_iterator_next
65 #define hashset_remove_iterator _symbol_table_remove_iterator
66
67 #include "adt/hashset.c"
68
69 static symbol_table_t  symbol_table;
70
71 symbol_t *symbol_table_insert(const char *string)
72 {
73         return _symbol_table_insert(&symbol_table, string);
74 }
75
76 void init_symbol_table(void)
77 {
78         obstack_init(&symbol_obstack);
79         _symbol_table_init(&symbol_table);
80 }
81
82 void exit_symbol_table(void)
83 {
84         _symbol_table_destroy(&symbol_table);
85         obstack_free(&symbol_obstack, NULL);
86 }