-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
226 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94 changes: 94 additions & 0 deletions
94
wrangler-core/src/main/java/io/cdap/wrangler/utils/RowSerializer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* | ||
* Copyright © 2024 Cask Data, Inc. | ||
* | ||
* 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 io.cdap.wrangler.utils; | ||
|
||
import com.esotericsoftware.kryo.Kryo; | ||
import com.esotericsoftware.kryo.Serializer; | ||
import com.esotericsoftware.kryo.io.Input; | ||
import com.esotericsoftware.kryo.io.Output; | ||
import com.google.gson.Gson; | ||
import com.google.gson.JsonArray; | ||
import com.google.gson.JsonElement; | ||
import com.google.gson.JsonNull; | ||
import com.google.gson.JsonObject; | ||
import com.google.gson.JsonPrimitive; | ||
import io.cdap.wrangler.api.Row; | ||
import java.sql.Time; | ||
import java.sql.Timestamp; | ||
import java.time.LocalDate; | ||
import java.time.LocalTime; | ||
import java.time.ZonedDateTime; | ||
import java.util.ArrayList; | ||
import java.util.Date; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
/** | ||
* A helper class with allows Serialization and Deserialization using Kryo | ||
* We should register all schema classes present in {@link SchemaConverter} | ||
**/ | ||
public class RowSerializer { | ||
|
||
private final Kryo kryo; | ||
private static final Gson GSON = new Gson(); | ||
|
||
public RowSerializer() { | ||
kryo = new Kryo(); | ||
// Register all classes from SchemaConverter | ||
kryo.register(Row.class); | ||
kryo.register(ArrayList.class); | ||
kryo.register(LocalDate.class); | ||
kryo.register(LocalTime.class); | ||
kryo.register(ZonedDateTime.class); | ||
kryo.register(Map.class); | ||
kryo.register(JsonNull.class); | ||
// JsonPrimitive does not have no-arg constructor hence we need a | ||
// custom serializer | ||
kryo.register(JsonPrimitive.class, new JsonSerializer()); | ||
kryo.register(JsonArray.class); | ||
kryo.register(JsonObject.class); | ||
// Support deprecated util.date classes | ||
kryo.register(Date.class); | ||
kryo.register(java.sql.Date.class); | ||
kryo.register(Time.class); | ||
kryo.register(Timestamp.class); | ||
} | ||
|
||
public byte[] fromRows(List<Row> rows) { | ||
Output output = new Output(1024, -1); | ||
kryo.writeClassAndObject(output, rows); | ||
return output.getBuffer(); | ||
} | ||
|
||
public List<Row> toRows(byte[] bytes) { | ||
Input input = new Input(bytes); | ||
List<Row> result = (List<Row>) kryo.readClassAndObject(input); | ||
return result; | ||
} | ||
|
||
static class JsonSerializer extends Serializer<JsonElement> { | ||
|
||
@Override | ||
public void write(Kryo kryo, Output output, JsonElement object) { | ||
output.writeString(GSON.toJson(object)); | ||
} | ||
|
||
@Override | ||
public JsonElement read(Kryo kryo, Input input, Class<JsonElement> type) { | ||
return GSON.fromJson(input.readString(), type); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
117 changes: 117 additions & 0 deletions
117
wrangler-core/src/test/java/io/cdap/wrangler/utils/RowSerializerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
/* | ||
* Copyright © 2024 Cask Data, Inc. | ||
* | ||
* 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 io.cdap.wrangler.utils; | ||
|
||
import com.google.common.collect.Lists; | ||
import com.google.gson.JsonParser; | ||
import io.cdap.wrangler.TestingRig; | ||
import io.cdap.wrangler.api.RecipePipeline; | ||
import io.cdap.wrangler.api.Row; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
import java.math.BigDecimal; | ||
import java.math.BigInteger; | ||
import java.time.LocalDate; | ||
import java.time.LocalDateTime; | ||
import java.time.LocalTime; | ||
import java.time.ZoneId; | ||
import java.time.ZonedDateTime; | ||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.HashMap; | ||
import java.util.HashSet; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Set; | ||
|
||
public class RowSerializerTest { | ||
|
||
private static final String[] TESTS = new String[]{ | ||
JsonTestData.BASIC, | ||
JsonTestData.SIMPLE_JSON_OBJECT, | ||
JsonTestData.ARRAY_OF_OBJECTS, | ||
JsonTestData.JSON_ARRAY_WITH_OBJECT, | ||
JsonTestData.COMPLEX_1, | ||
JsonTestData.ARRAY_OF_NUMBERS, | ||
JsonTestData.ARRAY_OF_STRING, | ||
JsonTestData.COMPLEX_2, | ||
JsonTestData.EMPTY_OBJECT, | ||
JsonTestData.NULL_OBJECT, | ||
JsonTestData.FB_JSON | ||
}; | ||
|
||
private static final String[] directives = new String[]{ | ||
"set-column body json:Parse(body)" | ||
}; | ||
|
||
@Test | ||
public void testJsonTypes() throws Exception { | ||
SchemaConverter converter = new SchemaConverter(); | ||
RecordConvertor recordConvertor = new RecordConvertor(); | ||
JsonParser parser = new JsonParser(); | ||
RecipePipeline executor = TestingRig.execute(directives); | ||
for (String test : TESTS) { | ||
Row row = new Row("body", test); | ||
|
||
List<Row> expectedRows = executor.execute(Lists.newArrayList(row)); | ||
byte[] serializedRows = new RowSerializer().fromRows(expectedRows); | ||
List<Row> gotRows = new RowSerializer().toRows(serializedRows); | ||
Assert.assertArrayEquals(expectedRows.toArray(), gotRows.toArray()); | ||
} | ||
} | ||
|
||
@Test | ||
public void testLogicalTypes() throws Exception { | ||
Row testRow = new Row(); | ||
testRow.add("id", 1); | ||
testRow.add("name", "abc"); | ||
testRow.add("date", LocalDate.of(2018, 11, 11)); | ||
testRow.add("time", LocalTime.of(11, 11, 11)); | ||
testRow.add("timestamp", ZonedDateTime.of(2018, 11, 11, 11, 11, 11, 0, ZoneId.of("UTC"))); | ||
testRow.add("bigdecimal", new BigDecimal(new BigInteger("123456"), 5)); | ||
testRow.add("datetime", LocalDateTime.now()); | ||
List<Row> expectedRows = Collections.singletonList(testRow); | ||
byte[] serializedRows = new RowSerializer().fromRows(expectedRows); | ||
List<Row> gotRows = new RowSerializer().toRows(serializedRows); | ||
Assert.assertArrayEquals(expectedRows.toArray(), gotRows.toArray()); | ||
} | ||
|
||
@Test | ||
public void testCollectionTypes() throws Exception { | ||
List<Integer> list = new ArrayList<>(); | ||
list.add(null); | ||
list.add(1); | ||
list.add(2); | ||
Set<Integer> set = new HashSet<>(); | ||
set.add(null); | ||
set.add(1); | ||
set.add(2); | ||
Map<String, Integer> map = new HashMap<>(); | ||
map.put("null", null); | ||
map.put("1", 1); | ||
map.put("2", 2); | ||
|
||
Row testRow = new Row(); | ||
testRow.add("list", list); | ||
testRow.add("set", set); | ||
testRow.add("map", map); | ||
|
||
List<Row> expectedRows = Collections.singletonList(testRow); | ||
byte[] serializedRows = new RowSerializer().fromRows(expectedRows); | ||
List<Row> gotRows = new RowSerializer().toRows(serializedRows); | ||
Assert.assertArrayEquals(expectedRows.toArray(), gotRows.toArray()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters