mapstruct / mapstruct-examples

Examples for using MapStruct
Other
1.3k stars 508 forks source link

Provide example for mapping into ProtoBuf types #14

Open gunnarmorling opened 7 years ago

eiswind commented 7 years ago

Is there a way to generify the rule that "permissions" will always be "permissionsList" in the proto? (and vice versa). Otherwise I've updated the example from the pr#25 feedback. Thx.

filiphr commented 7 years ago

What do you mean to generify that permisions will always be permissionsList? Do you want to avoid writing @Mapping(source = "permissions", target = "permissionsList") and the opposite?

That can be done by removing the List suffix in the AccessorNamingStrategy#getPropertyName(ExecutableElement getterOrSetterMethod). I don't know protobuf, but you can theoretically check if you are in a proto builder (the same way you are doing now) and check if the return type is List (can it be some other collection?) then strip the List in the end. With this you won't need to adapt the getElementName().

filiphr commented 7 years ago

Example with protobuf 3 has been added. My comments are not implemented in the example.

vordimous commented 6 years ago

Example with protobuf 3 has been added. My comments are not implemented in the example.

So I have been working through your example and I am at a loss how to get it to work outside of the examples project. Moreso I am using Gradle. This is where I am https://github.com/vordimous/mapstruct-proto

I get this error: warning: Unmapped target properties: "clearField, clearOneof, mergeFrom, idBytes, emailBytes, unknownFields, mergeUnknownFields, allFields, permissionsValueList".

which I can get around by adding a mapping ignore, however you don't have to do this in your example.

Any ideas @filiphr ?

alex-lzl commented 6 years ago

I am currently using mapstruct (1.3.0beta1) with Kotlin and gRPC (proto3). The example ProtobufAccessorNamingStrategy doesn't work to handle the mapping between "permissions" and "permissionsList" (the getElementName method doesn't even get called at all). I hate to manually map every collection type explicitly using @ValueMapping, thus did an ugly hack like this and got it working for my purposes:

public class ProtobufAccessorNamingStrategy extends DefaultAccessorNamingStrategy { /**

Kavyamanjanatha commented 5 years ago

@filiphr Do we have any way to solve the issue reported by alex-lzl? I am also facing same issue