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

org.mapstruct.ap.internal.model.NestedPropertyMappingMethod Maven / Gradle / Ivy

/*
 * Copyright MapStruct Authors.
 *
 * Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
 */
package org.mapstruct.ap.internal.model;

import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.Set;

import org.mapstruct.ap.internal.model.beanmapping.PropertyEntry;
import org.mapstruct.ap.internal.model.common.Parameter;
import org.mapstruct.ap.internal.model.common.PresenceCheck;
import org.mapstruct.ap.internal.model.common.Type;
import org.mapstruct.ap.internal.model.presence.SuffixPresenceCheck;
import org.mapstruct.ap.internal.util.Strings;
import org.mapstruct.ap.internal.util.accessor.PresenceCheckAccessor;

/**
 * This method is used to convert the nested properties as listed in propertyEntries into a method
 * that creates a mapping from the start of this list to the end of the list.
 * 

* So, say that the start of the list is of TypeA and the end of the list is of TypeB than the forged method * will create a forged mapping method: TypeB methodName( TypeA in ). * * @author Sjaak Derksen */ public class NestedPropertyMappingMethod extends MappingMethod { private final List safePropertyEntries; public static class Builder { private MappingBuilderContext ctx; private ForgedMethod method; private List propertyEntries; public Builder method( ForgedMethod sourceMethod ) { this.method = sourceMethod; return this; } public Builder propertyEntries( List propertyEntries ) { this.propertyEntries = propertyEntries; return this; } public Builder mappingContext(MappingBuilderContext mappingContext) { this.ctx = mappingContext; return this; } public NestedPropertyMappingMethod build() { List existingVariableNames = new ArrayList<>(); Parameter sourceParameter = null; for ( Parameter parameter : method.getSourceParameters() ) { existingVariableNames.add( parameter.getName() ); if ( sourceParameter == null && !parameter.isMappingTarget() && !parameter.isMappingContext() ) { sourceParameter = parameter; } } final List thrownTypes = new ArrayList<>(); List safePropertyEntries = new ArrayList<>(); if ( sourceParameter == null ) { throw new IllegalStateException( "Method " + method + " has no source parameter." ); } String previousPropertyName = sourceParameter.getName(); for ( PropertyEntry propertyEntry : propertyEntries ) { String safeName = Strings.getSafeVariableName( propertyEntry.getName(), existingVariableNames ); safePropertyEntries.add( new SafePropertyEntry( propertyEntry, safeName, previousPropertyName ) ); existingVariableNames.add( safeName ); thrownTypes.addAll( ctx.getTypeFactory().getThrownTypes( propertyEntry.getReadAccessor() ) ); previousPropertyName = safeName; } method.addThrownTypes( thrownTypes ); return new NestedPropertyMappingMethod( method, safePropertyEntries ); } } private NestedPropertyMappingMethod( ForgedMethod method, List sourcePropertyEntries ) { super( method ); this.safePropertyEntries = sourcePropertyEntries; } public Parameter getSourceParameter() { for ( Parameter parameter : getParameters() ) { if ( !parameter.isMappingTarget() && !parameter.isMappingContext() ) { return parameter; } } throw new IllegalStateException( "Method " + this + " has no source parameter." ); } public List getPropertyEntries() { return safePropertyEntries; } @Override public Set getImportTypes() { Set types = super.getImportTypes(); for ( SafePropertyEntry propertyEntry : safePropertyEntries) { types.addAll( propertyEntry.getType().getImportTypes() ); if ( propertyEntry.getPresenceChecker() != null ) { types.addAll( propertyEntry.getPresenceChecker().getImportTypes() ); } } return types; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ( ( getReturnType() == null ) ? 0 : getReturnType().hashCode() ); return result; } @Override public boolean equals( Object obj ) { if ( this == obj ) { return true; } if ( obj == null ) { return false; } if ( getClass() != obj.getClass() ) { return false; } NestedPropertyMappingMethod other = (NestedPropertyMappingMethod) obj; if ( !super.equals( obj ) ) { return false; } if ( getSourceParameters().size() != other.getSourceParameters().size() ) { return false; } for ( int i = 0; i < getSourceParameters().size(); i++ ) { if ( !getSourceParameters().get( i ).getType().equals( other.getSourceParameters().get( i ).getType() ) ) { return false; } } if ( !safePropertyEntries.equals( other.safePropertyEntries ) ) { return false; } return true; } public static class SafePropertyEntry { private final String safeName; private final String readAccessorName; private final PresenceCheck presenceChecker; private final String previousPropertyName; private final Type type; public SafePropertyEntry(PropertyEntry entry, String safeName, String previousPropertyName) { this.safeName = safeName; this.readAccessorName = entry.getReadAccessor().getReadValueSource(); PresenceCheckAccessor presenceChecker = entry.getPresenceChecker(); if ( presenceChecker != null ) { this.presenceChecker = new SuffixPresenceCheck( previousPropertyName, presenceChecker.getPresenceCheckSuffix() ); } else { this.presenceChecker = null; } this.previousPropertyName = previousPropertyName; this.type = entry.getType(); } public String getName() { return safeName; } public String getAccessorName() { return readAccessorName; } public PresenceCheck getPresenceChecker() { return presenceChecker; } public String getPreviousPropertyName() { return previousPropertyName; } public Type getType() { return type; } @Override public boolean equals(Object o) { if ( this == o ) { return true; } if ( !( o instanceof SafePropertyEntry ) ) { return false; } SafePropertyEntry that = (SafePropertyEntry) o; if ( !Objects.equals( readAccessorName, that.readAccessorName ) ) { return false; } if ( !Objects.equals( presenceChecker, that.presenceChecker ) ) { return false; } if ( !Objects.equals( previousPropertyName, that.previousPropertyName ) ) { return false; } if ( !Objects.equals( type, that.type ) ) { return false; } return true; } @Override public int hashCode() { int result = readAccessorName != null ? readAccessorName.hashCode() : 0; result = 31 * result + ( presenceChecker != null ? presenceChecker.hashCode() : 0 ); result = 31 * result + ( type != null ? type.hashCode() : 0 ); return result; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy