
net.openhft.chronicle.core.ReferenceCounted Maven / Gradle / Ivy
/*
* Copyright (C) 2015 higherfrequencytrading.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License.
*
* 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package net.openhft.chronicle.core;
import net.openhft.chronicle.core.io.Closeable;
import java.lang.ref.WeakReference;
import java.util.List;
/**
* A resource which is reference counted and freed when the refCount drop to 0.
*/
public interface ReferenceCounted extends Closeable {
static void releaseAll(List> refCounts) {
for (WeakReference extends ReferenceCounted> refCountRef : refCounts) {
if (refCountRef == null)
continue;
ReferenceCounted refCounted = refCountRef.get();
if (refCounted != null) {
try {
refCounted.release();
} catch (IllegalStateException e) {
// ignored
}
}
}
}
/**
* release a reference counted object
*
* @param o to release if ReferenceCounted
*/
static void release(Object o) {
if (o instanceof ReferenceCounted) {
ReferenceCounted rc = (ReferenceCounted) o;
try {
rc.release();
} catch (IllegalStateException e) {
// ignored.
}
}
}
/**
* reserve a resource
* @throws IllegalStateException if the resource has already been freed.
*/
void reserve() throws IllegalStateException;
/**
* release a resource
* @throws IllegalStateException if the resource has already been freed.
*/
void release() throws IllegalStateException;
default void close() {
release();
}
long refCount();
default boolean tryReserve() {
try {
if (refCount() > 0) {
reserve();
return true;
}
} catch (IllegalStateException ignored) {
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy