Browse Source

Merge pull request #272 in CORE/base-third from ~ANDREW ASA/base-third:feature/10.0 to feature/10.0

* commit '52b3945886e196f5f8278f8fb1cf26c807118bf3':
  REPORT-18730 objenesis内部会根据类名缓存class,插件禁用和卸载后会产生同名class,导致swift初始化对象不匹配,换一下key
research/11.0
andrew asa 5 years ago
parent
commit
2d26201d2f
  1. 26
      fine-kryo/src/com/fr/third/org/objenesis/ObjenesisBase.java

26
fine-kryo/src/com/fr/third/org/objenesis/ObjenesisBase.java

@ -18,6 +18,7 @@ package com.fr.third.org.objenesis;
import com.fr.third.org.objenesis.instantiator.ObjectInstantiator; import com.fr.third.org.objenesis.instantiator.ObjectInstantiator;
import com.fr.third.org.objenesis.strategy.InstantiatorStrategy; import com.fr.third.org.objenesis.strategy.InstantiatorStrategy;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
/** /**
@ -28,11 +29,15 @@ import java.util.concurrent.ConcurrentHashMap;
*/ */
public class ObjenesisBase implements Objenesis { public class ObjenesisBase implements Objenesis {
/** Strategy used by this Objenesi implementation to create classes */ /**
* Strategy used by this Objenesi implementation to create classes
*/
protected final InstantiatorStrategy strategy; protected final InstantiatorStrategy strategy;
/** Strategy cache. Key = Class, Value = InstantiatorStrategy */ /**
protected ConcurrentHashMap<String, ObjectInstantiator<?>> cache; * Strategy cache. Key = Class, Value = InstantiatorStrategy
*/
protected Map<Class, ObjectInstantiator<?>> cache;
/** /**
* Constructor allowing to pick a strategy and using cache * Constructor allowing to pick a strategy and using cache
@ -54,7 +59,7 @@ public class ObjenesisBase implements Objenesis {
throw new IllegalArgumentException("A strategy can't be null"); throw new IllegalArgumentException("A strategy can't be null");
} }
this.strategy = strategy; this.strategy = strategy;
this.cache = useCache ? new ConcurrentHashMap<String, ObjectInstantiator<?>>() : null; this.cache = useCache ? new ConcurrentHashMap<Class, ObjectInstantiator<?>>() : null;
} }
@Override @Override
@ -89,14 +94,23 @@ public class ObjenesisBase implements Objenesis {
if (cache == null) { if (cache == null) {
return strategy.newInstantiatorOf(clazz); return strategy.newInstantiatorOf(clazz);
} }
ObjectInstantiator<?> instantiator = cache.get(clazz.getName()); ObjectInstantiator<?> instantiator = cache.get(clazz);
if (instantiator == null) { if (instantiator == null) {
ObjectInstantiator<?> newInstantiator = strategy.newInstantiatorOf(clazz); ObjectInstantiator<?> newInstantiator = strategy.newInstantiatorOf(clazz);
instantiator = cache.putIfAbsent(clazz.getName(), newInstantiator); instantiator = putIfAbsent(clazz, newInstantiator);
if (instantiator == null) { if (instantiator == null) {
instantiator = newInstantiator; instantiator = newInstantiator;
} }
} }
return (ObjectInstantiator<T>) instantiator; return (ObjectInstantiator<T>) instantiator;
} }
private ObjectInstantiator<?> putIfAbsent(Class key, ObjectInstantiator<?> newInstantiator) {
ObjectInstantiator<?> instantiator = cache.get(key);
if (instantiator == null) {
instantiator = cache.put(key, newInstantiator);
}
return instantiator;
}
} }
Loading…
Cancel
Save