1 | /* |
---|
2 | * EqualHashTable.java |
---|
3 | * |
---|
4 | * Copyright (C) 2004-2006 Peter Graves |
---|
5 | * $Id: EqualHashTable.java 12255 2009-11-06 22:36:32Z ehuelsmann $ |
---|
6 | * |
---|
7 | * This program is free software; you can redistribute it and/or |
---|
8 | * modify it under the terms of the GNU General Public License |
---|
9 | * as published by the Free Software Foundation; either version 2 |
---|
10 | * of the License, or (at your option) any later version. |
---|
11 | * |
---|
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. |
---|
16 | * |
---|
17 | * You should have received a copy of the GNU General Public License |
---|
18 | * along with this program; if not, write to the Free Software |
---|
19 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
---|
20 | * |
---|
21 | * As a special exception, the copyright holders of this library give you |
---|
22 | * permission to link this library with independent modules to produce an |
---|
23 | * executable, regardless of the license terms of these independent |
---|
24 | * modules, and to copy and distribute the resulting executable under |
---|
25 | * terms of your choice, provided that you also meet, for each linked |
---|
26 | * independent module, the terms and conditions of the license of that |
---|
27 | * module. An independent module is a module which is not derived from |
---|
28 | * or based on this library. If you modify this library, you may extend |
---|
29 | * this exception to your version of the library, but you are not |
---|
30 | * obligated to do so. If you do not wish to do so, delete this |
---|
31 | * exception statement from your version. |
---|
32 | */ |
---|
33 | |
---|
34 | package org.armedbear.lisp; |
---|
35 | |
---|
36 | public final class EqualHashTable extends HashTable |
---|
37 | { |
---|
38 | private int mask; |
---|
39 | |
---|
40 | public EqualHashTable(int size, LispObject rehashSize, |
---|
41 | LispObject rehashThreshold) |
---|
42 | { |
---|
43 | super(calculateInitialCapacity(size), rehashSize, rehashThreshold); |
---|
44 | mask = buckets.length - 1; |
---|
45 | } |
---|
46 | |
---|
47 | @Override |
---|
48 | public Symbol getTest() |
---|
49 | { |
---|
50 | return Symbol.EQUAL; |
---|
51 | } |
---|
52 | |
---|
53 | @Override |
---|
54 | public LispObject get(LispObject key) |
---|
55 | { |
---|
56 | HashEntry e = buckets[key.sxhash() & mask]; |
---|
57 | while (e != null) |
---|
58 | { |
---|
59 | if (key == e.key || key.equal(e.key)) |
---|
60 | return e.value; |
---|
61 | e = e.next; |
---|
62 | } |
---|
63 | return null; |
---|
64 | } |
---|
65 | |
---|
66 | @Override |
---|
67 | public void put(LispObject key, LispObject value) |
---|
68 | { |
---|
69 | int index = key.sxhash() & mask; |
---|
70 | HashEntry e = buckets[index]; |
---|
71 | while (e != null) |
---|
72 | { |
---|
73 | if (key == e.key || key.equal(e.key)) |
---|
74 | { |
---|
75 | e.value = value; |
---|
76 | return; |
---|
77 | } |
---|
78 | e = e.next; |
---|
79 | } |
---|
80 | // Not found. We need to add a new entry. |
---|
81 | if (++count > threshold) |
---|
82 | { |
---|
83 | rehash(); |
---|
84 | // Need a new hash value to suit the bigger table. |
---|
85 | index = key.sxhash() & mask; |
---|
86 | } |
---|
87 | e = new HashEntry(key, value); |
---|
88 | e.next = buckets[index]; |
---|
89 | buckets[index] = e; |
---|
90 | } |
---|
91 | |
---|
92 | @Override |
---|
93 | public LispObject remove(LispObject key) |
---|
94 | { |
---|
95 | final int index = key.sxhash() & mask; |
---|
96 | HashEntry e = buckets[index]; |
---|
97 | HashEntry last = null; |
---|
98 | while (e != null) |
---|
99 | { |
---|
100 | if (key == e.key || key.equal(e.key)) |
---|
101 | { |
---|
102 | if (last == null) |
---|
103 | buckets[index] = e.next; |
---|
104 | else |
---|
105 | last.next = e.next; |
---|
106 | --count; |
---|
107 | return e.value; |
---|
108 | } |
---|
109 | last = e; |
---|
110 | e = e.next; |
---|
111 | } |
---|
112 | return null; |
---|
113 | } |
---|
114 | |
---|
115 | @Override |
---|
116 | protected void rehash() |
---|
117 | { |
---|
118 | HashEntry[] oldBuckets = buckets; |
---|
119 | int newCapacity = buckets.length * 2; |
---|
120 | threshold = (int) (newCapacity * loadFactor); |
---|
121 | buckets = new HashEntry[newCapacity]; |
---|
122 | mask = buckets.length - 1; |
---|
123 | for (int i = oldBuckets.length; i-- > 0;) |
---|
124 | { |
---|
125 | HashEntry e = oldBuckets[i]; |
---|
126 | while (e != null) |
---|
127 | { |
---|
128 | final int index = e.key.sxhash() & mask; |
---|
129 | HashEntry dest = buckets[index]; |
---|
130 | if (dest != null) |
---|
131 | { |
---|
132 | while (dest.next != null) |
---|
133 | dest = dest.next; |
---|
134 | dest.next = e; |
---|
135 | } |
---|
136 | else |
---|
137 | buckets[index] = e; |
---|
138 | HashEntry next = e.next; |
---|
139 | e.next = null; |
---|
140 | e = next; |
---|
141 | } |
---|
142 | } |
---|
143 | } |
---|
144 | } |
---|