strolch/agent/src/main/java/li/strolch/agent/impl/DefaultLockHandler.java

194 lines
6.4 KiB
Java

/*
* Copyright 2013 Robert von Burg <eitch@eitchnet.ch>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package li.strolch.agent.impl;
import java.text.MessageFormat;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.ReentrantLock;
import li.strolch.agent.api.LockHandler;
import li.strolch.agent.api.StrolchAgent;
import li.strolch.agent.api.StrolchLockException;
import li.strolch.model.Locator;
import li.strolch.utils.collections.TypedTuple;
import li.strolch.utils.dbc.DBC;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author Robert von Burg <eitch@eitchnet.ch>
*/
public class DefaultLockHandler implements LockHandler {
private static final Logger logger = LoggerFactory.getLogger(DefaultLockHandler.class);
private final StrolchAgent agent;
private final String realm;
private final TimeUnit tryLockTimeUnit;
private final long tryLockTime;
private final Map<Locator, TypedTuple<ReentrantLock, Long>> lockMap;
private ScheduledFuture<?> cleanupTask;
public DefaultLockHandler(StrolchAgent agent, String realm, TimeUnit tryLockTimeUnit, long tryLockTime) {
DBC.PRE.assertNotNull("agent must be set!", agent); //$NON-NLS-1$
DBC.PRE.assertNotEmpty("Realm must be set!", realm); //$NON-NLS-1$
DBC.PRE.assertNotNull("TimeUnit must be set!", tryLockTimeUnit); //$NON-NLS-1$
DBC.PRE.assertNotEquals("try lock time must not be 0", 0, tryLockTime); //$NON-NLS-1$
this.agent = agent;
this.realm = realm;
this.tryLockTimeUnit = tryLockTimeUnit;
this.tryLockTime = tryLockTime;
this.lockMap = new ConcurrentHashMap<>();
}
@Override
public void start() {
this.cleanupTask = agent.getScheduledExecutor()
.scheduleAtFixedRate(this::cleanupOldLocks, 1, 1, TimeUnit.HOURS);
}
@Override
public void stop() {
if (this.cleanupTask != null)
this.cleanupTask.cancel(true);
}
private void cleanupOldLocks() {
Map<Locator, TypedTuple<ReentrantLock, Long>> lockMap;
synchronized (this.lockMap) {
lockMap = new HashMap<>(this.lockMap);
}
long maxAge = System.currentTimeMillis() - TimeUnit.HOURS.toMillis(1);
long count = 0;
for (Map.Entry<Locator, TypedTuple<ReentrantLock, Long>> entry : lockMap.entrySet()) {
if (!entry.getValue().getFirst().isLocked() && entry.getValue().getSecond() <= maxAge) {
this.lockMap.remove(entry.getKey());
count++;
}
}
logger.info("Pruned " + count + " Locator locks.");
}
public String getRealm() {
return this.realm;
}
@Override
public void lock(Locator locator) throws StrolchLockException {
TypedTuple<ReentrantLock, Long> tuple = this.lockMap.computeIfAbsent(locator,
l -> new TypedTuple<>(new ReentrantLock(true), System.currentTimeMillis()));
lock(this.tryLockTimeUnit, this.tryLockTime, tuple, locator);
}
@Override
public void unlock(Locator locator) throws StrolchLockException {
TypedTuple<ReentrantLock, Long> tuple = this.lockMap.get(locator);
ReentrantLock lock = tuple.getFirst();
if (lock == null || !lock.isHeldByCurrentThread()) {
logger.error(MessageFormat.format("Trying to unlock not locked element {0}", locator)); //$NON-NLS-1$
} else {
// logger.debug("unlocking " + locator); //$NON-NLS-1$
unlock(lock);
}
}
@Override
public void releaseLock(Locator locator) throws StrolchLockException {
TypedTuple<ReentrantLock, Long> tuple = this.lockMap.get(locator);
ReentrantLock lock = tuple.getFirst();
if (lock == null) {
logger.error(MessageFormat.format("Trying to unlock not locked element {0}", locator));
} else if (!lock.isHeldByCurrentThread()) {
if (lock.isLocked())
logger.error(MessageFormat.format("Lock not held by this thread for element {0}", locator));
else
logger.error(MessageFormat.format("Element {0} is not locked!", locator));
} else {
//logger.info("releasing lock " + locator); //$NON-NLS-1$
releaseLock(lock);
}
}
/**
* @see java.util.concurrent.locks.ReentrantLock#tryLock(long, TimeUnit)
*/
private void lock(TimeUnit timeUnit, long tryLockTime, TypedTuple<ReentrantLock, Long> tuple, Locator locator)
throws StrolchLockException {
try {
if (!tuple.getFirst().tryLock() && !tuple.getFirst().tryLock(tryLockTime, timeUnit)) {
String msg = "Thread {0} failed to acquire lock after {1}s for {2}"; //$NON-NLS-1$
msg = MessageFormat.format(msg, Thread.currentThread().getName(), timeUnit.toSeconds(tryLockTime),
locator);
try {
logger.error(msg);
logger.error("Listing all active threads: ");
Map<Thread, StackTraceElement[]> allStackTraces = Thread.getAllStackTraces();
for (Thread thread : allStackTraces.keySet()) {
StackTraceElement[] trace = allStackTraces.get(thread);
StringBuilder sb = new StringBuilder();
for (StackTraceElement traceElement : trace)
sb.append("\n\tat ").append(traceElement);
logger.error("\nThread " + thread.getName() + ":\n" + sb.toString() + "\n");
}
} catch (Exception e) {
logger.error("Failed to log active threads: " + e.getMessage(), e);
}
throw new StrolchLockException(msg);
}
tuple.setSecond(System.currentTimeMillis());
// logger.debug("locked " + locator); //$NON-NLS-1$
} catch (InterruptedException e) {
throw new StrolchLockException("Interrupted while trying to acquire lock for " + locator, e);
}
}
/**
* @see java.util.concurrent.locks.ReentrantLock#unlock()
*/
private void unlock(ReentrantLock lock) throws StrolchLockException {
try {
lock.unlock();
} catch (IllegalMonitorStateException e) {
throw new StrolchLockException("IllegalMonitorStateException when trying to unlock: " + e.getMessage(),
e); //$NON-NLS-1$
}
}
/**
* @see java.util.concurrent.locks.ReentrantLock#unlock()
*/
private void releaseLock(ReentrantLock lock) {
while (lock.isHeldByCurrentThread() && lock.isLocked()) {
unlock(lock);
}
}
}