org.neo4j.internal.collector.ConcurrentLinkedQueueRecentBuffer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-data-collector Show documentation
Show all versions of neo4j-data-collector Show documentation
The Neo4j data collector daemon.
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j 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.
*
* This program 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 this program. If not, see .
*/
package org.neo4j.internal.collector;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.Consumer;
import java.util.function.Predicate;
import org.apache.commons.lang3.mutable.MutableInt;
/**
* Implementation of {@link RecentBuffer} using {@link ConcurrentLinkedQueue}.
*/
public class ConcurrentLinkedQueueRecentBuffer implements RecentBuffer {
private final ConcurrentLinkedQueue queue;
private final int maxSize;
private final AtomicInteger size;
public ConcurrentLinkedQueueRecentBuffer(int maxSize) {
this.maxSize = maxSize;
queue = new ConcurrentLinkedQueue<>();
size = new AtomicInteger(0);
}
/* ---- many producers ---- */
@Override
public void produce(T t) {
queue.add(t);
int newSize = size.incrementAndGet();
if (newSize > maxSize) {
queue.poll();
size.decrementAndGet();
}
}
/* ---- single consumer ---- */
@Override
public void clearIf(Predicate predicate) {
var removeCount = new MutableInt(0);
queue.removeIf(q -> {
if (predicate.test(q)) {
removeCount.increment();
return true;
} else {
return false;
}
});
// Might go out of sync with queue here, but should be minor slippage.
// Will not accumulate leaks either, but reset on every clear.
size.addAndGet(-removeCount.intValue());
}
@Override
public void foreach(Consumer consumer) {
queue.forEach(consumer);
}
}