Allow returning something of type void in a function that returns void
[delight/core.git] / dmd2 / stringtable.c
blob6f60ccdabd4cdd6c739841c31c79127f80ec9c6e
2 // Copyright (c) 1999-2008 by Digital Mars
3 // All Rights Reserved
4 // written by Walter Bright
5 // http://www.digitalmars.com
6 // License for redistribution is by either the Artistic License
7 // in artistic.txt, or the GNU General Public License in gnu.txt.
8 // See the included readme.txt for details.
11 #include <stdio.h>
12 #include <string.h>
13 #include <stdlib.h>
15 #include "root.h"
16 #include "mem.h"
17 #include "dchar.h"
18 #include "lstring.h"
19 #include "stringtable.h"
21 StringTable::StringTable(unsigned size)
23 table = (void **)mem.calloc(size, sizeof(void *));
24 tabledim = size;
25 count = 0;
28 StringTable::~StringTable()
30 unsigned i;
32 // Zero out dangling pointers to help garbage collector.
33 // Should zero out StringEntry's too.
34 for (i = 0; i < count; i++)
35 table[i] = NULL;
37 mem.free(table);
38 table = NULL;
41 struct StringEntry
43 StringEntry *left;
44 StringEntry *right;
45 hash_t hash;
47 StringValue value;
49 static StringEntry *alloc(const dchar *s, unsigned len);
52 StringEntry *StringEntry::alloc(const dchar *s, unsigned len)
54 StringEntry *se;
56 se = (StringEntry *) mem.calloc(1,sizeof(StringEntry) - sizeof(Lstring) + Lstring::size(len));
57 se->value.lstring.length = len;
58 se->hash = Dchar::calcHash(s,len);
59 memcpy(se->value.lstring.string, s, len * sizeof(dchar));
60 return se;
63 void **StringTable::search(const dchar *s, unsigned len)
65 hash_t hash;
66 unsigned u;
67 int cmp;
68 StringEntry **se;
70 //printf("StringTable::search(%p,%d)\n",s,len);
71 hash = Dchar::calcHash(s,len);
72 u = hash % tabledim;
73 se = (StringEntry **)&table[u];
74 //printf("\thash = %d, u = %d\n",hash,u);
75 while (*se)
77 cmp = (*se)->hash - hash;
78 if (cmp == 0)
80 cmp = (*se)->value.lstring.len() - len;
81 if (cmp == 0)
83 cmp = Dchar::memcmp(s,(*se)->value.lstring.toDchars(),len);
84 if (cmp == 0)
85 break;
88 if (cmp < 0)
89 se = &(*se)->left;
90 else
91 se = &(*se)->right;
93 //printf("\treturn %p, %p\n",se, (*se));
94 return (void **)se;
97 StringValue *StringTable::lookup(const dchar *s, unsigned len)
98 { StringEntry *se;
100 se = *(StringEntry **)search(s,len);
101 if (se)
102 return &se->value;
103 else
104 return NULL;
107 StringValue *StringTable::update(const dchar *s, unsigned len)
108 { StringEntry **pse;
109 StringEntry *se;
111 pse = (StringEntry **)search(s,len);
112 se = *pse;
113 if (!se) // not in table: so create new entry
115 se = StringEntry::alloc(s, len);
116 *pse = se;
118 return &se->value;
121 StringValue *StringTable::insert(const dchar *s, unsigned len)
122 { StringEntry **pse;
123 StringEntry *se;
125 pse = (StringEntry **)search(s,len);
126 se = *pse;
127 if (se)
128 return NULL; // error: already in table
129 else
131 se = StringEntry::alloc(s, len);
132 *pse = se;
134 return &se->value;