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
|
// **********************************************************************
//
// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
package Freeze.MapInternal;
class EntryI<K, V> implements java.util.Map.Entry<K, V>
{
public
EntryI(MapI<K, V> map, K key, com.sleepycat.db.DatabaseEntry dbKey, byte[] valueBytes, byte[] indexBytes)
{
_map = map;
_dbKey = dbKey;
_valueBytes = valueBytes;
_indexBytes = indexBytes;
_communicator = map.connection().getCommunicator();
_key = key;
_haveKey = key != null;
}
public K
getKey()
{
if(!_haveKey)
{
assert(_dbKey != null);
_key = _map.decodeKey(_dbKey.getData(), _communicator);
_haveKey = true;
}
return _key;
}
public V
getValue()
{
if(!_haveValue)
{
assert(_valueBytes != null);
_value = _map.decodeValue(_valueBytes, _communicator);
_haveValue = true;
//
// Not needed anymore
//
_valueBytes = null;
}
return _value;
}
public byte[]
getIndexBytes()
{
return _indexBytes;
}
public V
setValue(V value)
{
V old = getValue();
if(_iterator != null)
{
_iterator.setValue(this, value);
}
else
{
_map.putImpl(_dbKey, value);
}
_value = value;
_haveValue = true;
return old;
}
public boolean
equals(Object o)
{
if(!(o instanceof EntryI))
{
return false;
}
@SuppressWarnings("unchecked")
EntryI<K, V> e = (EntryI<K, V>)o;
return eq(getKey(), e.getKey()) && eq(getValue(), e.getValue());
}
public int
hashCode()
{
return ((getKey() == null) ? 0 : getKey().hashCode()) ^
((getValue() == null) ? 0 : getValue().hashCode());
}
public String
toString()
{
return getKey() + "=" + getValue();
}
void
iterator(IteratorI<K, V> iterator)
{
_iterator = iterator;
}
com.sleepycat.db.DatabaseEntry
getDbKey()
{
return _dbKey;
}
private static boolean
eq(Object o1, Object o2)
{
return (o1 == null ? o2 == null : o1.equals(o2));
}
private MapI<K, V> _map;
private com.sleepycat.db.DatabaseEntry _dbKey;
private byte[] _valueBytes;
private byte[] _indexBytes;
private Ice.Communicator _communicator;
private K _key;
private boolean _haveKey = false;
private V _value;
private boolean _haveValue = false;
private IteratorI<K, V> _iterator;
}
|