blob: 0f38605ef687557308ae9337b4d51e79a52724d1 [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.netbeans.modules.php.editor.verification;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.netbeans.modules.csl.api.Hint;
import org.netbeans.modules.csl.api.HintFix;
import org.netbeans.modules.csl.api.OffsetRange;
import org.netbeans.modules.csl.spi.support.CancelSupport;
import org.netbeans.modules.php.editor.api.QualifiedName;
import org.netbeans.modules.php.editor.model.FileScope;
import org.netbeans.modules.php.editor.model.ModelUtils;
import org.netbeans.modules.php.editor.model.TypeScope;
import org.netbeans.modules.php.editor.parser.PHPParseResult;
import org.netbeans.modules.php.editor.parser.astnodes.IfStatement;
import org.netbeans.modules.php.editor.parser.astnodes.Statement;
import org.netbeans.modules.php.editor.parser.astnodes.SwitchCase;
import org.netbeans.modules.php.editor.parser.astnodes.visitors.DefaultVisitor;
import org.openide.filesystems.FileObject;
import org.openide.util.NbBundle.Messages;
/**
* @author Radek Matous, Ondrej Brejla
*/
public class TypeRedeclarationHintError extends HintErrorRule {
private Set<Statement> conditionStatements = Collections.emptySet();
private FileObject fileObject;
private List<Hint> hints;
private Set<String> typeNames;
private Collection<? extends TypeScope> declaredTypes;
@Override
@Messages({
"# {0} - Type name",
"TypeRedeclarationDesc=Type \"{0}\" has been already declared"
})
public void invoke(PHPRuleContext context, List<Hint> hints) {
PHPParseResult phpParseResult = (PHPParseResult) context.parserResult;
if (phpParseResult.getProgram() == null) {
return;
}
FileScope fileScope = context.fileScope;
fileObject = phpParseResult.getSnapshot().getSource().getFileObject();
if (fileScope != null && fileObject != null) {
this.hints = hints;
if (CancelSupport.getDefault().isCancelled()) {
return;
}
CheckVisitor checkVisitor = new CheckVisitor();
phpParseResult.getProgram().accept(checkVisitor);
conditionStatements = checkVisitor.getConditionStatements();
declaredTypes = ModelUtils.getDeclaredTypes(fileScope);
typeNames = new HashSet<>();
for (TypeScope typeScope : declaredTypes) {
if (CancelSupport.getDefault().isCancelled()) {
return;
}
if (!isInConditionStatament(typeScope)) {
checkDeclaredTypeScope(typeScope);
}
}
}
}
private static final class CheckVisitor extends DefaultVisitor {
private final Set<Statement> conditionStatements = new HashSet<>();
public Set<Statement> getConditionStatements() {
return new HashSet<>(conditionStatements);
}
@Override
public void visit(IfStatement node) {
if (CancelSupport.getDefault().isCancelled()) {
return;
}
addStatement(node.getTrueStatement());
addStatement(node.getFalseStatement());
}
@Override
public void visit(SwitchCase node) {
if (CancelSupport.getDefault().isCancelled()) {
return;
}
addStatement(node);
}
private void addStatement(Statement statement) {
if (statement != null) {
conditionStatements.add(statement);
}
}
}
private boolean isInConditionStatament(TypeScope typeScope) {
boolean result = false;
for (Statement statement : conditionStatements) {
OffsetRange statementOffsetRange = new OffsetRange(statement.getStartOffset(), statement.getEndOffset());
if (statementOffsetRange.containsInclusive(typeScope.getOffset())) {
result = true;
break;
}
}
return result;
}
private void checkDeclaredTypeScope(TypeScope typeScope) {
final QualifiedName qualifiedName = typeScope.getNamespaceName().append(typeScope.getName()).toFullyQualified();
final String name = qualifiedName.toString();
if (!typeNames.contains(name)) {
typeNames.add(name);
List<? extends TypeScope> instances = ModelUtils.filter(declaredTypes, qualifiedName);
if (instances.size() > 1) {
TypeScope firstDeclaredInstance = null;
for (TypeScope typeInstance : instances) {
if (firstDeclaredInstance == null) {
firstDeclaredInstance = typeInstance;
} else if (firstDeclaredInstance.getOffset() > typeInstance.getOffset()) {
firstDeclaredInstance = typeInstance;
}
}
for (TypeScope typeInstance : instances) {
if (typeInstance != firstDeclaredInstance) {
assert firstDeclaredInstance != null;
hints.add(new Hint(this, Bundle.TypeRedeclarationDesc(firstDeclaredInstance.getName()),
fileObject,
typeInstance.getNameRange(), Collections.<HintFix>emptyList(), 500));
}
}
}
}
}
@Override
@Messages("TypeRedeclarationRuleDispName=Type Redeclaration")
public String getDisplayName() {
return Bundle.TypeRedeclarationRuleDispName();
}
}