#1431 Factory method resolution should be done on the effective type

This allows using factories for builder types as well
This commit is contained in:
Filip Hrisafov 2018-04-15 10:19:58 +02:00 committed by GitHub
parent 050e893c51
commit 5834368b15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 233 additions and 2 deletions

View File

@ -138,7 +138,7 @@ public class MappingResolverImpl implements MappingResolver {
mappingMethod, mappingMethod,
sourceModel, sourceModel,
java.util.Collections.<Type> emptyList(), java.util.Collections.<Type> emptyList(),
targetType, targetType.getEffectiveType(),
SelectionCriteria.forFactoryMethods( selectionParameters ) ); SelectionCriteria.forFactoryMethods( selectionParameters ) );
if (matchingFactoryMethods.isEmpty()) { if (matchingFactoryMethods.isEmpty()) {
@ -149,7 +149,7 @@ public class MappingResolverImpl implements MappingResolver {
messager.printMessage( messager.printMessage(
mappingMethod.getExecutable(), mappingMethod.getExecutable(),
Message.GENERAL_AMBIGIOUS_FACTORY_METHOD, Message.GENERAL_AMBIGIOUS_FACTORY_METHOD,
targetType, targetType.getEffectiveType(),
Strings.join( matchingFactoryMethods, ", " ) ); Strings.join( matchingFactoryMethods, ", " ) );
return null; return null;

View File

@ -0,0 +1,40 @@
/**
* Copyright 2012-2017 Gunnar Morling (http://www.gunnarmorling.de/)
* and/or other contributors as indicated by the @authors tag. See the
* copyright.txt file in the distribution for a full listing of all
* contributors.
*
* 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
*
* http://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.mapstruct.ap.test.builder.factory;
import org.mapstruct.Mapper;
import org.mapstruct.ObjectFactory;
import org.mapstruct.factory.Mappers;
/**
* @author Filip Hrisafov
*/
@Mapper
public abstract class BuilderFactoryMapper {
public static final BuilderFactoryMapper INSTANCE = Mappers.getMapper( BuilderFactoryMapper.class );
public abstract Person map(PersonDto source);
@ObjectFactory
public Person.PersonBuilder personBuilder() {
return new Person.PersonBuilder( "Factory with @ObjectFactory" );
}
}

View File

@ -0,0 +1,55 @@
/**
* Copyright 2012-2017 Gunnar Morling (http://www.gunnarmorling.de/)
* and/or other contributors as indicated by the @authors tag. See the
* copyright.txt file in the distribution for a full listing of all
* contributors.
*
* 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
*
* http://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.mapstruct.ap.test.builder.factory;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mapstruct.ap.testutil.WithClasses;
import org.mapstruct.ap.testutil.runner.AnnotationProcessorTestRunner;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Filip Hrisafov
*/
@RunWith(AnnotationProcessorTestRunner.class)
@WithClasses({
BuilderFactoryMapper.class,
BuilderImplicitFactoryMapper.class,
Person.class,
PersonDto.class
})
public class BuilderFactoryMapperTest {
@Test
public void shouldUseBuilderFactory() {
Person person = BuilderFactoryMapper.INSTANCE.map( new PersonDto( "Filip" ) );
assertThat( person.getName() ).isEqualTo( "Filip" );
assertThat( person.getSource() ).isEqualTo( "Factory with @ObjectFactory" );
}
@Test
public void shouldUseImplicitBuilderFactory() {
Person person = BuilderImplicitFactoryMapper.INSTANCE.map( new PersonDto( "Filip" ) );
assertThat( person.getName() ).isEqualTo( "Filip" );
assertThat( person.getSource() ).isEqualTo( "Implicit Factory" );
}
}

View File

@ -0,0 +1,38 @@
/**
* Copyright 2012-2017 Gunnar Morling (http://www.gunnarmorling.de/)
* and/or other contributors as indicated by the @authors tag. See the
* copyright.txt file in the distribution for a full listing of all
* contributors.
*
* 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
*
* http://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.mapstruct.ap.test.builder.factory;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;
/**
* @author Filip Hrisafov
*/
@Mapper
public abstract class BuilderImplicitFactoryMapper {
public static final BuilderImplicitFactoryMapper INSTANCE = Mappers.getMapper( BuilderImplicitFactoryMapper.class );
public abstract Person map(PersonDto source);
public Person.PersonBuilder personBuilder() {
return new Person.PersonBuilder( "Implicit Factory" );
}
}

View File

@ -0,0 +1,63 @@
/**
* Copyright 2012-2017 Gunnar Morling (http://www.gunnarmorling.de/)
* and/or other contributors as indicated by the @authors tag. See the
* copyright.txt file in the distribution for a full listing of all
* contributors.
*
* 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
*
* http://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.mapstruct.ap.test.builder.factory;
/**
* @author Filip Hrisafov
*/
public class Person {
private final String name;
private final String source;
protected Person(PersonBuilder builder) {
this.name = builder.name;
this.source = builder.source;
}
public String getName() {
return name;
}
public String getSource() {
return source;
}
public static PersonBuilder builder() {
throw new UnsupportedOperationException( "Factory should be used" );
}
public static class PersonBuilder {
private String name;
private final String source;
public PersonBuilder(String source) {
this.source = source;
}
public PersonBuilder name(String name) {
this.name = name;
return this;
}
public Person create() {
return new Person( this );
}
}
}

View File

@ -0,0 +1,35 @@
/**
* Copyright 2012-2017 Gunnar Morling (http://www.gunnarmorling.de/)
* and/or other contributors as indicated by the @authors tag. See the
* copyright.txt file in the distribution for a full listing of all
* contributors.
*
* 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
*
* http://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.mapstruct.ap.test.builder.factory;
/**
* @author Filip Hrisafov
*/
public class PersonDto {
private String name;
public PersonDto(String name) {
this.name = name;
}
public String getName() {
return name;
}
}