Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2010-10-18 16:50:06 +0000
committerPawel Piech2010-10-18 16:50:06 +0000
commitc6e0fac759022c8f0a9d138e11b3c87971325ab5 (patch)
treedffb56adbce52d688bc94a9a91fc56fb50106fa1 /dsf/org.eclipse.cdt.dsf
parent400a4127fdd2fab3aac96c07f279b3f1492c6497 (diff)
downloadorg.eclipse.cdt-c6e0fac759022c8f0a9d138e11b3c87971325ab5.tar.gz
org.eclipse.cdt-c6e0fac759022c8f0a9d138e11b3c87971325ab5.tar.xz
org.eclipse.cdt-c6e0fac759022c8f0a9d138e11b3c87971325ab5.zip
Bug 310345 - [concurrent] Asynchronous Cache Programming Model (ACPM) utilities for DSF
Diffstat (limited to 'dsf/org.eclipse.cdt.dsf')
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/AbstractCache.java324
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ICache.java69
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ImmediateInDsfExecutor.java44
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/RequestCache.java18
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Transaction.java15
5 files changed, 454 insertions, 16 deletions
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/AbstractCache.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/AbstractCache.java
new file mode 100644
index 00000000000..f3b512f04f6
--- /dev/null
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/AbstractCache.java
@@ -0,0 +1,324 @@
+package org.eclipse.cdt.dsf.concurrent;
+
+/*******************************************************************************
+ * Copyright (c) 2008 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
+ *******************************************************************************/
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.eclipse.cdt.dsf.internal.DsfPlugin;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+
+/**
+ * A base implementation of a general purpose cache. Sub classes must implement
+ * {@link #retrieve(DataRequestMonitor)} to fetch data from the data source.
+ * Sub-classes or clients are also 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 AbstractCache<V> implements ICache<V> {
+
+ private static final IStatus INVALID_STATUS = new Status(IStatus.ERROR, DsfPlugin.PLUGIN_ID, IDsfStatusConstants.INVALID_STATE, "Cache invalid", null); //$NON-NLS-1$
+ private static final IStatus DISABLED_STATUS = new Status(IStatus.ERROR, DsfPlugin.PLUGIN_ID, IDsfStatusConstants.INVALID_STATE, "Cache disabled", null); //$NON-NLS-1$
+
+ private class RequestCanceledListener implements RequestMonitor.ICanceledListener {
+ public void requestCanceled(final RequestMonitor canceledRm) {
+ fExecutor.execute(new Runnable() {
+ public void run() {
+ handleCanceledRm(canceledRm);
+ }
+ });
+ }
+ };
+
+ private RequestCanceledListener fRequestCanceledListener = new RequestCanceledListener();
+
+ private boolean fValid;
+
+ private V fData;
+ private IStatus fStatus = INVALID_STATUS;
+
+ @ThreadSafe
+ private Object fWaitingList;
+
+ private final ImmediateInDsfExecutor fExecutor;
+
+ public AbstractCache(ImmediateInDsfExecutor executor) {
+ fExecutor = executor;
+ }
+
+ public DsfExecutor getExecutor() {
+ return fExecutor.getDsfExecutor();
+ }
+
+ protected ImmediateInDsfExecutor getImmediateInDsfExecutor() {
+ return fExecutor;
+ }
+
+ /**
+ * Sub-classes should override this method to retrieve the cache data
+ * from its source.
+ *
+ * @param rm Request monitor for completion of data retrieval.
+ */
+ abstract protected void retrieve();
+
+
+ /**
+ * Called while holding a lock to "this". No new request will start until
+ * this call returns.
+ */
+ @ThreadSafe
+ abstract protected void canceled();
+
+ public boolean isValid() {
+ return fValid;
+ }
+
+ public V getData() {
+ return fData;
+ }
+
+ public IStatus getStatus() {
+ return fStatus;
+ }
+
+ public void request(final DataRequestMonitor<V> rm) {
+ wait(rm);
+ }
+
+ public void wait(RequestMonitor rm) {
+ assert fExecutor.getDsfExecutor().isInExecutorThread();
+
+ if (!fValid) {
+ boolean first = false;
+ synchronized (this) {
+ if (fWaitingList == null) {
+ first = true;
+ fWaitingList = rm;
+ } else if (fWaitingList instanceof RequestMonitor[]) {
+ RequestMonitor[] waitingList = (RequestMonitor[])fWaitingList;
+ int waitingListLength = waitingList.length;
+ int i;
+ for (i = 0; i < waitingListLength; i++) {
+ if (waitingList[i] == null) {
+ waitingList[i] = rm;
+ break;
+ }
+ }
+ if (i == waitingListLength) {
+ RequestMonitor[] newWaitingList = new RequestMonitor[waitingListLength + 1];
+ System.arraycopy(waitingList, 0, newWaitingList, 0, waitingListLength);
+ newWaitingList[waitingListLength] = rm;
+ fWaitingList = newWaitingList;
+ }
+ } else {
+ RequestMonitor[] newWaitingList = new RequestMonitor[2];
+ newWaitingList[0] = (RequestMonitor)fWaitingList;
+ newWaitingList[1] = rm;
+ fWaitingList = newWaitingList;
+ }
+ }
+ rm.addCancelListener(fRequestCanceledListener);
+ if (first) {
+ retrieve();
+ }
+ } else {
+ if (rm instanceof DataRequestMonitor<?>) {
+ @SuppressWarnings("unchecked")
+ DataRequestMonitor<V> drm = (DataRequestMonitor<V>)rm;
+ drm.setData(fData);
+ }
+ rm.setStatus(fStatus);
+ rm.done();
+ }
+ }
+
+ private void doSet(V data, IStatus status, boolean valid) {
+ assert fExecutor.getDsfExecutor().isInExecutorThread();
+
+ fData = data;
+ fStatus = status;
+ fValid = valid;
+
+ Object waiting = null;
+ synchronized(this) {
+ waiting = fWaitingList;
+ fWaitingList = null;
+ }
+ if (waiting != null) {
+ if (waiting instanceof RequestMonitor) {
+ completeWaitingRm((RequestMonitor)waiting);
+ } else if (waiting instanceof RequestMonitor[]) {
+ RequestMonitor[] waitingList = (RequestMonitor[])waiting;
+ for (int i = 0; i < waitingList.length; i++) {
+ if (waitingList[i] != null) {
+ completeWaitingRm(waitingList[i]);
+ }
+ }
+ }
+ waiting = null;
+ }
+ }
+
+ private void completeWaitingRm(RequestMonitor rm) {
+ if (rm instanceof DataRequestMonitor<?>) {
+ @SuppressWarnings("unchecked")
+ DataRequestMonitor<V> drm = (DataRequestMonitor<V>)rm;
+ drm.setData(fData);
+ }
+ rm.setStatus(fStatus);
+ rm.removeCancelListener(fRequestCanceledListener);
+ rm.done();
+ }
+
+ private void handleCanceledRm(final RequestMonitor rm) {
+
+ boolean found = false;
+ boolean waiting = false;
+ synchronized (this) {
+ if (rm.equals(fWaitingList)) {
+ found = true;
+ waiting = false;
+ fWaitingList = null;
+ } else if(fWaitingList instanceof RequestMonitor[]) {
+ RequestMonitor[] waitingList = (RequestMonitor[])fWaitingList;
+ for (int i = 0; i < waitingList.length; i++) {
+ if (!found && rm.equals(waitingList[i])) {
+ waitingList[i] = null;
+ found = true;
+ }
+ waiting = waiting || waitingList[i] != null;
+ }
+ }
+ if (/*found && */!waiting) {
+ canceled();
+ }
+ }
+
+ // If we have no clients waiting anymore, cancel the request
+ if (found) {
+ // We no longer need to listen to cancelations.
+ rm.removeCancelListener(fRequestCanceledListener);
+ rm.setStatus(Status.CANCEL_STATUS);
+ rm.done();
+ }
+
+ }
+
+ @ThreadSafe
+ protected boolean isCanceled() {
+ boolean canceled;
+ List<RequestMonitor> canceledRms = null;
+ synchronized (this) {
+ if (fWaitingList instanceof RequestMonitor && ((RequestMonitor)fWaitingList).isCanceled()) {
+ canceledRms = new ArrayList<RequestMonitor>(1);
+ canceledRms.add((RequestMonitor)fWaitingList);
+ fWaitingList = null;
+ } else if(fWaitingList instanceof RequestMonitor[]) {
+ boolean waiting = false;
+ RequestMonitor[] waitingList = (RequestMonitor[])fWaitingList;
+ for (int i = 0; i < waitingList.length; i++) {
+ if (waitingList[i] != null && waitingList[i].isCanceled()) {
+ if (canceledRms == null) {
+ canceledRms = new ArrayList<RequestMonitor>(1);
+ }
+ canceledRms.add( waitingList[i] );
+ waitingList[i] = null;
+ }
+ waiting = waiting || waitingList[i] != null;
+ }
+ if (!waiting) {
+ fWaitingList = null;
+ }
+ }
+ canceled = fWaitingList == null;
+ }
+ if (canceledRms != null) {
+ for (RequestMonitor canceledRm : canceledRms) {
+ canceledRm.setStatus(Status.CANCEL_STATUS);
+ canceledRm.removeCancelListener(fRequestCanceledListener);
+ canceledRm.done();
+ }
+ }
+
+ return canceled;
+ }
+
+ /**
+ * Resets the cache with a data value <code>null</code> and an error
+ * status with code {@link IDsfStatusConstants#INVALID_STATE}.
+ *
+ * @see #reset(Object, IStatus)
+ */
+ protected void reset() {
+ reset(null, INVALID_STATUS);
+ }
+
+ /**
+ * Resets the cache with given data and status. Resetting the cache
+ * forces the cache to be invalid and cancels any current pending requests
+ * from data source.
+ * <p>
+ * This method should be called when the data source has issued an event
+ * indicating that the source data has changed but data may still be
+ * retrieved. Clients may need to re-request data following cache reset.
+ * </p>
+ * @param data The data that should be returned to any clients currently
+ * waiting for cache data.
+ * @status The status that should be returned to any clients currently
+ * waiting for cache data.
+ */
+ protected void reset(V data, IStatus status) {
+ doSet(data, status, false);
+ }
+
+ /**
+ * Disables the cache from retrieving data from the source. If the cache
+ * is already valid the data and status is retained. If the cache is not
+ * valid, then data value <code>null</code> and an error status with code
+ * {@link IDsfStatusConstants#INVALID_STATE} are set.
+ *
+ * @see #set(Object, IStatus)
+ */
+ protected void disable() {
+ if (!fValid) {
+ set(null, DISABLED_STATUS);
+ }
+ }
+
+ /**
+ * Resets the cache then disables it. When a cache is disabled it means
+ * that it is valid and requests to the data source will not be sent.
+ * <p>
+ * This method should be called when the data source has issued an event
+ * indicating that the source data has changed and future requests for
+ * data will return the given data and status. Once the source data
+ * becomes available again, clients should call {@link #reset()}.
+ * </p>
+ * @param data The data that should be returned to any clients waiting for
+ * cache data and for clients requesting data until the cache is reset again.
+ * @status The status that should be returned to any clients waiting for
+ * cache data and for clients requesting data until the cache is reset again.
+ *
+ * @see #reset(Object, IStatus)
+ */
+ protected void set(V data, IStatus status) {
+ doSet(data, status, true);
+ }
+}
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ICache.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ICache.java
new file mode 100644
index 00000000000..a92d45103ad
--- /dev/null
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ICache.java
@@ -0,0 +1,69 @@
+/*******************************************************************************
+ * Copyright (c) 2010 Wind River Systems 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;
+
+/**
+ * The interface for a general purpose cache that caches the result of a single
+ * request. Implementations need to provide the logic to fetch data from an
+ * asynchronous 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("getExecutor()")
+public interface ICache<V> {
+
+ /**
+ * The executor that must be used to access this cache.
+ */
+ public DsfExecutor getExecutor();
+
+ /**
+ * Returns the current data value held by this cache. Clients should first
+ * call isValid() to determine if the data is up to date.
+ */
+ public V getData();
+
+ /**
+ * Returns the status of the source request held by this cache. Clients
+ * should first call isValid() to determine if the data is up to date.
+ */
+ public IStatus getStatus();
+
+ /**
+ * Wait for the cache to become valid. If the cache is valid already, the
+ * request returns immediately, otherwise data will first be retrieved from the
+ * source.
+ *
+ * @param rm RequestMonitor that is called when cache becomes valid.
+ */
+ public void wait(RequestMonitor rm);
+
+ /**
+ * Request data from the cache. The cache is valid, it will complete the
+ * request immediately, otherwise data will first be retrieved from the
+ * source.
+ *
+ * @param rm RequestMonitor that is called when cache becomes valid.
+ */
+ public void request(DataRequestMonitor<V> rm);
+
+ /**
+ * Returns <code>true</code> if the cache is currently valid. I.e.
+ * whether the cache can return a value immediately without first
+ * retrieving it from the data source.
+ */
+ public boolean isValid();
+}
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ImmediateInDsfExecutor.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ImmediateInDsfExecutor.java
new file mode 100644
index 00000000000..55706dc4f9d
--- /dev/null
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ImmediateInDsfExecutor.java
@@ -0,0 +1,44 @@
+/*******************************************************************************
+ * Copyright (c) 2008 Wind River Systems 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 java.util.concurrent.Executor;
+
+
+/**
+ * @since 2.2
+ *
+ */
+public class ImmediateInDsfExecutor implements Executor {
+
+ final private DsfExecutor fDsfExecutor;
+
+ public DsfExecutor getDsfExecutor() {
+ return fDsfExecutor;
+ }
+
+ public ImmediateInDsfExecutor(DsfExecutor dsfExecutor) {
+ fDsfExecutor = dsfExecutor;
+ }
+
+ public void execute(final Runnable command) {
+ if (fDsfExecutor.isInExecutorThread()) {
+ command.run();
+ } else {
+ fDsfExecutor.execute(new DsfRunnable() {
+ public void run() {
+ command.run();
+ }
+ });
+ }
+ }
+
+}
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/RequestCache.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/RequestCache.java
index 634716b2e34..1c52b3099eb 100644
--- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/RequestCache.java
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/RequestCache.java
@@ -24,7 +24,7 @@ import org.eclipse.core.runtime.Status;
* This cache requires an executor to use. The executor is used to synchronize
* access to the cache state and data.
* </p>
- * @since 2.1
+ * @since 2.2
*/
@ConfinedToDsfExecutor("fExecutor")
public abstract class RequestCache<V> extends AbstractCache<V> {
@@ -36,21 +36,15 @@ public abstract class RequestCache<V> extends AbstractCache<V> {
super(executor);
}
- /**
- * Sub-classes should override this method to retrieve the cache data
- * from its source.
- *
- * @param rm Request monitor for completion of data retrieval.
- */
@Override
- protected void retrieve() {
+ 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>(getExecutor(), null) {
+ fRm = new DataRequestMonitor<V>(getImmediateInDsfExecutor(), null) {
private IStatus fRawStatus = Status.OK_STATUS;
@@ -95,7 +89,7 @@ public abstract class RequestCache<V> extends AbstractCache<V> {
}
@Override
- public void reset(V data, IStatus status) {
+ protected void reset(V data, IStatus status) {
if (fRm != null) {
fRm.cancel();
fRm = null;
@@ -104,7 +98,7 @@ public abstract class RequestCache<V> extends AbstractCache<V> {
}
@Override
- public void disable() {
+ protected void disable() {
if (fRm != null) {
fRm.cancel();
fRm = null;
@@ -113,7 +107,7 @@ public abstract class RequestCache<V> extends AbstractCache<V> {
}
@Override
- public void set(V data, IStatus status) {
+ protected void set(V data, IStatus status) {
if (fRm != null) {
fRm.cancel();
fRm = null;
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Transaction.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Transaction.java
index 8de8d5ae07f..58ed79cbfe8 100644
--- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Transaction.java
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Transaction.java
@@ -122,7 +122,7 @@ public abstract class Transaction<V> {
* @throws CoreException
* if an error was encountered getting the data from the source
*/
- protected void validate(RequestCache<?> cache) throws InvalidCacheException, CoreException {
+ protected void validate(ICache<?> cache) throws InvalidCacheException, CoreException {
if (cache.isValid()) {
if (!cache.getStatus().isOK()) {
throw new CoreException(cache.getStatus());
@@ -141,15 +141,22 @@ public abstract class Transaction<V> {
}
}
+ /**
+ * See {@link #validate(RequestCache)}. This variant simply validates
+ * multiple cache objects.
+ */
+ protected void validate(RequestCache<?> ... caches) throws InvalidCacheException, CoreException {
+ }
+
/**
* See {@link #validate(RequestCache)}. This variant simply validates
* multiple cache objects.
*/
- protected void validate(RequestCache<?> ... caches) throws InvalidCacheException, CoreException {
+ protected void validate(Iterable<ICache<?>> caches) throws InvalidCacheException, CoreException {
// Check if any of the caches have errors:
boolean allValid = true;
- for (RequestCache<?> cache : caches) {
+ for (ICache<?> cache : caches) {
if (cache.isValid()) {
if (!cache.getStatus().isOK()) {
throw new CoreException(cache.getStatus());
@@ -169,7 +176,7 @@ public abstract class Transaction<V> {
}
};
int count = 0;
- for (RequestCache<?> cache : caches) {
+ for (ICache<?> cache : caches) {
if (!cache.isValid()) {
cache.wait(countringRm);
count++;

Back to the top