JavaDomUtils.java
/*
* Copyright 2006-2026 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.mybatis.generator.api.dom.java;
import java.util.stream.Collectors;
public class JavaDomUtils {
private JavaDomUtils() {
}
/**
* Calculates type names for writing into generated Java. We try to use short names wherever possible. If the type
* requires an import, but has not been imported, then we need to use the fully qualified type name.
*
* @param compilationUnit
* the compilation unit being written
* @param fqjt
* the type in question
*
* @return the full type name
*/
public static String calculateTypeName(CompilationUnit compilationUnit, FullyQualifiedJavaType fqjt) {
if (fqjt.isArray()) {
// if this is an array, then calculate the name of the base (non-array) type
// then add the array indicators back in
String fqn = fqjt.getFullyQualifiedName();
String typeName = calculateTypeName(compilationUnit,
new FullyQualifiedJavaType(fqn.substring(0, fqn.indexOf('['))));
return typeName + fqn.substring(fqn.indexOf('['));
}
if (!fqjt.getTypeArguments().isEmpty()) {
return calculateParameterizedTypeName(compilationUnit, fqjt);
}
if (typeDoesNotRequireImport(fqjt)
|| typeIsInSamePackage(compilationUnit, fqjt)
|| typeIsAlreadyImported(compilationUnit, fqjt)) {
return fqjt.getShortName();
} else {
return fqjt.getFullyQualifiedName();
}
}
private static String calculateParameterizedTypeName(CompilationUnit compilationUnit,
FullyQualifiedJavaType fqjt) {
String baseTypeName = calculateTypeName(compilationUnit,
new FullyQualifiedJavaType(fqjt.getFullyQualifiedNameWithoutTypeParameters()));
return fqjt.getTypeArguments().stream()
.map(t -> calculateTypeName(compilationUnit, t))
.collect(Collectors.joining(", ", baseTypeName + "<", ">")); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
private static boolean typeDoesNotRequireImport(FullyQualifiedJavaType fullyQualifiedJavaType) {
return fullyQualifiedJavaType.isPrimitive()
|| !fullyQualifiedJavaType.isExplicitlyImported();
}
private static boolean typeIsInSamePackage(CompilationUnit compilationUnit,
FullyQualifiedJavaType fullyQualifiedJavaType) {
return fullyQualifiedJavaType
.getPackageName()
.equals(compilationUnit.getType().getPackageName());
}
private static boolean typeIsAlreadyImported(CompilationUnit compilationUnit,
FullyQualifiedJavaType fullyQualifiedJavaType) {
String name = fullyQualifiedJavaType.getImportName();
return compilationUnit.getImportedTypes().stream().anyMatch(e -> e.getImportList().contains(name));
}
}