blob: 8c1f2b78bb421e91c1b4f7d64a5f1c49073947d5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.java.tests.xml;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.internal.resources.File;
import org.eclipse.mylyn.context.core.AbstractContextStructureBridge;
import org.eclipse.mylyn.context.core.ContextCore;
import org.eclipse.mylyn.context.tests.support.search.TestActiveSearchListener;
import org.eclipse.mylyn.internal.context.core.AbstractRelationProvider;
import org.eclipse.mylyn.internal.ide.ui.XmlNodeHelper;
import org.eclipse.search.internal.ui.text.FileSearchResult;
import org.eclipse.search.ui.text.Match;
/**
* @author Shawn Minto
*/
public class XmlTestActiveSearchListener extends TestActiveSearchListener {
private List<?> results = null;
public XmlTestActiveSearchListener(AbstractRelationProvider prov) {
super(prov);
}
private boolean gathered = false;
@Override
public void searchCompleted(List<?> l) {
results = l;
// deal with File
if (l.isEmpty()) {
gathered = true;
return;
}
if (l.get(0) instanceof FileSearchResult) {
FileSearchResult fsr = (FileSearchResult) l.get(0);
List<Object> nodes = new ArrayList<Object>();
Object[] far = fsr.getElements();
for (Object element : far) {
Match[] mar = fsr.getMatches(element);
if (element instanceof File) {
File f = (File) element;
for (Match m : mar) {
try {
AbstractContextStructureBridge bridge = ContextCore.getStructureBridge(f.getName());
String handle = bridge.getHandleForOffsetInObject(f, m.getOffset());
XmlNodeHelper node = new XmlNodeHelper(handle);
nodes.add(node);
} catch (Exception e) {
e.printStackTrace();
// don't care
}
}
}
}
results = nodes;
}
gathered = true;
}
@Override
public boolean resultsGathered() {
return gathered;
}
@Override
public List<?> getResults() {
return results;
}
}