com.jaeksoft.searchlib.util.map.LockedMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensearchserver Show documentation
Show all versions of opensearchserver Show documentation
OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, ...) and the REST/RESTFul API you will be able to integrate quickly and easily advanced full-text search capabilities in your application. OpenSearchServer runs on Windows and Linux/Unix/BSD.
The newest version!
/**
* License Agreement for OpenSearchServer
*
* Copyright (C) 2014 Emmanuel Keller / Jaeksoft
*
* http://www.open-search-server.com
*
* This file is part of OpenSearchServer.
*
* OpenSearchServer is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* OpenSearchServer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenSearchServer.
* If not, see .
**/
package com.jaeksoft.searchlib.util.map;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.jaeksoft.searchlib.util.ReadWriteLock;
public class LockedMap implements Map {
private final ReadWriteLock rwl;
private final Map map;
public LockedMap(Map map) {
rwl = new ReadWriteLock();
this.map = map;
}
@Override
public void clear() {
rwl.w.lock();
try {
map.clear();
} finally {
rwl.w.unlock();
}
}
@Override
public boolean containsKey(Object key) {
rwl.r.lock();
try {
return map.containsKey(key);
} finally {
rwl.r.unlock();
}
}
@Override
public boolean containsValue(Object value) {
rwl.r.lock();
try {
return map.containsValue(value);
} finally {
rwl.r.unlock();
}
}
@Override
public Set> entrySet() {
rwl.r.lock();
try {
return map.entrySet();
} finally {
rwl.r.unlock();
}
}
@Override
public V get(Object key) {
rwl.r.lock();
try {
return map.get(key);
} finally {
rwl.r.unlock();
}
}
@Override
public boolean isEmpty() {
rwl.r.lock();
try {
return map.isEmpty();
} finally {
rwl.r.unlock();
}
}
@Override
public Set keySet() {
rwl.r.lock();
try {
return map.keySet();
} finally {
rwl.r.unlock();
}
}
@Override
public V put(K key, V value) {
rwl.w.lock();
try {
return map.put(key, value);
} finally {
rwl.w.unlock();
}
}
@Override
public void putAll(Map extends K, ? extends V> m) {
rwl.w.lock();
try {
map.putAll(m);
} finally {
rwl.w.unlock();
}
}
@Override
public V remove(Object key) {
rwl.w.lock();
try {
return map.remove(key);
} finally {
rwl.w.unlock();
}
}
@Override
public int size() {
rwl.r.lock();
try {
return map.size();
} finally {
rwl.r.unlock();
}
}
@Override
public Collection values() {
rwl.r.lock();
try {
return map.values();
} finally {
rwl.r.unlock();
}
}
public List valueList() {
rwl.r.lock();
try {
return new ArrayList(map.values());
} finally {
rwl.r.unlock();
}
}
}