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

ai.djl.util.NativeResource Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
 * with the License. A copy of the License is located at
 *
 * http://aws.amazon.com/apache2.0/
 *
 * or in the "license" file accompanying this file. This file 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 ai.djl.util;

import com.sun.jna.Pointer;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.concurrent.atomic.AtomicReference;

/**
 * {@code NativeResource} is an internal class for {@link AutoCloseable} blocks of memory created in
 * the different engines.
 *
 * @param  the resource that could map to a native pointer or java object
 */
public abstract class NativeResource implements AutoCloseable {

    private static final Logger logger = LoggerFactory.getLogger(NativeResource.class);

    private static final boolean TRACK_RESOURCE = Boolean.getBoolean("ai.djl.track_resource");

    protected final AtomicReference handle;
    private String uid;
    private Exception exception;

    protected NativeResource(T handle) {
        this.handle = new AtomicReference<>(handle);
        uid = handle.toString() + System.nanoTime();
    }

    /**
     * Gets the boolean that indicates whether this resource has been released.
     *
     * @return whether this resource has been released
     */
    public boolean isReleased() {
        return handle.get() == null;
    }

    /**
     * Gets the {@link Pointer} to this resource.
     *
     * @return the {@link Pointer} to this resource
     */
    public T getHandle() {
        T reference = handle.get();
        if (reference == null) {
            if (TRACK_RESOURCE) {
                logger.error("Native resource {} is released. Closed at:", uid, exception);
            }
            String message = "Native resource has been released already.";
            throw new IllegalStateException(message);
        }
        return reference;
    }

    /**
     * Gets the unique ID of this resource.
     *
     * @return the unique ID of this resource
     */
    public final String getUid() {
        return uid;
    }

    /** Remembers the stack trace on closing. */
    public void onClose() {
        if (TRACK_RESOURCE) {
            exception = new Exception();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void close() {
        throw new UnsupportedOperationException("Not implemented.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy