blob: 3c38939e50e3851e861ebe5b9a3291b6bf446de5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2011 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 - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.internal.rdt.core.index;
import java.util.Arrays;
import org.eclipse.cdt.core.dom.IPDOMIndexer;
import org.eclipse.cdt.core.dom.IPDOMIndexerTask;
import org.eclipse.cdt.core.model.ICElement;
import org.eclipse.cdt.core.model.ITranslationUnit;
import org.eclipse.cdt.internal.core.pdom.IndexerProgress;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.ptp.internal.rdt.core.model.Scope;
import org.eclipse.ptp.rdt.core.serviceproviders.IIndexServiceProvider;
/**
* @author crecoskie
*
*/
public class RemoteIndexerTask implements IPDOMIndexerTask {
protected RemoteFastIndexer fIndexer;
protected IIndexServiceProvider fIndexServiceProvider;
protected ITranslationUnit[] fAdded;
protected ITranslationUnit[] fChanged;
protected ITranslationUnit[] fRemoved;
protected boolean fUpdate;
private RemoteIndexerProgress fRemoteProgress = new RemoteIndexerProgress();
public RemoteIndexerTask(RemoteFastIndexer indexer,
IIndexServiceProvider indexingServiceProvider,
ITranslationUnit[] added, ITranslationUnit[] changed, ITranslationUnit[] removed, boolean update) {
fIndexer = indexer;
fIndexServiceProvider = indexingServiceProvider;
fAdded = added;
fChanged = changed;
fRemoved = removed;
fUpdate = update;
}
public IPDOMIndexer getIndexer() {
return fIndexer;
}
public IndexerProgress getProgressInformation() {
synchronized (fRemoteProgress) {
return RemoteIndexerProgress.getIndexerProgress(fRemoteProgress);
}
}
public void updateProgressInformation(RemoteIndexerProgress progress){
synchronized (fRemoteProgress) {
if (progress != null)
fRemoteProgress = progress;
}
}
public void run(IProgressMonitor monitor) throws InterruptedException {
IIndexLifecycleService service = fIndexServiceProvider.getIndexLifeCycleService();
if (service != null) {
IProject project = fIndexer.getProject().getProject();
Scope scope = new Scope(project);
IndexBuildSequenceController projectStatus = IndexBuildSequenceController
.getIndexBuildSequenceController(fIndexer.getProject().getProject());
if (fUpdate) {
// notify listeners
for (IRemoteFastIndexerListener listener : RemoteFastIndexer.getRemoteFastIndexerListeners()) {
listener.indexerUpdating(new RemoteFastIndexerUpdateEvent(
IRemoteFastIndexerUpdateEvent.EventType.EVENT_UPDATE, this, scope));
}
// perform the indexer update
service.update(scope, Arrays.<ICElement> asList(fAdded), Arrays.<ICElement> asList(fChanged),
Arrays.<ICElement> asList(fRemoved), monitor, this);
} else {
// notify listeners
for (IRemoteFastIndexerListener listener : RemoteFastIndexer.getRemoteFastIndexerListeners()) {
listener.indexerUpdating(new RemoteFastIndexerUpdateEvent(
IRemoteFastIndexerUpdateEvent.EventType.EVENT_REINDEX, this, scope));
}
// perform the re-index
service.reindex(scope, fIndexServiceProvider.getIndexLocation(), Arrays.<ICElement> asList(fAdded),
monitor, this);
}
projectStatus.setIndexCompleted();
}
}
/* (non-Javadoc)
* @see org.eclipse.cdt.core.dom.IPDOMIndexerTask#acceptUrgentTask(org.eclipse.cdt.core.dom.IPDOMIndexerTask)
*/
public boolean acceptUrgentTask(IPDOMIndexerTask task) {
// TODO Auto-generated method stub
return false;
}
}