All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dts.sdk.util.ReferenceCounted Maven / Gradle / Ivy

package com.github.dts.sdk.util;

import java.util.LinkedList;
import java.util.List;
import java.util.function.Consumer;

public class ReferenceCounted implements AutoCloseable {
    private final T value;
    private final List> destroyFinishCallbackList = new LinkedList<>();

    private volatile int refCnt;
    private volatile boolean destroy;

    public ReferenceCounted(T value) {
        this.value = value;
        this.refCnt = 0;
    }

    public ReferenceCounted open() {
        synchronized (this) {
            if (this.destroy) {
                throw new IllegalStateException("destroy");
            }
            refCnt++;
            return this;
        }
    }

    public void destroy(Consumer destroyFinishCallback) {
        if (destroy) {
            throw new IllegalStateException("destroy");
        }
        synchronized (this) {
            this.destroy = true;
            if (refCnt == 0) {
                destroyFinishCallback.accept(value);
            } else {
                this.destroyFinishCallbackList.add(destroyFinishCallback);
            }
        }
    }

    public int refCnt() {
        return refCnt;
    }

    public T get() {
        return value;
    }

    @Override
    public void close() {
        synchronized (this) {
            int refCnt = --this.refCnt;
            if (this.destroy && refCnt == 0) {
                for (Consumer consumer : destroyFinishCallbackList) {
                    consumer.accept(value);
                }
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy