com.liferay.source.formatter.checkstyle.checks.PlusStatementCheck Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.source.formatter.checkstyle.checks;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.source.formatter.checkstyle.util.DetailASTUtil;
import com.puppycrawl.tools.checkstyle.api.DetailAST;
import com.puppycrawl.tools.checkstyle.api.TokenTypes;
import com.puppycrawl.tools.checkstyle.utils.CommonUtils;
import java.util.List;
/**
* @author Hugo Huijser
*/
public class PlusStatementCheck extends StringConcatenationCheck {
@Override
public int[] getDefaultTokens() {
return new int[] {TokenTypes.PLUS};
}
@Override
protected void doVisitToken(DetailAST detailAST) {
_checkPlusOperator(detailAST);
}
private void _checkPlusOperator(DetailAST detailAST) {
_checkTabbing(detailAST);
if (detailAST.getChildCount() != 2) {
return;
}
DetailAST firstChild = detailAST.getFirstChild();
String literalString1 = _getLiteralString(firstChild);
if (literalString1 == null) {
return;
}
DetailAST lastChild = detailAST.getLastChild();
String literalString2 = _getLiteralString(lastChild);
if (literalString2 == null) {
return;
}
if (firstChild.getLineNo() == lastChild.getLineNo()) {
log(
firstChild.getLineNo(), MSG_COMBINE_LITERAL_STRINGS,
literalString1, literalString2);
return;
}
if (_isRegexPattern(detailAST)) {
return;
}
checkLiteralStringStartAndEndCharacter(
literalString1, literalString2, detailAST.getLineNo());
String line1 = getLine(lastChild.getLineNo() - 2);
String line2 = getLine(lastChild.getLineNo() - 1);
if (_getLeadingTabCount(line1) == _getLeadingTabCount(line2)) {
return;
}
int lineLength1 = CommonUtils.lengthExpandedTabs(
line1, line1.length(), getTabWidth());
String trimmedLine2 = StringUtil.trim(line2);
if ((lineLength1 + trimmedLine2.length() - 4) <= maxLineLength) {
log(
lastChild.getLineNo(), MSG_COMBINE_LITERAL_STRINGS,
literalString1, literalString2);
return;
}
DetailAST parentAST = detailAST.getParent();
if ((parentAST.getType() == TokenTypes.PLUS) &&
((lineLength1 + literalString2.length()) <= maxLineLength)) {
log(
detailAST.getLineNo(), MSG_COMBINE_LITERAL_STRINGS,
literalString1, literalString2);
return;
}
int pos = getStringBreakPos(
literalString1, literalString2, maxLineLength - lineLength1);
if (pos != -1) {
log(
lastChild.getLineNo(), MSG_MOVE_LITERAL_STRING,
literalString2.substring(0, pos + 1));
}
}
private void _checkTabbing(DetailAST detailAST) {
DetailAST afterPlusAST = detailAST.getLastChild();
if (afterPlusAST.getType() == TokenTypes.RPAREN) {
while (afterPlusAST.getType() != TokenTypes.LPAREN) {
afterPlusAST = afterPlusAST.getPreviousSibling();
}
}
int afterPlusLineNo = DetailASTUtil.getStartLine(afterPlusAST);
if (afterPlusLineNo == detailAST.getLineNo()) {
return;
}
String line1 = getLine(detailAST.getLineNo() - 1);
String line2 = getLine(afterPlusLineNo - 1);
int tabCount = _getLeadingTabCount(line1);
if ((tabCount + 1) != _getLeadingTabCount(line2)) {
log(afterPlusLineNo, _MSG_INCORRECT_TABBING, tabCount + 1);
}
}
private int _getLeadingTabCount(String line) {
int leadingTabCount = 0;
while (line.startsWith(StringPool.TAB)) {
line = line.substring(1);
leadingTabCount++;
}
return leadingTabCount;
}
private String _getLiteralString(DetailAST detailAST) {
String literalString = null;
if (detailAST.getType() == TokenTypes.STRING_LITERAL) {
literalString = detailAST.getText();
}
else if ((detailAST.getType() == TokenTypes.PLUS) &&
(detailAST.getChildCount() == 2)) {
DetailAST lastChild = detailAST.getLastChild();
if (lastChild.getType() == TokenTypes.STRING_LITERAL) {
literalString = lastChild.getText();
}
}
if (literalString != null) {
return literalString.substring(1, literalString.length() - 1);
}
return null;
}
private boolean _isRegexPattern(DetailAST detailAST) {
DetailAST parentAST = detailAST.getParent();
while (parentAST != null) {
if (parentAST.getType() != TokenTypes.METHOD_CALL) {
parentAST = parentAST.getParent();
continue;
}
DetailAST firstChild = parentAST.getFirstChild();
if (firstChild.getType() != TokenTypes.DOT) {
return false;
}
List nameASTList = DetailASTUtil.getAllChildTokens(
firstChild, false, TokenTypes.IDENT);
if (nameASTList.size() != 2) {
return false;
}
DetailAST classNameAST = nameASTList.get(0);
DetailAST methodNameAST = nameASTList.get(1);
String methodCallClassName = classNameAST.getText();
String methodCallMethodName = methodNameAST.getText();
if (methodCallMethodName.equals("matches") ||
(methodCallClassName.equals("Pattern") &&
methodCallMethodName.equals("compile"))) {
return true;
}
return false;
}
return false;
}
private static final String _MSG_INCORRECT_TABBING = "tabbing.incorrect";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy