Merge pull request #11 from esorton/bugfix/add-constexpr-keyword-to-arduino-ctags
[arduino-ctags.git] / keyword.c
blob2a549d95e2989b3d0fce8a7cfcae8bc05a343504
1 /*
2 * $Id: keyword.c 715 2009-07-06 03:31:00Z dhiebert $
4 * Copyright (c) 1998-2002, Darren Hiebert
6 * This source code is released for free distribution under the terms of the
7 * GNU General Public License.
9 * Manages a keyword hash.
13 * INCLUDE FILES
15 #include "general.h" /* must always come first */
17 #include <string.h>
19 #include "debug.h"
20 #include "keyword.h"
21 #include "options.h"
22 #include "routines.h"
25 * MACROS
27 #define HASH_EXPONENT 7 /* must be less than 17 */
30 * DATA DECLARATIONS
32 typedef struct sHashEntry {
33 struct sHashEntry *next;
34 const char *string;
35 langType language;
36 int value;
37 } hashEntry;
40 * DATA DEFINITIONS
42 static const unsigned int TableSize = 1 << HASH_EXPONENT;
43 static hashEntry **HashTable = NULL;
46 * FUNCTION DEFINITIONS
49 static hashEntry **getHashTable (void)
51 static boolean allocated = FALSE;
53 if (! allocated)
55 unsigned int i;
57 HashTable = xMalloc (TableSize, hashEntry*);
59 for (i = 0 ; i < TableSize ; ++i)
60 HashTable [i] = NULL;
62 allocated = TRUE;
64 return HashTable;
67 static hashEntry *getHashTableEntry (unsigned long hashedValue)
69 hashEntry **const table = getHashTable ();
70 hashEntry *entry;
72 Assert (hashedValue < TableSize);
73 entry = table [hashedValue];
75 return entry;
78 static unsigned long hashValue (const char *const string)
80 unsigned long value = 0;
81 const unsigned char *p;
83 Assert (string != NULL);
85 /* We combine the various words of the multiword key using the method
86 * described on page 512 of Vol. 3 of "The Art of Computer Programming".
88 for (p = (const unsigned char *) string ; *p != '\0' ; ++p)
90 value <<= 1;
91 if (value & 0x00000100L)
92 value = (value & 0x000000ffL) + 1L;
93 value ^= *p;
95 /* Algorithm from page 509 of Vol. 3 of "The Art of Computer Programming"
96 * Treats "value" as a 16-bit integer plus 16-bit fraction.
98 value *= 40503L; /* = 2^16 * 0.6180339887 ("golden ratio") */
99 value &= 0x0000ffffL; /* keep fractional part */
100 value >>= 16 - HASH_EXPONENT; /* scale up by hash size and move down */
102 return value;
105 static hashEntry *newEntry (
106 const char *const string, langType language, int value)
108 hashEntry *const entry = xMalloc (1, hashEntry);
110 entry->next = NULL;
111 entry->string = string;
112 entry->language = language;
113 entry->value = value;
115 return entry;
118 /* Note that it is assumed that a "value" of zero means an undefined keyword
119 * and clients of this function should observe this. Also, all keywords added
120 * should be added in lower case. If we encounter a case-sensitive language
121 * whose keywords are in upper case, we will need to redesign this.
123 extern void addKeyword (const char *const string, langType language, int value)
125 const unsigned long hashedValue = hashValue (string);
126 hashEntry *entry = getHashTableEntry (hashedValue);
128 if (entry == NULL)
130 hashEntry **const table = getHashTable ();
131 table [hashedValue] = newEntry (string, language, value);
133 else
135 hashEntry *prev = NULL;
137 while (entry != NULL)
139 if (language == entry->language &&
140 strcmp (string, entry->string) == 0)
142 Assert (("Already in table" == NULL));
144 prev = entry;
145 entry = entry->next;
147 if (entry == NULL)
149 Assert (prev != NULL);
150 prev->next = newEntry (string, language, value);
155 extern int lookupKeyword (const char *const string, langType language)
157 const unsigned long hashedValue = hashValue (string);
158 hashEntry *entry = getHashTableEntry (hashedValue);
159 int result = -1;
161 while (entry != NULL)
163 if (language == entry->language && strcmp (string, entry->string) == 0)
165 result = entry->value;
166 break;
168 entry = entry->next;
170 return result;
173 extern void freeKeywordTable (void)
175 if (HashTable != NULL)
177 unsigned int i;
179 for (i = 0 ; i < TableSize ; ++i)
181 hashEntry *entry = HashTable [i];
183 while (entry != NULL)
185 hashEntry *next = entry->next;
186 eFree (entry);
187 entry = next;
190 eFree (HashTable);
194 extern int analyzeToken (vString *const name, langType language)
196 vString *keyword = vStringNew ();
197 int result;
198 vStringCopyToLower (keyword, name);
199 result = lookupKeyword (vStringValue (keyword), language);
200 vStringDelete (keyword);
201 return result;
204 #ifdef DEBUG
206 static void printEntry (const hashEntry *const entry)
208 printf (" %-15s %-7s\n", entry->string, getLanguageName (entry->language));
211 static unsigned int printBucket (const unsigned int i)
213 hashEntry **const table = getHashTable ();
214 hashEntry *entry = table [i];
215 unsigned int measure = 1;
216 boolean first = TRUE;
218 printf ("%2d:", i);
219 if (entry == NULL)
220 printf ("\n");
221 else while (entry != NULL)
223 if (! first)
224 printf (" ");
225 else
227 printf (" ");
228 first = FALSE;
230 printEntry (entry);
231 entry = entry->next;
232 measure = 2 * measure;
234 return measure - 1;
237 extern void printKeywordTable (void)
239 unsigned long emptyBucketCount = 0;
240 unsigned long measure = 0;
241 unsigned int i;
243 for (i = 0 ; i < TableSize ; ++i)
245 const unsigned int pass = printBucket (i);
247 measure += pass;
248 if (pass == 0)
249 ++emptyBucketCount;
252 printf ("spread measure = %ld\n", measure);
253 printf ("%ld empty buckets\n", emptyBucketCount);
256 #endif
258 /* vi:set tabstop=4 shiftwidth=4: */