-
Notifications
You must be signed in to change notification settings - Fork 11
/
InterconnectMap.java
159 lines (115 loc) · 3.29 KB
/
InterconnectMap.java
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
package org.hy.common;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
/**
* 互联互通Map -- 即可以像普通Map一样用Key找到Value。也可以用Value找到指向它的所有Key对象。
*
* Map.Key 与 Map.Value 都不可为空。
*
* Map.key不可重复,但Map.Value是允许重复的。
*
* @author ZhengWei(HY)
* @version v1.0
* @createDate 2013-07-02
*/
public class InterconnectMap<K ,V> extends Hashtable<K ,V> implements Map<K ,V>
{
private static final long serialVersionUID = -8192535025511638038L;
private PartitionMap<V ,K> reverseMap;
public InterconnectMap()
{
super();
this.reverseMap = new TablePartition<V ,K>();
}
@Override
public synchronized V put(K key ,V value)
{
if ( key == null )
{
throw new java.lang.NullPointerException("Param Key is null.");
}
if ( value == null )
{
throw new java.lang.NullPointerException("Param Value is null.");
}
V v_Ret = null;
if ( this.containsKey(key) )
{
V v_OldValue = super.remove(key);
this.reverseMap.removeRow(v_OldValue ,key);
}
v_Ret = super.put(key, value);
this.reverseMap.putRow(value ,key);
return v_Ret;
}
@Override
public synchronized void putAll(Map<? extends K, ? extends V> t)
{
Iterator<? extends Map.Entry<? extends K, ? extends V>> i = t.entrySet().iterator();
while (i.hasNext())
{
Map.Entry<? extends K, ? extends V> e = i.next();
put(e.getKey(), e.getValue());
}
}
@SuppressWarnings("unchecked")
@Override
public synchronized V remove(Object key)
{
V v_Ret = super.remove(key);
if ( v_Ret != null )
{
this.reverseMap.removeRow(v_Ret ,(K)key);
return v_Ret;
}
else
{
return null;
}
}
@Override
public synchronized void clear()
{
super.clear();
try
{
this.reverseMap.clear();
}
catch (Exception e)
{
e.printStackTrace();
}
}
/**
* 反向获取。获取指向Value的所有Key对象
*
* @param value
* @return
*/
public synchronized List<K> getReverse(V value)
{
return this.reverseMap.get(value);
}
/**
* 获取所有Value,即TablePartition中的分区类型
*
* @return
*/
public Iterator<V> getValues()
{
return this.reverseMap.keySet().iterator();
}
/*
ZhengWei(HY) Del 2016-07-30
不能实现这个方法。首先JDK中的Hashtable、ArrayList中也没有实现此方法。
它会在元素还有用,但集合对象本身没有用时,释放元素对象
一些与finalize相关的方法,由于一些致命的缺陷,已经被废弃了
protected void finalize() throws Throwable
{
this.clear();
super.finalize();
}
*/
}