blob: 53830ec9444ead8436a8d295076695c1e3ad623e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jsp;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.indexsearch.*;
public class JspMatchLocatorParser extends AbstractJspParser {
IFile fResource;
String fMatchString;
ISearchResultCollector fCollector;
boolean fInUseBean;
String fId;
String fClass;
public JspMatchLocatorParser() {
super();
}
@Override
protected void startTag(boolean endTag, String name, int startName) {
fInUseBean= "jsp:useBean".equals(name); //$NON-NLS-1$
}
@Override
protected void tagAttribute(String attrName, String value, int startName, int startValue) {
if (fInUseBean && "class".equals(attrName) && fMatchString.equals(value)) { //$NON-NLS-1$
try {
fCollector.accept(fResource, startValue, value.length());
} catch (CoreException e) {
e.printStackTrace();
}
}
}
public void match(IFile resource, String matchString, ISearchResultCollector collector) {
fResource= resource;
fMatchString= matchString;
fCollector= collector;
Reader reader= null;
try {
reader= new InputStreamReader(fResource.getContents());
} catch (CoreException e1) {
e1.printStackTrace();
}
try {
parse(reader);
} catch (IOException e2) {
e2.printStackTrace();
}
}
}