All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.liferay.source.formatter.checks.util.JavaSourceUtil 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.checks.util;
import com.liferay.petra.string.CharPool;
import com.liferay.petra.string.StringBundler;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.tools.ToolsUtil;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @author Hugo Huijser
*/
public class JavaSourceUtil extends SourceUtil {
public static String getClassName(String fileName) {
int x = fileName.lastIndexOf(CharPool.SLASH);
int y = fileName.lastIndexOf(CharPool.PERIOD);
return fileName.substring(x + 1, y);
}
public static File getJavaFile(
String fullyQualifiedName, String rootDirName,
Map bundleSymbolicNamesMap) {
if (fullyQualifiedName.contains(".kernel.")) {
File file = _getJavaFile(
fullyQualifiedName, rootDirName, "portal-kernel/src/",
"portal-test/src/", "portal-impl/test/integration/",
"portal-impl/test/unit/");
if (file != null) {
return file;
}
}
if (fullyQualifiedName.startsWith("com.liferay.portal.") ||
fullyQualifiedName.startsWith("com.liferay.portlet.")) {
File file = _getJavaFile(
fullyQualifiedName, rootDirName, "portal-impl/src/",
"portal-test/src/", "portal-test-integration/src/",
"portal-impl/test/integration/", "portal-impl/test/unit/");
if (file != null) {
return file;
}
}
if (fullyQualifiedName.contains(".taglib.")) {
File file = _getJavaFile(
fullyQualifiedName, rootDirName, "util-taglib/src/");
if (file != null) {
return file;
}
}
try {
File file = _getModuleJavaFile(
fullyQualifiedName, bundleSymbolicNamesMap);
if (file != null) {
return file;
}
}
catch (Exception exception) {
if (_log.isDebugEnabled()) {
_log.debug(exception, exception);
}
}
return null;
}
public static String getPackageName(String content) {
Matcher matcher = _packagePattern.matcher(content);
if (matcher.find()) {
return matcher.group(2);
}
return StringPool.BLANK;
}
public static List getParameterList(String methodCall) {
String parameters = null;
int x = -1;
while (true) {
x = methodCall.indexOf(StringPool.CLOSE_PARENTHESIS, x + 1);
parameters = methodCall.substring(0, x + 1);
if ((ToolsUtil.getLevel(parameters, "(", ")") == 0) &&
(ToolsUtil.getLevel(parameters, "{", "}") == 0)) {
break;
}
}
x = parameters.indexOf(StringPool.OPEN_PARENTHESIS);
parameters = parameters.substring(x + 1, parameters.length() - 1);
return splitParameters(parameters);
}
public static boolean isValidJavaParameter(String javaParameter) {
if (javaParameter.contains(" implements ") ||
javaParameter.contains(" throws ")) {
return false;
}
if ((ToolsUtil.getLevel(javaParameter, "(", ")") == 0) &&
(ToolsUtil.getLevel(javaParameter, "<", ">") == 0) &&
(ToolsUtil.getLevel(javaParameter, "{", "}") == 0)) {
return true;
}
return false;
}
public static List splitParameters(String parameters) {
List parametersList = new ArrayList<>();
parameters = StringUtil.trim(parameters);
if (parameters.equals(StringPool.BLANK)) {
return parametersList;
}
int x = -1;
while (true) {
x = parameters.indexOf(StringPool.COMMA, x + 1);
if (x == -1) {
parametersList.add(StringUtil.trim(parameters));
return parametersList;
}
if (ToolsUtil.isInsideQuotes(parameters, x)) {
continue;
}
String linePart = parameters.substring(0, x);
if ((ToolsUtil.getLevel(linePart, "(", ")") == 0) &&
(ToolsUtil.getLevel(linePart, "{", "}") == 0)) {
parametersList.add(StringUtil.trim(linePart));
parameters = parameters.substring(x + 1);
x = -1;
}
}
}
private static File _getJavaFile(
String fullyQualifiedName, String rootDirName, String... dirNames) {
if (Validator.isNull(rootDirName)) {
return null;
}
for (String dirName : dirNames) {
StringBundler sb = new StringBundler(5);
sb.append(rootDirName);
sb.append("/");
sb.append(dirName);
sb.append(StringUtil.replace(fullyQualifiedName, '.', '/'));
sb.append(".java");
File file = new File(sb.toString());
if (file.exists()) {
return file;
}
}
return null;
}
private static File _getModuleJavaFile(
String fullyQualifiedName, Map bundleSymbolicNamesMap) {
for (Map.Entry entry :
bundleSymbolicNamesMap.entrySet()) {
String bundleSymbolicName = entry.getKey();
String modifiedBundleSymbolicName = bundleSymbolicName.replaceAll(
"\\.(api|impl|service|test)$", StringPool.BLANK);
if (!fullyQualifiedName.startsWith(modifiedBundleSymbolicName)) {
continue;
}
StringBundler sb = new StringBundler(4);
sb.append(entry.getValue());
sb.append("/src/main/java/");
sb.append(StringUtil.replace(fullyQualifiedName, '.', '/'));
sb.append(".java");
File file = new File(sb.toString());
if (file.exists()) {
return file;
}
sb = new StringBundler(4);
sb.append(entry.getValue());
sb.append("/src/testIntegration/java/");
sb.append(StringUtil.replace(fullyQualifiedName, '.', '/'));
sb.append(".java");
file = new File(sb.toString());
if (file.exists()) {
return file;
}
}
return null;
}
private static final Log _log = LogFactoryUtil.getLog(JavaSourceUtil.class);
private static final Pattern _packagePattern = Pattern.compile(
"(\n|^)\\s*package (.*);\n");
}