com.liferay.source.formatter.checkstyle.check.BaseMessageCheck Maven / Gradle / Ivy
The newest version!
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.source.formatter.checkstyle.check;
import com.liferay.petra.string.StringBundler;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.util.Validator;
import com.puppycrawl.tools.checkstyle.api.DetailAST;
import com.puppycrawl.tools.checkstyle.api.TokenTypes;
import java.util.List;
/**
* @author Hugo Huijser
*/
public abstract class BaseMessageCheck extends BaseCheck {
protected void checkMessage(String literalStringValue, int lineNo) {
if (Validator.isNull(literalStringValue) ||
literalStringValue.endsWith(StringPool.TRIPLE_PERIOD)) {
return;
}
String[] parts = literalStringValue.split("\\S\\. [A-Z0-9]");
if ((parts.length == 1) ^
!literalStringValue.endsWith(StringPool.PERIOD)) {
log(lineNo, _MSG_INCORRECT_MESSAGE);
}
}
protected String getLiteralStringValue(DetailAST exprDetailAST) {
DetailAST firstChildDetailAST = exprDetailAST.getFirstChild();
if (firstChildDetailAST.getType() == TokenTypes.STRING_LITERAL) {
String s = firstChildDetailAST.getText();
return s.substring(1, s.length() - 1);
}
StringBundler sb = new StringBundler();
if (firstChildDetailAST.getType() == TokenTypes.PLUS) {
DetailAST childDetailAST = firstChildDetailAST.getFirstChild();
while (true) {
if (childDetailAST.getType() != TokenTypes.STRING_LITERAL) {
return null;
}
String s = childDetailAST.getText();
sb.append(s.substring(1, s.length() - 1));
childDetailAST = childDetailAST.getNextSibling();
if (childDetailAST == null) {
return sb.toString();
}
}
}
if (firstChildDetailAST.getType() != TokenTypes.METHOD_CALL) {
return null;
}
String methodName = getMethodName(firstChildDetailAST);
if (!methodName.equals("concat")) {
return null;
}
DetailAST elistDetailAST = firstChildDetailAST.findFirstToken(
TokenTypes.ELIST);
List exprDetailASTList = getAllChildTokens(
elistDetailAST, false, TokenTypes.EXPR);
for (DetailAST curExprDetailAST : exprDetailASTList) {
firstChildDetailAST = curExprDetailAST.getFirstChild();
if (firstChildDetailAST.getType() != TokenTypes.STRING_LITERAL) {
return null;
}
String s = firstChildDetailAST.getText();
sb.append(s.substring(1, s.length() - 1));
}
return sb.toString();
}
private static final String _MSG_INCORRECT_MESSAGE = "message.incorrect";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy