/******************************************************************************* * Copyright (c) 2008, 2015 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Wind River Systems - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.dsf.concurrent; import org.eclipse.core.runtime.IStatus; /** * A general purpose cache, which caches the result of a single request. * Sub classes need to implement {@link #retrieve(DataRequestMonitor)} to fetch * data from the data source. Clients are responsible for calling * {@link #disable()} and {@link #reset()} to manage the state of the cache in * response to events from the data source. * <p> * This cache requires an executor to use. The executor is used to synchronize * access to the cache state and data. * </p> * @since 2.2 */ @ConfinedToDsfExecutor("fExecutor") public abstract class RequestCache<V> extends AbstractCache<V> { protected DataRequestMonitor<V> fRm; public RequestCache(ImmediateInDsfExecutor executor) { super(executor); } @Override protected final void retrieve() { // Make sure to cancel the previous rm. This may lead to the rm being // canceled twice, but that's not harmful. if (fRm != null) { fRm.cancel(); } fRm = new DataRequestMonitor<V>(getImmediateInDsfExecutor(), null) { @Override protected void handleCompleted() { if (this == fRm) { fRm = null; // If the requester canceled the request, then leave the // cache as is, regardless of how the retrieval completes. // We want the cache to stay in the invalid state so that // it remains functional. The request may have completed // successfully, and it may be tempting to use the result in // that case, but that opens up a can of worms. We'll follow // the behavior in RequestMonitor: when an RM is canceled, // it's canceled; period. if (!isCanceled()) { set(getData(), getStatus()); } } } @Override public boolean isCanceled() { return super.isCanceled() || RequestCache.this.isCanceled(); }; }; retrieve(fRm); } /** * Sub-classes should override this method to retrieve the cache data * from its source. * * @param rm Request monitor for completion of data retrieval. */ protected abstract void retrieve(DataRequestMonitor<V> rm); @Override protected synchronized void canceled() { if (fRm != null) { fRm.cancel(); } } @Override protected void set(V data, IStatus status) { if (fRm != null) { fRm.cancel(); fRm = null; } super.set(data, status); } @Override protected void reset() { if (fRm != null) { fRm.cancel(); fRm = null; } super.reset(); } }