[讨论] HashMap多线程访问检查
haoweishow
2012-03-20
突发奇想,修改了
HashMap.java 的代码。用于检查hashmap对象是否被多线程访问。 经过测试,还真能发现点问题。大家看看如何。 添加如下属性和方法 /** * 0:get * 1:put/putAll * -1:remove/clear **/ private int _opt; //线程操作该hashmap的操作类型 private Thread _ct;//当前操作该hashmap的线程 static String str ="----Unsafe Access----"; private void checkStart(int opt){ if(_ct==null){ _ct = Thread.currentThread(); }else if(_ct!=Thread.currentThread()){ if(_opt==opt&&opt==0){ }else{ _opt = opt; if(System.err!=null){//在实际应用中发现,在weblogic启动阶段,System.err对象为空。困惑中。 new Exception(str).printStackTrace(); } } } } private void checkEnd(){ _opt = 0; _ct = null; } 修改get方法:主逻辑未动 public V get(Object key) { checkStart(0); V v = null; if (key == null){ v = getForNullKey(); checkEnd(); return v; } int hash = hash(key.hashCode()); for (Entry e = table[indexFor(hash, table.length)]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || key.equals(k))){ v = e.value; checkEnd(); return v; } } checkEnd(); return v; } 修改put方法: public V put(K key, V value) { checkStart(1); V v = null; if (key == null){ v = putForNullKey(value); checkEnd(); return v; } int hash = hash(key.hashCode()); int i = indexFor(hash, table.length); for (Entry e = table[i]; e != null; e = e.next) { Object k; if (e.hash == hash && ((k = e.key) == key || key.equals(k))) { V oldValue = e.value; e.value = value; e.recordAccess(this); checkEnd(); return oldValue; } } modCount++; addEntry(hash, key, value, i); checkEnd(); return v; } 修改remove方法: public V remove(Object key) { checkStart(-1); Entry e = removeEntryForKey(key); V v = (e == null ? null : e.value); checkEnd(); return v; } |