blob: bf8b7912e08c79f7b4a32a7a1e1aaee1cc1f3925 [file] [log] [blame]
/*
* 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.reef.runtime.multi.utils;
import org.apache.avro.io.*;
import org.apache.avro.specific.SpecificDatumReader;
import org.apache.avro.specific.SpecificDatumWriter;
import org.apache.reef.runtime.multi.utils.avro.AvroMultiRuntimeDefinition;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
/**
* Serializer for MultiRuntimeDefinition.
*/
public final class MultiRuntimeDefinitionSerializer {
private static final String CHARSET_NAME = "UTF-8";
/**
* Serializes MultiRuntimeDefinition.
* @param runtimeDefinition the Avro object to toString
* @return Serialized avro string
*/
public String toString(final AvroMultiRuntimeDefinition runtimeDefinition){
final DatumWriter<AvroMultiRuntimeDefinition> configurationWriter =
new SpecificDatumWriter<>(AvroMultiRuntimeDefinition.class);
final String serializedConfiguration;
try (ByteArrayOutputStream out = new ByteArrayOutputStream()) {
final JsonEncoder encoder = EncoderFactory.get().jsonEncoder(runtimeDefinition.getSchema(), out);
configurationWriter.write(runtimeDefinition, encoder);
encoder.flush();
out.flush();
serializedConfiguration = out.toString(CHARSET_NAME);
} catch (final IOException e) {
throw new RuntimeException(e);
}
return serializedConfiguration;
}
/**
* Deserializes avro definition.
* @param serializedRuntimeDefinition serialized definition
* @return Avro object
* @throws IOException
*/
public AvroMultiRuntimeDefinition fromString(final String serializedRuntimeDefinition) throws
IOException{
final JsonDecoder decoder = DecoderFactory.get().
jsonDecoder(AvroMultiRuntimeDefinition.getClassSchema(), serializedRuntimeDefinition);
final SpecificDatumReader<AvroMultiRuntimeDefinition> reader = new SpecificDatumReader<>(AvroMultiRuntimeDefinition
.class);
final AvroMultiRuntimeDefinition rd = reader.read(null, decoder);
return rd;
}
}