All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.ird.observe.toolkit.eugene.templates.DtoReferenceTransformer Maven / Gradle / Ivy

There is a newer version: 4.21
Show newest version
package fr.ird.observe.toolkit.eugene.templates;

/*
 * #%L
 * ObServe Toolkit :: Eugene Templates Extension
 * %%
 * Copyright (C) 2017 - 2019 IRD, Ultreia.io
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program 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 General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public
 * License along with this program.  If not, see
 * .
 * #L%
 */




import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import fr.ird.observe.binder.DtoReferenceBinder;
import fr.ird.observe.binder.data.DataDtoReferenceBinder;
import fr.ird.observe.binder.referential.ReferentialDtoReferenceBinder;
import fr.ird.observe.dto.IdDto;
import fr.ird.observe.dto.data.DataDto;
import fr.ird.observe.dto.reference.DataDtoReference;
import fr.ird.observe.dto.reference.DataDtoReferenceDefinition;
import fr.ird.observe.dto.reference.DtoReference;
import fr.ird.observe.dto.reference.DtoReferenceAware;
import fr.ird.observe.dto.reference.DtoReferenceDefinition;
import fr.ird.observe.dto.reference.ReferentialDtoReference;
import fr.ird.observe.dto.reference.ReferentialDtoReferenceAware;
import fr.ird.observe.dto.reference.ReferentialDtoReferenceDefinition;
import fr.ird.observe.dto.referential.ReferentialDto;
import fr.ird.observe.dto.referential.ReferentialLocale;
import fr.ird.observe.spi.initializer.DtoReferencesInitializerSupport;
import io.ultreia.java4all.bean.spi.GenerateJavaBeanDefinition;
import io.ultreia.java4all.i18n.spi.builder.I18nKeySet;
import org.apache.commons.lang3.StringUtils;
import org.nuiton.eugene.EugeneCoreTagValues;
import org.nuiton.eugene.TemplateConfiguration;
import org.nuiton.eugene.java.BeanTransformer;
import org.nuiton.eugene.java.BeanTransformerContext;
import org.nuiton.eugene.java.BeanTransformerTagValues;
import org.nuiton.eugene.java.EugeneJavaTagValues;
import org.nuiton.eugene.java.JavaGeneratorUtil;
import org.nuiton.eugene.java.ObjectModelTransformerToJava;
import org.nuiton.eugene.java.extension.ObjectModelAnnotation;
import org.nuiton.eugene.models.object.ObjectModel;
import org.nuiton.eugene.models.object.ObjectModelAttribute;
import org.nuiton.eugene.models.object.ObjectModelClass;
import org.nuiton.eugene.models.object.ObjectModelJavaModifier;
import org.nuiton.eugene.models.object.ObjectModelOperation;
import org.nuiton.eugene.models.object.ObjectModelPackage;
import org.nuiton.eugene.models.object.xml.ObjectModelAttributeImpl;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Arrays;
import java.util.Collection;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import java.util.TreeMap;
import java.util.function.Function;

/**
 * Generates a reference of a bean.
 * 

* For example: *

 *     GeneratedBoatReference
 *     BoatReference
 * 
* * @author Tony Chemit - [email protected] * @plexus.component role="org.nuiton.eugene.Template" role-hint="fr.ird.observe.toolkit.eugene.templates.DtoReferenceTransformer" * @since 1.04 */ public class DtoReferenceTransformer extends ObjectModelTransformerToJava { private final EugeneCoreTagValues coreTagValues; private final EugeneJavaTagValues javaTemplatesTagValues; private final BeanTransformerTagValues beanTagValues; private final ObserveTagValues observeTagValues; private BeanTransformerContext context; public DtoReferenceTransformer() { coreTagValues = new EugeneCoreTagValues(); javaTemplatesTagValues = new EugeneJavaTagValues(); beanTagValues = new BeanTransformerTagValues(); observeTagValues = new ObserveTagValues(); } protected static void generateMetaInfService(TemplateConfiguration configuration, String outputName, Class type) { Path outputDirectory = configuration.getProperty(TemplateConfiguration.PROP_OUTPUT_DIRECTORY, File.class).toPath(); Path file = outputDirectory.resolve("META-INF").resolve("services"); try { if (!Files.exists(file)) { Files.createDirectories(file); } Files.write(file.resolve(type.getName()), outputName.getBytes()); } catch (IOException e) { throw new IllegalStateException("Could not create file: " + file); } } static Map getBinderProperties(ImmutableList selectedClassesFqn, ObjectModelClass input, Set availableProperties, Function classMapping) { Collection attributes = new LinkedList<>(input.getAttributes()); attributes.addAll(input.getAllOtherAttributes()); Map properties = new TreeMap<>(); Map resultMap = new LinkedHashMap<>(); for (ObjectModelAttribute attr : attributes) { if (attr.isNavigable()) { String attrName = attr.getName(); String type = attr.getType(); if (selectedClassesFqn.contains(BinderHelper.cleanId(type))) { // Dto if (availableProperties.contains(attrName + "Label")) { ObjectModelAttributeImpl newAttr = new ObjectModelAttributeImpl(); newAttr.setName(attrName + "Label"); newAttr.setType("String"); // only keep navigable attributes properties.put(newAttr.getName(), newAttr); resultMap.put(newAttr, attr); } if (availableProperties.contains(attrName + "Id")) { ObjectModelAttributeImpl newAttr = new ObjectModelAttributeImpl(); newAttr.setName(attrName + "Id"); newAttr.setType("String"); // only keep navigable attributes properties.put(newAttr.getName(), newAttr); resultMap.put(newAttr, attr); } if (availableProperties.contains(attrName + "Code")) { ObjectModelAttributeImpl newAttr = new ObjectModelAttributeImpl(); newAttr.setName(attrName + "Code"); newAttr.setType("String"); // only keep navigable attributes properties.put(newAttr.getName(), newAttr); resultMap.put(newAttr, attr); } // Get a ref if (availableProperties.contains(attrName)) { ObjectModelAttributeImpl newAttr = new ObjectModelAttributeImpl(); newAttr.setName(attrName); if (!type.endsWith("Reference")) { // not a ref, get a ref type = BinderHelper.cleanId(type) + "Reference"; } newAttr.setType(classMapping.apply(type)); properties.put(attrName, newAttr); resultMap.put(newAttr, attr); } continue; } // Simple type if (availableProperties.contains(attrName)) { ObjectModelAttributeImpl newAttr = new ObjectModelAttributeImpl(); newAttr.setName(attrName); newAttr.setType(type); properties.put(attrName, newAttr); resultMap.put(newAttr, attr); } } } if (availableProperties.contains("label") && properties.values().stream().noneMatch(p -> p.getName().equals("label"))) { ObjectModelAttributeImpl attr = new ObjectModelAttributeImpl(); attr.setName("label"); attr.setType("String"); properties.put("label", attr); } Map result = new LinkedHashMap<>(); for (String availableProperty : availableProperties) { ObjectModelAttribute key = properties.get(availableProperty); ObjectModelAttribute value; if (key == null) { ObjectModelAttributeImpl ee = new ObjectModelAttributeImpl(); ee.setName(availableProperty); ee.setType("String"); key = ee; value = null; } else { value = resultMap.get(key); } Objects.requireNonNull(key, "Cant' find property " + availableProperty + " on " + input.getQualifiedName()); result.put(key, value); } return result; } @Override public void transformFromModel(ObjectModel model) { super.transformFromModel(model); context = new BeanTransformerContext(model, coreTagValues, javaTemplatesTagValues, beanTagValues, false, false, input -> { ObjectModelPackage aPackage = model.getPackage(input.getPackageName()); boolean referential = BinderHelper.isReferentialFromPackageName(aPackage.getName()); String referencesTagValue = observeTagValues.getReferencesTagValue(input); return referencesTagValue != null || referential; }, getLog()); context.report(); I18nKeySet i18nGetterFile = getConfiguration().getI18nGetterFile(); String binderPackageName = DtoReferenceBinder.class.getPackage().getName(); ObjectModelPackage defaultPackage = getModel().getPackage(getDefaultPackageName()); String packageName = defaultPackage.getName() + "."; int defaultPackageNameLength = packageName.length(); ImmutableSet.Builder withReferencesBuilder = ImmutableSet.builder(); for (ObjectModelClass input : context.selectedClasses) { ObjectModelPackage aPackage = getPackage(input); boolean referential = BinderHelper.isReferentialFromPackageName(aPackage.getName()); String referencesTagValue = observeTagValues.getReferencesTagValue(input); if (referencesTagValue == null && referential) { referencesTagValue = "code,label,uri"; } Objects.requireNonNull(referencesTagValue); withReferencesBuilder.add(input.getQualifiedName()); Set availableProperties = new LinkedHashSet<>(Arrays.asList(referencesTagValue.split(","))); Set properties = getProperties(input, availableProperties); Map binderProperties = getBinderProperties(context.selectedClassesFqn, input, availableProperties, this::getAttributeType); String prefix = getConstantPrefix(input); setConstantPrefix(prefix); String dtoName = context.classesNameTranslation.get(input); String className = BinderHelper.cleanId(dtoName) + "Reference"; String generatedClassName = "Generated" + className; Class superClass = referential ? ReferentialDtoReference.class : DataDtoReference.class; generateGeneratedClass(input, className, generatedClassName, dtoName, String.format("%s<%s, %s>", superClass.getName(), dtoName, className), properties, referential); Class binderSuperClass = referential ? ReferentialDtoReferenceBinder.class : DataDtoReferenceBinder.class; String binderName = BinderHelper.generateBinderName(binderPackageName, aPackage.getName() + "." + dtoName, dtoName + "Reference"); boolean generateBinder = !getResourcesHelper().isJavaFileInClassPath(binderName); if (generateBinder) { generateBinderClass(input, dtoName, className, binderName, String.format("%s<%s, %s>", binderSuperClass.getName(), dtoName, className), binderProperties, referential); } boolean generateClass = notFoundInClassPath(input.getPackageName(), className); if (generateClass) { generateClass(input, className, generatedClassName, properties, referential); } } ImmutableSet withReferenceFqns = withReferencesBuilder.build(); String initializerName = "DtoReferencesInitializer"; String generatedInitializerName = "Generated" + initializerName; String initializerPackageName = DtoReferencesInitializerSupport.class.getPackage().getName(); generateGeneratedInitializer(initializerPackageName, defaultPackage, binderPackageName, generatedInitializerName, withReferenceFqns, i18nGetterFile); boolean generateInitializer = notFoundInClassPath(binderPackageName, initializerName); if (generateInitializer) { generateInitializer(initializerPackageName, generatedInitializerName, initializerName); } // generate service loader file generateMetaInfService(getConfiguration(), initializerPackageName + "." + initializerName, DtoReferencesInitializerSupport.class); } private void generateGeneratedInitializer(String initializerPackageName, ObjectModelPackage aPackage, String binderPackageName, String generatedInitializerName, ImmutableSet withReferenceFqns, I18nKeySet i18nGetterFile) { String packageName = aPackage.getName() + "."; int defaultPackageNameLength = packageName.length(); String modelName = getModel().getName(); ObjectModelClass output = createAbstractClass(generatedInitializerName, initializerPackageName); setSuperClass(output, DtoReferencesInitializerSupport.class); addImport(output, Map.class); addImport(output, ImmutableMap.class); addImport(output, ImmutableSet.class); addImport(output, Set.class); addImport(output, LinkedHashSet.class); addImport(output, TreeMap.class); addImport(output, ReferentialDto.class); addImport(output, DataDto.class); addImport(output, IdDto.class); addImport(output, DtoReference.class); addImport(output, ReferentialDtoReference.class); addImport(output, DataDtoReference.class); addImport(output, DtoReferenceDefinition.class); // addImport(output, ImmutableClassMapping.class); addImport(output, ReferentialDtoReferenceBinder.class); addImport(output, DataDtoReferenceBinder.class); // addImport(output, ImmutableClassMapping.class.getName() + ".Builder"); // addImport(output, I18n.class); addImport(output, packageName + modelName + "ModelInitializer"); addImport(output, packageName + modelName + "ModelInitializerRunner"); addInterface(output, modelName + "ModelInitializer"); ObjectModelOperation constructor = addConstructor(output, ObjectModelJavaModifier.PUBLIC); setOperationBody(constructor, ""+"\n" +" "+modelName+"ModelInitializerRunner.init(this);\n" +" " ); ObjectModelOperation startMethod = addOperation(output, "start", "void", ObjectModelJavaModifier.PUBLIC); addAnnotation(output, startMethod, Override.class); ObjectModelOperation endMethod = addOperation(output, "end", "void", ObjectModelJavaModifier.PUBLIC); addAnnotation(output, endMethod, Override.class); setOperationBody(endMethod, ""+"\n" +" super.end();\n" +" " ); boolean useRelativeName = context.useRelativeName; String[] relativeNameExcludes = context.relativeNameExcludes; for (String fqn : context.classesFqn) { ObjectModelClass beanClass = context.classesByFqn.get(fqn); ObjectModelPackage thisPackage = getModel().getPackage(beanClass); if (BeanTransformer.skipForInitializer(thisPackage, beanClass)) { continue; } String dtoName = thisPackage.getName() + "." + context.classesNameTranslation.get(beanClass); String simpleDtoName = JavaGeneratorUtil.getSimpleName(dtoName); String methodName = getMethodName(useRelativeName, relativeNameExcludes, "init", null, dtoName); ObjectModelOperation operation = addOperation(output, methodName, "void", ObjectModelJavaModifier.PUBLIC); addAnnotation(output, operation, Override.class); if (context.selectedClasses.contains(beanClass)) { boolean referential = BinderHelper.isReferentialFromPackageName(beanClass.getPackageName()); String flushMethodName = referential ? "flushReferential" : "flushData"; String referenceName = thisPackage.getName() + "." + beanClass.getName() + "Reference"; if (!useRelativeName) { addImport(output, referenceName); referenceName = JavaGeneratorUtil.getSimpleName(referenceName); } StringBuilder body = new StringBuilder(); i18nGetterFile.addKey("observe." + BinderHelper.cleanDtoType(referential, dtoName)+ ".type"); body.append("" +"\n" +" "+flushMethodName+"("+referenceName+".DEFINITION);"); if (withReferenceFqns.contains(fqn)) { String binderMethodName = referential ? "registerReferentialBinder" : "registerDataBinder"; String binderName = BinderHelper.generateBinderName(binderPackageName, fqn, simpleDtoName + "Reference"); if (!useRelativeName) { addImport(output, binderName); binderName = JavaGeneratorUtil.getSimpleName(binderName); } body.append("" +"\n" +" "+binderMethodName+"(new "+binderName+"());\n" +" "); } setOperationBody(operation, body.toString()); } } } private void generateInitializer(String initializerPackageName, String generatedInitializerName, String initializerName) { ObjectModelClass output = createClass(initializerName, initializerPackageName); setSuperClass(output, generatedInitializerName); getLog().debug("will generate " + output.getQualifiedName()); } private void generateClass(ObjectModelClass input, String className, String abstractClassName, Set properties, boolean referential) { ObjectModelClass output = createClass(className, input.getPackageName()); setSuperClass(output, abstractClassName); getLog().debug("will generate " + output.getQualifiedName()); ObjectModelOperation constructor = addConstructor(output, ObjectModelJavaModifier.PUBLIC); addParameter(constructor, referential ? ReferentialDtoReferenceAware.class : DtoReferenceAware.class, "dto"); StringBuilder body = new StringBuilder("\n super(dto, "); for (ObjectModelAttribute attr : properties) { addParameter(constructor, attr.getType(), attr.getName()); body.append(String.format("%s, ", attr.getName())); } String body1 = body.toString(); setOperationBody(constructor, body1.substring(0, body1.length() - 2) + ");\n"); } private void generateGeneratedClass(ObjectModelClass input, String className, String abstractClassName, String dtoName, String superClass, Set properties, boolean referential) { ObjectModelClass output = createAbstractClass(abstractClassName, input.getPackageName()); ObjectModelAnnotation objectModelAnnotation = addAnnotation(output, output, GenerateJavaBeanDefinition.class); addAnnotationParameter(output, objectModelAnnotation, "types", "{\"" + input.getPackageName() + "." + className + "\"}"); setSuperClass(output, superClass); Class builderMethodName = referential ? ReferentialDtoReferenceDefinition.class : DataDtoReferenceDefinition.class; addImport(output, builderMethodName); StringBuilder definition = new StringBuilder("" +"\n" +" "+builderMethodName.getSimpleName()+"\n" +" .builder("+dtoName+".class, "+className+".class) " ); for (ObjectModelAttribute attr : properties) { addImport(output, attr.getType()); String type = JavaGeneratorUtil.getSimpleName(attr.getType()); String name = attr.getName(); String getterName; boolean booleanProperty = JavaGeneratorUtil.isBooleanPrimitive(attr); if (booleanProperty) { getterName = JavaGeneratorUtil.OPERATION_GETTER_BOOLEAN_PREFIX; } else { getterName = JavaGeneratorUtil.OPERATION_GETTER_DEFAULT_PREFIX; } getterName += JavaGeneratorUtil.capitalizeJavaBeanPropertyName(name); definition.append("" +"\n" +" .addProperty("+type+".class, \""+name+"\", "+className+"::"+getterName+")" ); } definition.append(""+"\n" +" .build()" ); String definitionType = String.format("%s<%s, %s>", builderMethodName.getName(), dtoName, className); addAttribute(output, "DEFINITION", definitionType, definition.toString(), ObjectModelJavaModifier.PUBLIC, ObjectModelJavaModifier.STATIC, ObjectModelJavaModifier.FINAL); getLog().debug("will generate " + output.getQualifiedName()); ObjectModelOperation constructor = addConstructor(output, ObjectModelJavaModifier.PROTECTED); addParameter(constructor, referential ? ReferentialDtoReferenceAware.class : DtoReferenceAware.class, "dto"); StringBuilder body = new StringBuilder(""+"\n" +" super(dto);"); for (ObjectModelAttribute attr : properties) { createProperty(output, attr); addParameter(constructor, attr.getType(), attr.getName()); String name = attr.getName(); body.append(""+"\n" +" this."+name+" = "+name+";" ); } body.append(""+"\n" +" "); setOperationBody(constructor, body.toString()); ObjectModelOperation getDefinition = addOperation(output, "getDefinition", definitionType, ObjectModelJavaModifier.PUBLIC); addAnnotation(output, getDefinition, Override.class); setOperationBody(getDefinition, ""+"\n" +" return DEFINITION;\n" +" " ); } private void generateBinderClass(ObjectModelClass input, String dtoName, String className, String binderFullClassName, String superClass, Map properties, boolean referential) { boolean useRelativeName = context.useRelativeName; String binderClassName = JavaGeneratorUtil.getSimpleName(binderFullClassName); ObjectModelClass output = createClass(binderClassName, binderFullClassName.substring(0, binderFullClassName.lastIndexOf("."))); setSuperClass(output, superClass); addImport(output, input.getPackageName() + "." + dtoName); addImport(output, input.getPackageName() + "." + className); getLog().debug("will generate " + output.getQualifiedName()); ObjectModelOperation constructor = addConstructor(output, ObjectModelJavaModifier.PUBLIC); setOperationBody(constructor, ""+"\n" +" super("+dtoName+".class, "+className+".class);\n" +" "); ObjectModelOperation operation = addOperation(output, "toReference", className, ObjectModelJavaModifier.PUBLIC); addAnnotation(output, operation, Override.class); addParameter(operation, ReferentialLocale.class, "referentialLocale"); addParameter(operation, dtoName, "dto"); int prefixLength = (" return new " + className + "(").length(); String prefix = StringUtils.leftPad("", prefixLength, " "); StringBuilder body = new StringBuilder(""+"\n" +" return new "+className+"(dto,"); Iterator> iterator = properties.entrySet().iterator(); while (iterator.hasNext()) { Map.Entry entry = iterator.next(); ObjectModelAttribute attr = entry.getKey(); ObjectModelAttribute dtoAttr = entry.getValue(); String content = ""; if (dtoAttr != null) { String getterName; String type = useRelativeName ? dtoAttr.getType() : JavaGeneratorUtil.getSimpleName(dtoAttr.getType()); String dtoAttrname = dtoAttr.getName(); boolean booleanProperty = JavaGeneratorUtil.isBooleanPrimitive(dtoAttr); if (booleanProperty) { getterName = JavaGeneratorUtil.OPERATION_GETTER_BOOLEAN_PREFIX; } else { getterName = JavaGeneratorUtil.OPERATION_GETTER_DEFAULT_PREFIX; } getterName += JavaGeneratorUtil.capitalizeJavaBeanPropertyName(dtoAttrname); content = "dto." + getterName + "()"; if (context.selectedClassesFqn.contains(BinderHelper.cleanId(dtoAttr.getType()))) { // Dto if (!type.endsWith("Reference")) { // not a ref, get a ref type = BinderHelper.cleanId(type) + "Reference"; } if (attr.getName().equals(dtoAttrname + "Id")) { addImport(output, dtoAttr.getType()); addImport(output, Optional.class); addImport(output, IdDto.class); content = String.format("Optional.ofNullable(%s).map(%s::getId).orElse(null)", content, type); } else if (attr.getName().equals(dtoAttrname + "Label")) { addImport(output, dtoAttr.getType()); addImport(output, Optional.class); addImport(output, IdDto.class); String method = "getLabel"; if (type.equals("SpeciesReference")) { method = "getScientificLabel"; } content = String.format("Optional.ofNullable(%s).map(%s::%s).orElse(null)", content, type, method); } else if (attr.getName().equals(dtoAttrname + "Code")) { addImport(output, dtoAttr.getType()); addImport(output, Optional.class); addImport(output, IdDto.class); content = String.format("Optional.ofNullable(%s).map(%s::getCode).orElse(null)", content, type); } } } else { if (attr.getName().equals("label")) { content = "dto.getLabel(referentialLocale)"; } else { content = "null"; } } content = prefix + content; String coma = iterator.hasNext() ? "," : ""; body.append(""+"\n" +""+content+""+coma+"" ); } body.append(""+");\n" +" "); setOperationBody(operation, body.toString()); } private String getAttributeType(ObjectModelAttribute attr) { String attrType = attr.getType(); return getAttributeType(attrType); } private String getAttributeType(String attrType) { if (!JavaGeneratorUtil.isPrimitiveType(attrType)) { boolean hasClass = model.hasClass(attrType); if (hasClass) { ObjectModelClass attributeClass = model.getClass(attrType); String attributeType = context.classesNameTranslation.get(attributeClass); if (attributeType != null) { attrType = attributeClass.getPackageName() + "." + attributeType; } } } return attrType; } private boolean notFoundInClassPath(String input, String className) { String fqn = input + "." + className; boolean inClassPath = getResourcesHelper().isJavaFileInClassPath(fqn); return !inClassPath; } private void createProperty(ObjectModelClass output, ObjectModelAttribute attr) { String attrName = attr.getName(); String attrType = getAttributeTypeWithGeneric(attr); boolean booleanProperty = JavaGeneratorUtil.isBooleanPrimitive(attr); if (booleanProperty) { createGetMethod(output, attrName, attrType, JavaGeneratorUtil.OPERATION_GETTER_BOOLEAN_PREFIX); } else { createGetMethod(output, attrName, attrType, JavaGeneratorUtil.OPERATION_GETTER_DEFAULT_PREFIX); } addAttribute(output, attrName, attrType, "", ObjectModelJavaModifier.PRIVATE, ObjectModelJavaModifier.FINAL); } private Set getProperties(ObjectModelClass input, Set availableProperties) { Collection attributes = new LinkedList<>(input.getAttributes()); attributes.addAll(input.getAllOtherAttributes()); Map properties = new TreeMap<>(); for (ObjectModelAttribute attr : attributes) { if (attr.isNavigable()) { String attrName = attr.getName(); String type = attr.getType(); if (context.selectedClassesFqn.contains(BinderHelper.cleanId(type))) { // Dto if (availableProperties.contains(attrName + "Label")) { ObjectModelAttributeImpl newAttr = new ObjectModelAttributeImpl(); newAttr.setName(attrName + "Label"); newAttr.setType("String"); // only keep navigable attributes properties.put(newAttr.getName(), newAttr); } if (availableProperties.contains(attrName + "Id")) { ObjectModelAttributeImpl newAttr = new ObjectModelAttributeImpl(); newAttr.setName(attrName + "Id"); newAttr.setType("String"); // only keep navigable attributes properties.put(newAttr.getName(), newAttr); } if (availableProperties.contains(attrName + "Code")) { ObjectModelAttributeImpl newAttr = new ObjectModelAttributeImpl(); newAttr.setName(attrName + "Code"); newAttr.setType("String"); // only keep navigable attributes properties.put(newAttr.getName(), newAttr); } // Get a ref if (availableProperties.contains(attrName)) { ObjectModelAttributeImpl newAttr = new ObjectModelAttributeImpl(); newAttr.setName(attrName); if (!type.endsWith("Reference")) { // not a ref, get a ref type = BinderHelper.cleanId(type) + "Reference"; } newAttr.setType(getAttributeType(type)); properties.put(attrName, newAttr); } continue; } // Simple type if (availableProperties.contains(attrName)) { ObjectModelAttributeImpl newAttr = new ObjectModelAttributeImpl(); newAttr.setName(attrName); newAttr.setType(type); properties.put(attrName, newAttr); } } } if (availableProperties.contains("label") && properties.values().stream().noneMatch(p -> p.getName().equals("label"))) { ObjectModelAttributeImpl attr = new ObjectModelAttributeImpl(); attr.setName("label"); attr.setType("String"); properties.put("label", attr); } Set result = new LinkedHashSet<>(); for (String availableProperty : availableProperties) { ObjectModelAttribute e = properties.get(availableProperty); if (e == null) { ObjectModelAttributeImpl ee = new ObjectModelAttributeImpl(); ee.setName(availableProperty); ee.setType("String"); e = ee; } Objects.requireNonNull(e, "Cant' find property " + availableProperty + " on " + input.getQualifiedName()); result.add(e); } return result; } private void createGetMethod(ObjectModelClass output, String attrName, String attrType, String methodPrefix) { ObjectModelOperation operation = addOperation( output, getJavaBeanMethodName(methodPrefix, attrName), attrType, ObjectModelJavaModifier.PUBLIC ); setOperationBody(operation, "" +"\n" +" return "+attrName+";\n" +" " ); } private String getAttributeTypeWithGeneric(ObjectModelAttribute attr) { String attrType = getAttributeType(attr); String generic = eugeneTagValues.getAttributeGenericTagValue(attr); if (generic != null) { attrType += "<" + getAttributeType(generic) + ">"; } return attrType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy