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.GradleExportedPackageDependenciesCheck 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;
import com.liferay.petra.string.StringBundler;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.util.ArrayUtil;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.source.formatter.checks.util.BNDSourceUtil;
import com.liferay.source.formatter.util.FileUtil;
import java.io.File;
import java.io.IOException;
import java.nio.file.FileVisitOption;
import java.nio.file.FileVisitResult;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.SimpleFileVisitor;
import java.nio.file.attribute.BasicFileAttributes;
import java.util.ArrayList;
import java.util.Collections;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @author Peter Shin
*/
public class GradleExportedPackageDependenciesCheck extends BaseFileCheck {
@Override
public boolean isLiferaySourceCheck() {
return true;
}
@Override
protected String doProcess(
String fileName, String absolutePath, String content)
throws IOException {
if (!absolutePath.contains("/modules/apps/")) {
return content;
}
int x = absolutePath.lastIndexOf(StringPool.SLASH);
int y = absolutePath.lastIndexOf(StringPool.SLASH, x - 1);
String moduleName = absolutePath.substring(y + 1, x);
if (!moduleName.contains("test")) {
for (String dependencies : _getDependenciesBlocks(content)) {
content = _formatDependencies(content, dependencies);
}
}
return content;
}
private String _formatDependencies(String content, String dependencies)
throws IOException {
int x = dependencies.indexOf("\n");
int y = dependencies.lastIndexOf("\n");
if (x == y) {
return content;
}
dependencies = dependencies.substring(x, y + 1);
StringBundler sb = new StringBundler();
for (String line : StringUtil.splitLines(dependencies)) {
String dependencyName = _getDependencyName(line);
if (Objects.isNull(dependencyName) ||
line.matches(".*\\s+testCompile\\s+.*")) {
sb.append(line);
sb.append("\n");
}
else {
if (_isValidBundleSymbolicName(
dependencyName, _getDependencyVersion(line))) {
sb.append(line);
sb.append("\n");
}
}
}
return StringUtil.replace(
content, StringUtil.trim(dependencies),
StringUtil.trim(sb.toString()));
}
private List _getDependenciesBlocks(String content) {
List dependenciesBlocks = new ArrayList<>();
Matcher matcher = _dependenciesPattern.matcher(content);
while (matcher.find()) {
int y = matcher.start();
while (true) {
y = content.indexOf("}", y + 1);
if (y == -1) {
return dependenciesBlocks;
}
String dependencies = content.substring(
matcher.start(2), y + 1);
int level = getLevel(dependencies, "{", "}");
if (level == 0) {
if (!dependencies.contains("}\n")) {
dependenciesBlocks.add(dependencies);
}
break;
}
}
}
return dependenciesBlocks;
}
private String _getDependencyName(String dependency) {
Matcher matcher = _dependencyNamePattern.matcher(dependency);
if (!matcher.find()) {
return StringPool.BLANK;
}
return matcher.group(1);
}
private String _getDependencyVersion(String dependency) {
Matcher matcher = _dependencyVersionPattern.matcher(dependency);
if (!matcher.find()) {
return StringPool.BLANK;
}
return matcher.group(1);
}
private synchronized Map
_getEmptyExportPackageBundleSymbolicMap()
throws IOException {
if (_emptyExportPackageBundleSymbolicMap != null) {
return _emptyExportPackageBundleSymbolicMap;
}
File portalDir = getPortalDir();
if (portalDir == null) {
_emptyExportPackageBundleSymbolicMap = Collections.emptyMap();
return _emptyExportPackageBundleSymbolicMap;
}
final List files = new ArrayList<>();
Files.walkFileTree(
portalDir.toPath(), EnumSet.noneOf(FileVisitOption.class), 15,
new SimpleFileVisitor() {
@Override
public FileVisitResult preVisitDirectory(
Path dirPath, BasicFileAttributes basicFileAttributes) {
String dirName = String.valueOf(dirPath.getFileName());
if (ArrayUtil.contains(_SKIP_DIR_NAMES, dirName)) {
return FileVisitResult.SKIP_SUBTREE;
}
Path path = dirPath.resolve("bnd.bnd");
if (Files.exists(path)) {
files.add(path.toFile());
return FileVisitResult.SKIP_SUBTREE;
}
return FileVisitResult.CONTINUE;
}
});
_emptyExportPackageBundleSymbolicMap = new HashMap<>();
for (File file : files) {
String content = FileUtil.read(file);
if (content.contains("Export-Package:")) {
continue;
}
String bundleSymbolicName = BNDSourceUtil.getDefinitionValue(
content, "Bundle-SymbolicName");
if ((bundleSymbolicName != null) &&
bundleSymbolicName.startsWith("com.liferay.") &&
!bundleSymbolicName.equals("com.liferay.ant.bnd")) {
String bundleVersion = BNDSourceUtil.getDefinitionValue(
content, "Bundle-Version");
_emptyExportPackageBundleSymbolicMap.put(
bundleSymbolicName, bundleVersion);
}
}
return _emptyExportPackageBundleSymbolicMap;
}
private boolean _isValidBundleSymbolicName(
String dependencyName, String dependencyVersion)
throws IOException {
Map emptyExportPackageBundleSymbolicMap =
_getEmptyExportPackageBundleSymbolicMap();
Set emptyExportPackageBundleSymbolicNames =
emptyExportPackageBundleSymbolicMap.keySet();
if (!dependencyName.startsWith("com.liferay.") ||
!emptyExportPackageBundleSymbolicNames.contains(dependencyName) ||
!dependencyVersion.equals(
emptyExportPackageBundleSymbolicMap.get(dependencyName))) {
return true;
}
return false;
}
private static final String[] _SKIP_DIR_NAMES = {
".git", ".gradle", ".idea", ".m2", ".settings", "bin", "build",
"classes", "dependencies", "node_modules", "node_modules_cache", "sql",
"src", "test", "test-classes", "test-coverage", "test-results", "tmp"
};
private static final Pattern _dependenciesPattern = Pattern.compile(
"(\n|\\A)(\t*)dependencies \\{\n");
private static final Pattern _dependencyNamePattern = Pattern.compile(
".*, name: \"([^\"]*)\".*");
private static final Pattern _dependencyVersionPattern = Pattern.compile(
".*, version: \"([^\"]*)\".*");
private Map _emptyExportPackageBundleSymbolicMap;
}