Browse Source

reimplement lru cache in thread safe

pull/471/head
clchen 7 years ago
parent
commit
60fea36252
  1. 94
      json-path/src/main/java/com/jayway/jsonpath/spi/cache/LRUCache.java

94
json-path/src/main/java/com/jayway/jsonpath/spi/cache/LRUCache.java vendored

@ -12,101 +12,63 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.jayway.jsonpath.spi.cache; package com.jayway.jsonpath.spi.cache;
import com.jayway.jsonpath.JsonPath; import com.jayway.jsonpath.JsonPath;
import java.util.Deque; import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.Map; import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.locks.ReentrantLock; import java.util.concurrent.locks.ReentrantLock;
public class LRUCache implements Cache { public class LRUCache implements Cache {
private static final float DEFAULT_LOAD_FACTOR = 0.75f;
private final ReentrantLock lock = new ReentrantLock(); private final ReentrantLock lock = new ReentrantLock();
private int size;
private LinkedHashMap<String, JsonPath> hashMap;
private final Map<String, JsonPath> map = new ConcurrentHashMap<String, JsonPath>(); public LRUCache(int size) {
private final Deque<String> queue = new LinkedList<String>(); this.size = size;
private final int limit; int capacity = (int) Math.ceil(size / DEFAULT_LOAD_FACTOR) + 1;
hashMap = new LinkedHashMap<String, JsonPath>(capacity, DEFAULT_LOAD_FACTOR, true) {
// (an anonymous inner class)
private static final long serialVersionUID = 1;
public LRUCache(int limit) { @Override
this.limit = limit; protected boolean removeEldestEntry(Map.Entry<String, JsonPath> eldest) {
return size() > LRUCache.this.size;
}
};
} }
public void put(String key, JsonPath value) { public void put(String key, JsonPath value) {
JsonPath oldValue = map.put(key, value); synchronized (this) {
if (oldValue != null) { hashMap.put(key, value);
removeThenAddKey(key);
} else {
addKey(key);
}
if (map.size() > limit) {
map.remove(removeLast());
} }
} }
public JsonPath get(String key) { public JsonPath get(String key) {
JsonPath jsonPath = map.get(key); synchronized (this) {
if(jsonPath != null){ return hashMap.get(key);
removeThenAddKey(key);
}
return jsonPath;
}
private void addKey(String key) {
lock.lock();
try {
queue.addFirst(key);
} finally {
lock.unlock();
}
}
private String removeLast() {
lock.lock();
try {
final String removedKey = queue.removeLast();
return removedKey;
} finally {
lock.unlock();
}
}
private void removeThenAddKey(String key) {
lock.lock();
try {
queue.removeFirstOccurrence(key);
queue.addFirst(key);
} finally {
lock.unlock();
}
}
private void removeFirstOccurrence(String key) {
lock.lock();
try {
queue.removeFirstOccurrence(key);
} finally {
lock.unlock();
} }
} }
public JsonPath getSilent(String key) { public JsonPath getSilent(String key) {
return map.get(key); synchronized (this) {
return hashMap.get(key);
} }
public void remove(String key) {
removeFirstOccurrence(key);
map.remove(key);
} }
public int size() { public int size() {
return map.size(); synchronized (this) {
return hashMap.size();
}
} }
public String toString() { public String toString() {
return map.toString(); synchronized (this) {
return hashMap.toString();
}
} }
} }
Loading…
Cancel
Save