blob: 8b5d50a799f7030137bb8d833fda498d22869769 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jsp.copied_from_jdtcore;
import org.eclipse.jdt.core.compiler.CharOperation;
import org.eclipse.jdt.core.compiler.IProblem;
import org.eclipse.jdt.internal.compiler.ISourceElementRequestor;
import org.eclipse.jdt.internal.core.index.IDocument;
import org.eclipse.jdt.internal.core.search.indexing.IIndexConstants;
/**
* This class is used by the JavaParserIndexer. When parsing the java file, the requestor
* recognises the java elements (methods, fields, ...) and add them to an index.
*/
public class SourceIndexerRequestor implements ISourceElementRequestor, IIndexConstants {
SourceIndexer fIndexer;
IDocument fDocument;
char[] packageName;
char[][] enclosingTypeNames = new char[5][];
int depth = 0;
int methodDepth = 0;
public SourceIndexerRequestor(SourceIndexer indexer, IDocument document) {
super();
fIndexer= indexer;
fDocument= document;
}
/**
* acceptConstructorReference method comment.
*/
public void acceptConstructorReference(char[] typeName, int argCount, int sourcePosition) {
this.fIndexer.addConstructorReference(typeName, argCount);
int lastDot = CharOperation.lastIndexOf('.', typeName);
if (lastDot != -1) {
char[][] qualification = CharOperation.splitOn('.', CharOperation.subarray(typeName, 0, lastDot));
for (int i = 0, length = qualification.length; i < length; i++) {
fIndexer.addNameReference(qualification[i]);
}
}
}
/**
* acceptFieldReference method comment.
*/
public void acceptFieldReference(char[] fieldName, int sourcePosition) {
fIndexer.addFieldReference(fieldName);
}
/**
* acceptImport method comment.
*/
public void acceptImport(int declarationStart, int declarationEnd, char[] name, boolean onDemand, int modifiers) {
char[][] qualification = CharOperation.splitOn('.', CharOperation.subarray(name, 0, CharOperation.lastIndexOf('.', name)));
for (int i = 0, length = qualification.length; i < length; i++) {
fIndexer.addNameReference(qualification[i]);
}
}
/**
* acceptLineSeparatorPositions method comment.
*/
public void acceptLineSeparatorPositions(int[] positions) {
// empty implementation
}
/**
* acceptMethodReference method comment.
*/
public void acceptMethodReference(char[] methodName, int argCount, int sourcePosition) {
fIndexer.addMethodReference(methodName, argCount);
}
/**
* acceptPackage method comment.
*/
public void acceptPackage(int declarationStart, int declarationEnd, char[] name) {
this.packageName = name;
}
/**
* acceptProblem method comment.
*/
public void acceptProblem(IProblem problem) {
// empty implementation
}
/**
* acceptTypeReference method comment.
*/
public void acceptTypeReference(char[][] typeName, int sourceStart, int sourceEnd) {
int length = typeName.length;
for (int i = 0; i < length - 1; i++)
acceptUnknownReference(typeName[i], 0); // ?
acceptTypeReference(typeName[length - 1], 0);
}
/**
* acceptTypeReference method comment.
*/
public void acceptTypeReference(char[] simpleTypeName, int sourcePosition) {
fIndexer.addTypeReference(simpleTypeName);
}
/**
* acceptUnknownReference method comment.
*/
public void acceptUnknownReference(char[][] name, int sourceStart, int sourceEnd) {
for (int i = 0; i < name.length; i++) {
acceptUnknownReference(name[i], 0);
}
}
/**
* acceptUnknownReference method comment.
*/
public void acceptUnknownReference(char[] name, int sourcePosition) {
fIndexer.addNameReference(name);
}
/*
* Rebuild the proper qualification for the current source type:
*
* java.lang.Object ---> null
* java.util.Hashtable$Entry --> [Hashtable]
* x.y.A$B$C --> [A, B]
*/
public char[][] enclosingTypeNames(){
if (depth == 0) return null;
char[][] qualification = new char[this.depth][];
System.arraycopy(this.enclosingTypeNames, 0, qualification, 0, this.depth);
return qualification;
}
/**
* enterClass method comment.
*/
public void enterClass(int declarationStart, int modifiers, char[] name, int nameSourceStart, int nameSourceEnd, char[] superclass, char[][] superinterfaces) {
// eliminate possible qualifications, given they need to be fully resolved again
if (superclass != null){
superclass = CharOperation.lastSegment(superclass, '.');
// add implicit constructor reference to default constructor
fIndexer.addConstructorReference(superclass, 0);
}
if (superinterfaces != null){
for (int i = 0, length = superinterfaces.length; i < length; i++){
superinterfaces[i] = CharOperation.lastSegment(superinterfaces[i], '.');
}
}
char[][] typeNames;
if (this.methodDepth > 0) {
typeNames = ONE_ZERO_CHAR;
} else {
typeNames = this.enclosingTypeNames();
}
fIndexer.addClassDeclaration(modifiers, packageName, name, typeNames, superclass, superinterfaces);
this.pushTypeName(name);
}
/**
* enterCompilationUnit method comment.
*/
public void enterCompilationUnit() {
// empty implementation
}
/**
* enterConstructor method comment.
*/
public void enterConstructor(int declarationStart, int modifiers, char[] name, int nameSourceStart, int nameSourceEnd, char[][] parameterTypes, char[][] parameterNames, char[][] exceptionTypes) {
fIndexer.addConstructorDeclaration(name, parameterTypes, exceptionTypes);
this.methodDepth++;
}
/**
* enterField method comment.
*/
public void enterField(int declarationStart, int modifiers, char[] type, char[] name, int nameSourceStart, int nameSourceEnd) {
fIndexer.addFieldDeclaration(type, name);
this.methodDepth++;
}
/**
* enterInitializer method comment.
*/
public void enterInitializer(int declarationSourceStart, int modifiers) {
this.methodDepth++;
}
/**
* enterInterface method comment.
*/
public void enterInterface(int declarationStart, int modifiers, char[] name, int nameSourceStart, int nameSourceEnd, char[][] superinterfaces) {
// eliminate possible qualifications, given they need to be fully resolved again
if (superinterfaces != null){
for (int i = 0, length = superinterfaces.length; i < length; i++){
superinterfaces[i] = CharOperation.lastSegment(superinterfaces[i], '.');
}
}
char[][] typeNames;
if (this.methodDepth > 0) {
typeNames = ONE_ZERO_CHAR;
} else {
typeNames = this.enclosingTypeNames();
}
fIndexer.addInterfaceDeclaration(modifiers, packageName, name, typeNames, superinterfaces);
this.pushTypeName(name);
}
/**
* enterMethod method comment.
*/
public void enterMethod(int declarationStart, int modifiers, char[] returnType, char[] name, int nameSourceStart, int nameSourceEnd, char[][] parameterTypes, char[][] parameterNames, char[][] exceptionTypes) {
fIndexer.addMethodDeclaration(name, parameterTypes, returnType, exceptionTypes);
this.methodDepth++;
}
/**
* exitClass method comment.
*/
public void exitClass(int declarationEnd) {
popTypeName();
}
/**
* exitCompilationUnit method comment.
*/
public void exitCompilationUnit(int declarationEnd) {
// empty implementation
}
/**
* exitConstructor method comment.
*/
public void exitConstructor(int declarationEnd) {
this.methodDepth--;
}
/**
* exitField method comment.
*/
public void exitField(int initializationStart, int declarationEnd, int declarationSourceEnd) {
this.methodDepth--;
}
/**
* exitInitializer method comment.
*/
public void exitInitializer(int declarationEnd) {
this.methodDepth--;
}
/**
* exitInterface method comment.
*/
public void exitInterface(int declarationEnd) {
popTypeName();
}
/**
* exitMethod method comment.
*/
public void exitMethod(int declarationEnd) {
this.methodDepth--;
}
public void popTypeName(){
try {
enclosingTypeNames[--depth] = null;
} catch (ArrayIndexOutOfBoundsException e) {
e.printStackTrace();
}
}
public void pushTypeName(char[] typeName){
if (depth == enclosingTypeNames.length){
System.arraycopy(enclosingTypeNames, 0, enclosingTypeNames = new char[depth*2][], 0, depth);
}
enclosingTypeNames[depth++] = typeName;
}
}