blob: cb60bacf25006b7bdcf529352eb6c291f0f1db55 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.ruta.ide.core.search;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.dltk.ast.references.SimpleReference;
import org.eclipse.dltk.core.DLTKCore;
import org.eclipse.dltk.core.ICallProcessor;
import org.eclipse.dltk.core.IModelElement;
import org.eclipse.dltk.core.ISourceModule;
import org.eclipse.dltk.core.ModelException;
import org.eclipse.dltk.core.search.IDLTKSearchConstants;
import org.eclipse.dltk.core.search.IDLTKSearchScope;
import org.eclipse.dltk.core.search.SearchEngine;
import org.eclipse.dltk.core.search.SearchMatch;
import org.eclipse.dltk.core.search.SearchParticipant;
import org.eclipse.dltk.core.search.SearchPattern;
import org.eclipse.dltk.core.search.SearchRequestor;
public class RutaCallProcessor implements ICallProcessor {
public final static int GENERICS_AGNOSTIC_MATCH_RULE = SearchPattern.R_EXACT_MATCH
| SearchPattern.R_CASE_SENSITIVE | SearchPattern.R_ERASURE_MATCH;
private SearchEngine searchEngine = new SearchEngine();
public Map process(final IModelElement parent, IModelElement element, IDLTKSearchScope scope,
IProgressMonitor monitor) {
final Map elements = new HashMap();
SearchRequestor requestor = new SearchRequestor() {
@Override
public void acceptSearchMatch(SearchMatch match) {
if ((match.getAccuracy() != SearchMatch.A_ACCURATE)) {
return;
}
if (match.isInsideDocComment()) {
return;
}
if (match.getElement() != null && match.getElement() instanceof IModelElement) {
IModelElement member = (IModelElement) match.getElement();
ISourceModule module = (ISourceModule) member.getAncestor(IModelElement.SOURCE_MODULE);
SimpleReference ref = new SimpleReference(match.getOffset(), match.getOffset()
+ match.getLength(), "");
try {
IModelElement[] e = module.codeSelect(match.getOffset(), 1);
for (int j = 0; j < e.length; ++j) {
if (e[j].equals(parent)) {
elements.put(ref, member);
}
}
} catch (ModelException e) {
e.printStackTrace();
}
}
}
};
SearchPattern pattern = SearchPattern.createPattern(element.getElementName(),
IDLTKSearchConstants.METHOD, IDLTKSearchConstants.REFERENCES,
GENERICS_AGNOSTIC_MATCH_RULE, scope.getLanguageToolkit());
try {
searchEngine.search(pattern,
new SearchParticipant[] { SearchEngine.getDefaultSearchParticipant() }, scope,
requestor, monitor);
} catch (CoreException e) {
if (DLTKCore.DEBUG) {
e.printStackTrace();
}
}
return elements;
}
}