
com.liferay.source.formatter.checkstyle.check.ThreadNameCheck 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.check;
import com.liferay.source.formatter.check.util.SourceUtil;
import com.puppycrawl.tools.checkstyle.api.DetailAST;
import com.puppycrawl.tools.checkstyle.api.TokenTypes;
import java.util.List;
import java.util.Objects;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @author Hugo Huijser
*/
public class ThreadNameCheck extends BaseCheck {
@Override
public int[] getDefaultTokens() {
return new int[] {TokenTypes.LITERAL_NEW};
}
@Override
protected void doVisitToken(DetailAST detailAST) {
DetailAST firstChildDetailAST = detailAST.getFirstChild();
if ((firstChildDetailAST == null) ||
(firstChildDetailAST.getType() != TokenTypes.IDENT) ||
!Objects.equals(firstChildDetailAST.getText(), "Thread")) {
return;
}
DetailAST elistDetailAST = detailAST.findFirstToken(TokenTypes.ELIST);
if (elistDetailAST == null) {
return;
}
List exprDetailASTList = getAllChildTokens(
elistDetailAST, false, TokenTypes.EXPR);
for (DetailAST exprDetailAST : exprDetailASTList) {
firstChildDetailAST = exprDetailAST.getFirstChild();
if (firstChildDetailAST.getType() != TokenTypes.STRING_LITERAL) {
continue;
}
String name = firstChildDetailAST.getText();
name = name.substring(1, name.length() - 1);
Matcher matcher = _camelCasePattern.matcher(name);
String expectedName = SourceUtil.getTitleCase(
matcher.replaceAll("$1 $2"), false);
if (!name.equals(expectedName)) {
log(firstChildDetailAST, _MSG_RENAME_THREAD, expectedName);
}
}
}
private static final String _MSG_RENAME_THREAD = "thread.rename";
private static final Pattern _camelCasePattern = Pattern.compile(
"([a-z])([A-Z])");
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy