org.apache.flink.formats.json.JsonRowDataDeserializationSchema Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.flink.formats.json;
import org.apache.flink.annotation.Internal;
import org.apache.flink.api.common.typeinfo.TypeInformation;
import org.apache.flink.formats.common.TimestampFormat;
import org.apache.flink.table.data.RowData;
import org.apache.flink.table.types.logical.RowType;
import org.apache.flink.shaded.jackson2.com.fasterxml.jackson.databind.JsonNode;
import javax.annotation.Nullable;
import java.io.IOException;
import static java.lang.String.format;
import static org.apache.flink.util.Preconditions.checkNotNull;
/**
* Deserialization schema from JSON to Flink Table/SQL internal data structure {@link RowData}.
*
* Deserializes a byte[]
message as a JSON object and reads the specified fields.
*
*
Failures during deserialization are forwarded as wrapped IOExceptions.
*/
@Internal
public class JsonRowDataDeserializationSchema extends AbstractJsonDeserializationSchema {
private static final long serialVersionUID = 1L;
/**
* Runtime converter that converts {@link JsonNode}s into objects of Flink SQL internal data
* structures.
*/
private final JsonToRowDataConverters.JsonToRowDataConverter runtimeConverter;
public JsonRowDataDeserializationSchema(
RowType rowType,
TypeInformation resultTypeInfo,
boolean failOnMissingField,
boolean ignoreParseErrors,
TimestampFormat timestampFormat) {
super(rowType, resultTypeInfo, failOnMissingField, ignoreParseErrors, timestampFormat);
this.runtimeConverter =
new JsonToRowDataConverters(failOnMissingField, ignoreParseErrors, timestampFormat)
.createConverter(checkNotNull(rowType));
}
@Override
public RowData deserialize(@Nullable byte[] message) throws IOException {
if (message == null) {
return null;
}
try {
return convertToRowData(deserializeToJsonNode(message));
} catch (Throwable t) {
if (ignoreParseErrors) {
return null;
}
throw new IOException(
format("Failed to deserialize JSON '%s'.", new String(message)), t);
}
}
public JsonNode deserializeToJsonNode(byte[] message) throws IOException {
return objectMapper.readTree(message);
}
public RowData convertToRowData(JsonNode message) {
return (RowData) runtimeConverter.convert(message);
}
}