com.oracle.tools.deferred.Cached Maven / Gradle / Ivy
Show all versions of oracle-tools-all Show documentation
/*
* File: Cached.java
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* The contents of this file are subject to the terms and conditions of
* the Common Development and Distribution License 1.0 (the "License").
*
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the License by consulting the LICENSE.txt file
* distributed with this file, or by consulting https://oss.oracle.com/licenses/CDDL
*
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file LICENSE.txt.
*
* MODIFICATIONS:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*/
package com.oracle.tools.deferred;
import java.util.concurrent.atomic.AtomicReference;
/**
* A {@link Cached} object is a specialized {@link Deferred} that holds
* a reference to (ie: caches) an object that was successfully returned by
* another {@link Deferred}.
*
* ie: A {@link Cached} is a {@link Deferred} adapter.
*
* Copyright (c) 2012. All Rights Reserved. Oracle Corporation.
* Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
*
* @author Brian Oliver
*/
public class Cached implements Deferred
{
/**
* The {@link Deferred} that will provide us with an object to cache.
*/
private Deferred m_deferred;
/**
* The last successfully resolved object from the {@link #m_deferred}.
*/
private AtomicReference m_object;
/**
* Constructs a {@link Cached} for the specified {@link Deferred}.
*
* @param deferred the {@link Deferred}
*/
public Cached(Deferred deferred)
{
m_deferred = deferred;
m_object = null;
}
/**
* Obtains the adapted {@link Deferred}.
*
* @return the adapted {@link Deferred}
*/
public Deferred getDeferred()
{
return m_deferred;
}
/**
* {@inheritDoc}
*/
@Override
public T get() throws UnresolvableInstanceException, InstanceUnavailableException
{
if (m_object == null)
{
synchronized (this)
{
if (m_object == null)
{
try
{
T deferred = m_deferred.get();
m_object = new AtomicReference(deferred);
}
catch (InstanceUnavailableException e)
{
throw e;
}
catch (UnresolvableInstanceException e)
{
throw e;
}
catch (RuntimeException e)
{
throw new InstanceUnavailableException(this, e);
}
}
}
}
return m_object.get();
}
/**
* {@inheritDoc}
*/
@Override
public Class getDeferredClass()
{
return m_deferred.getDeferredClass();
}
/**
* Release the currently cached object.
*
* @return the currently cached object
*/
public synchronized T release()
{
T object = m_object == null ? null : m_object.get();
m_object = null;
return object;
}
/**
* {@inheritDoc}
*/
@Override
public String toString()
{
return String.format("Cached{%s}", getDeferredClass());
}
}