/*
* 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 gobblin.test;
import java.lang.reflect.Type;
import java.util.Map;
import org.apache.avro.Schema;
import org.apache.avro.generic.GenericData;
import org.apache.avro.generic.GenericRecord;
import com.google.gson.Gson;
import com.google.gson.JsonElement;
import com.google.gson.reflect.TypeToken;
import gobblin.configuration.WorkUnitState;
import gobblin.converter.Converter;
import gobblin.converter.DataConversionException;
import gobblin.converter.SingleRecordIterable;
import gobblin.fork.CopyNotSupportedException;
import gobblin.fork.CopyableGenericRecord;
import gobblin.fork.CopyableSchema;
/**
* An implementation of {@link Converter} for tests related to the
* {@link gobblin.fork.ForkOperator}.
*
* @author Yinan Li
*/
@SuppressWarnings("unused")
public class TestConverter2 extends Converter<String, CopyableSchema, String, CopyableGenericRecord> {
private static final Gson GSON = new Gson();
// Expect the input JSON string to be key-value pairs
private static final Type FIELD_ENTRY_TYPE = new TypeToken<Map<String, Object>>() {
}.getType();
@Override
public CopyableSchema convertSchema(String schema, WorkUnitState workUnit) {
return new CopyableSchema(new Schema.Parser().parse(schema));
}
@Override
public Iterable<CopyableGenericRecord> convertRecord(CopyableSchema schema, String inputRecord,
WorkUnitState workUnit)
throws DataConversionException {
JsonElement element = GSON.fromJson(inputRecord, JsonElement.class);
Map<String, Object> fields = GSON.fromJson(element, FIELD_ENTRY_TYPE);
try {
Schema avroSchema = schema.copy();
GenericRecord record = new GenericData.Record(avroSchema);
for (Map.Entry<String, Object> entry : fields.entrySet()) {
if (entry.getValue() instanceof Double) {
// Gson reads the integers in the input Json documents as doubles, so we have
// to convert doubles to integers here as the Avro schema specifies integers.
record.put(entry.getKey(), ((Double) entry.getValue()).intValue());
} else {
record.put(entry.getKey(), entry.getValue());
}
}
return new SingleRecordIterable<CopyableGenericRecord>(new CopyableGenericRecord(record));
} catch (CopyNotSupportedException cnse) {
throw new DataConversionException(cnse);
}
}
}