Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ConverterIgnore annotation #214

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/main/java/io/vertx/codegen/annotations/ConverterIgnore.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package io.vertx.codegen.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
* The annotated DataObject property is ignored by the generated converter.
*
* This can be used to provide custom `fromJson()`/`toJson()` implementations for
* types not compatible with the vertx codegen rules.
*
* @author Richard Gomez
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface ConverterIgnore {
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import io.vertx.codegen.Generator;
import io.vertx.codegen.DataObjectModel;
import io.vertx.codegen.PropertyInfo;
import io.vertx.codegen.annotations.ConverterIgnore;
import io.vertx.codegen.type.AnnotationValueInfo;
import io.vertx.codegen.type.ClassKind;

import java.io.PrintWriter;
Expand Down Expand Up @@ -64,7 +66,12 @@ private void generateToJson(String visibility, boolean inheritConverter, DataObj
writer.print("\n");
writer.print(" " + visibility + " static void toJson(" + simpleName + " obj, java.util.Map<String, Object> json) {\n");
model.getPropertyMap().values().forEach(prop -> {

AnnotationValueInfo ignoreProp = prop.getAnnotation(ConverterIgnore.class.getName());
if (ignoreProp != null) return;

if ((prop.isDeclared() || inheritConverter) && prop.getGetterMethod() != null && prop.isJsonifiable()) {

ClassKind propKind = prop.getType().getKind();
if (propKind.basic) {
if (propKind == ClassKind.STRING) {
Expand Down Expand Up @@ -142,6 +149,10 @@ private void generateFromson(String visibility, boolean inheritConverter, DataOb
writer.print(" for (java.util.Map.Entry<String, Object> member : json) {\n");
writer.print(" switch (member.getKey()) {\n");
model.getPropertyMap().values().forEach(prop -> {

AnnotationValueInfo ignoreProp = prop.getAnnotation(ConverterIgnore.class.getName());
if (ignoreProp != null) return;

if (prop.isDeclared() || inheritConverter) {
ClassKind propKind = prop.getType().getKind();
if (propKind.basic) {
Expand Down
15 changes: 15 additions & 0 deletions src/test/asciidoc/dataobjects.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,21 @@
|[[parentProperty]]`@parentProperty`|`String`|-
|===

[[IgnoreConverterDataObject]]
== IgnoreConverterDataObject

++++
++++
'''

[cols=">25%,25%,50%"]
[frame="topbot"]
|===
^|Name | Type ^| Description
|[[ignoredProperty]]`@ignoredProperty`|`String`|-
|[[regularProperty]]`@regularProperty`|`String`|-
|===

[[NoConverterDataObject]]
== NoConverterDataObject

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
package io.vertx.test.codegen.converter;

import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import java.time.Instant;
import java.time.format.DateTimeFormatter;

/**
* Converter for {@link io.vertx.test.codegen.converter.IgnoreConverterDataObject}.
* NOTE: This class has been automatically generated from the {@link io.vertx.test.codegen.converter.IgnoreConverterDataObject} original class using Vert.x codegen.
*/
public class IgnoreConverterDataObjectConverter {

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, IgnoreConverterDataObject obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "regularProperty":
if (member.getValue() instanceof String) {
obj.setRegularProperty((String)member.getValue());
}
break;
}
}
}

public static void toJson(IgnoreConverterDataObject obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(IgnoreConverterDataObject obj, java.util.Map<String, Object> json) {
if (obj.getRegularProperty() != null) {
json.put("regularProperty", obj.getRegularProperty());
}
}
}
31 changes: 31 additions & 0 deletions src/test/java/io/vertx/test/codegen/converter/DataObjectTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,37 @@ public void testNotInherit() {
assertEquals(expectedJson, json);
}

@Test
public void testIgnoreConverterFromJson() {
String ignored = "foo";
String regular = "bar";

JsonObject json = new JsonObject();
json.put("ignoredProperty", ignored);
json.put("regularProperty", regular);

IgnoreConverterDataObject obj = new IgnoreConverterDataObject(json);

assertNull(obj.getIgnoredProperty());
assertEquals(regular, obj.getRegularProperty());
}

@Test
public void testIgnoreConverterToJson() {
String ignored = "foo";
String regular = "bar";

IgnoreConverterDataObject obj = new IgnoreConverterDataObject();
obj.setIgnoredProperty(ignored);
obj.setRegularProperty(regular);

Map<String, Object> json = new HashMap<>();
IgnoreConverterDataObjectConverter.toJson(obj, json);

assertNull(json.get("ignoredProperty"));
assertEquals(regular, json.get("regularProperty"));
}

private String toBase64(Buffer buffer) {
return Base64.getEncoder().encodeToString(buffer.getBytes());
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package io.vertx.test.codegen.converter;

import io.vertx.codegen.annotations.ConverterIgnore;
import io.vertx.codegen.annotations.DataObject;
import io.vertx.core.json.JsonObject;

/**
* @author Richard Gomez
*/
@DataObject(generateConverter = true)
public class IgnoreConverterDataObject {

@ConverterIgnore
private String ignoredProperty;
private String regularProperty;

public IgnoreConverterDataObject() {
}

public IgnoreConverterDataObject(JsonObject json) {
IgnoreConverterDataObjectConverter.fromJson(json, this);
}

public String getIgnoredProperty() {
return ignoredProperty;
}

public void setIgnoredProperty(String ignoredProperty) {
this.ignoredProperty = ignoredProperty;
}

public String getRegularProperty() {
return regularProperty;
}

public void setRegularProperty(String regularProperty) {
this.regularProperty = regularProperty;
}
}