1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
|
/*
* Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*
*/
package javax.media.j3d;
class HashKey extends Object {
/**
* The value is used for character storage.
*/
char value[];
/**
* The count is the number of characters in the buffer.
*/
int count = 0;
HashKey() {
this(16);
}
HashKey(int length) {
value = new char[length];
}
HashKey(HashKey hashkey) {
this.set(hashkey);
}
HashKey(String str) {
this(str.length() + 16);
append(str);
}
void set(HashKey hashkey) {
int i;
if (this.count < hashkey.count) {
this.value = new char[hashkey.count];
}
for (i=0; i<hashkey.count; i++) {
this.value[i] = hashkey.value[i];
}
this.count = hashkey.count;
}
void reset() {
count = 0;
}
void ensureCapacity(int minimumCapacity) {
int maxCapacity = value.length;
if (minimumCapacity > maxCapacity) {
int newCapacity = (maxCapacity + 1) * 2;
if (minimumCapacity > newCapacity) {
newCapacity = minimumCapacity;
}
char newValue[] = new char[newCapacity];
System.arraycopy(value, 0, newValue, 0, count);
value = newValue;
}
}
HashKey append(String str) {
int len = 0;
if (str == null)
return this;
len = str.length();
ensureCapacity(count + len);
str.getChars(0, len, value, count);
count += len;
return this;
}
@Override
public int hashCode() {
int h = 0;
int off = 0;
char val[] = value;
int len = count;
if (len < 16) {
for (int i = len ; i > 0; i--) {
h = (h * 37) + val[off++];
}
} else {
// only sample some characters
int skip = len / 8;
for (int i = len ; i > 0; i -= skip, off += skip) {
h = (h * 39) + val[off];
}
}
return h;
}
@Override
public boolean equals(Object anObject) {
if ((anObject != null) && (anObject instanceof HashKey)) {
HashKey anotherHashKey = (HashKey)anObject;
int n = count;
if (n == anotherHashKey.count) {
char v1[] = value;
char v2[] = anotherHashKey.value;;
int i = 0;
int j = 0;
while (n-- != 0) {
if (v1[i++] != v2[j++]) {
return false;
}
}
return true;
}
}
return false;
}
/* For internal use only. */
private int equals(HashKey hk) {
int index = 0;
while((index < count) && (index < hk.count)) {
if(value[index] < hk.value[index])
return -1;
else if(value[index] > hk.value[index])
return 1;
index++;
}
if(count == hk.count)
// Found it!
return 0;
else if(count < hk.count)
return -1;
else
return 1;
}
/* For package use only. */
int equals(HashKey localToVworldKeys[], int start, int end) {
int mid;
mid = start +((end - start)/ 2);
if(localToVworldKeys[mid] != null) {
int test = equals(localToVworldKeys[mid]);
if((test < 0) && (start != mid))
return equals(localToVworldKeys, start, mid);
else if((test > 0) && (start != mid))
return equals(localToVworldKeys, mid, end);
else if(test == 0)
return mid;
else
return -1;
}
// A null haskey encountered.
return -2;
}
/* For package use only. */
boolean equals(HashKey localToVworldKeys[], int[] index,
int start, int end) {
int mid;
mid = start +((end - start)/ 2);
if(localToVworldKeys[mid] != null) {
int test = equals(localToVworldKeys[mid]);
if(start != mid) {
if(test < 0) {
return equals(localToVworldKeys, index, start, mid);
}
else if(test > 0) {
return equals(localToVworldKeys, index, mid, end);
}
}
else { // (start == mid)
if(test < 0) {
index[0] = mid;
return false;
}
else if(test > 0) {
index[0] = mid+1;
return false;
}
}
// (test == 0)
index[0] = mid;
return true;
}
// A null haskey encountered.
// But we still want to return the index where we encounter it.
index[0] = mid;
return false;
}
@Override
public String toString() {
return new String(value, 0, count);
}
String getLastNodeId() {
int i, j, temp;
for(i=(count-1); i>0; i--)
if(value[i] == '+')
break;
if(i>0) {
value[i++] = '\0';
temp = count-i;
char v1[] = new char[temp];
for(j=0; j<temp; j++, i++) {
v1[j] = value[i];
value[i] = '\0';
}
count = count - (temp+1);
return new String(v1);
}
return new String(value, 0, count);
}
}
|