blob: 4da98b87c8a613aa04ac07b7e8637ca6ddc9793a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation 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:
* IBM Corporation - initial API and implementation
* Wind River - Pawel Piech - NPE when closing the Variables view (Bug 213719)
*******************************************************************************/
package org.eclipse.debug.internal.ui.viewers.model.provisional;
import org.eclipse.debug.internal.ui.viewers.model.ViewerAdapterService;
import org.eclipse.debug.internal.ui.viewers.model.ViewerInputUpdate;
/**
* Service to compute a viewer input from a source object
* for a given presentation context.
* <p>
* This class may be instantiated. Not intended to be subclassed.
* </p>
* @since 3.4
*/
public class ViewerInputService {
// previous update request, cancelled when a new request comes in
private IViewerInputUpdate fPendingUpdate = null;
private IViewerInputRequestor fRequestor = null;
private TreeModelViewer fViewer;
private IViewerInputRequestor fProxyRequest = new IViewerInputRequestor() {
public void viewerInputComplete(final IViewerInputUpdate update) {
synchronized (ViewerInputService.this) {
fPendingUpdate = null;
}
fRequestor.viewerInputComplete(update);
}
};
/**
* Constructs a viewer input service for the given requester and presentation context.
*
* @param requestor client requesting viewer inputs
* @param context context for which inputs are required
*/
public ViewerInputService(TreeModelViewer viewer, IViewerInputRequestor requestor) {
fRequestor = requestor;
fViewer = viewer;
}
/**
* Resolves a viewer input derived from the given source object.
* Reports the result to the given this service's requester. A requester may be called back
* in the same or thread, or asynchronously in a different thread. Cancels any previous
* incomplete request from this service's requester.
*
* @param source source from which to derive a viewer input
*/
public void resolveViewerInput(Object source) {
IViewerInputProvider provdier = ViewerAdapterService.getInputProvider(source);
synchronized (this) {
// cancel any pending update
if (fPendingUpdate != null) {
fPendingUpdate.cancel();
}
fPendingUpdate = new ViewerInputUpdate(fViewer.getPresentationContext(), fViewer.getInput(), fProxyRequest, source);
}
if (provdier == null) {
fPendingUpdate.setInputElement(source);
fRequestor.viewerInputComplete(fPendingUpdate);
} else {
provdier.update(fPendingUpdate);
}
}
/**
* Disposes this viewer input service, canceling any pending jobs.
*/
public synchronized void dispose() {
if (fPendingUpdate != null) {
fPendingUpdate.cancel();
fPendingUpdate = null;
}
}
}