com.farao_community.farao.rao_runner.api.JsonApiConverter Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2021, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package com.farao_community.farao.rao_runner.api;
import com.farao_community.farao.rao_runner.api.exceptions.RaoRunnerException;
import com.farao_community.farao.rao_runner.api.resource.RaoFailureResponse;
import com.farao_community.farao.rao_runner.api.resource.RaoRequest;
import com.farao_community.farao.rao_runner.api.resource.RaoSuccessResponse;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.jdk8.Jdk8Module;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import com.github.jasminb.jsonapi.JSONAPIDocument;
import com.github.jasminb.jsonapi.ResourceConverter;
import com.github.jasminb.jsonapi.SerializationFeature;
import com.github.jasminb.jsonapi.exceptions.DocumentSerializationException;
import com.github.jasminb.jsonapi.models.errors.Error;
/**
* JSON API conversion component
* Allows automatic conversion from resources towards JSON API formatted bytes.
*
* @author Mohamed BenRejeb {@literal }
*/
public class JsonApiConverter {
private final ObjectMapper objectMapper;
public JsonApiConverter() {
objectMapper = new ObjectMapper();
objectMapper.registerModule(new Jdk8Module());
objectMapper.registerModule(new JavaTimeModule());
}
public T fromJsonMessage(byte[] jsonMessage, Class clazz) {
ResourceConverter converter = createConverter();
return converter.readDocument(jsonMessage, clazz).get();
}
public byte[] toJsonMessage(T jsonApiObject) {
ResourceConverter converter = createConverter();
JSONAPIDocument> jsonApiDocument = jsonApiObject instanceof Error jsonApiObjectError
? new JSONAPIDocument<>(jsonApiObjectError)
: new JSONAPIDocument<>(jsonApiObject);
try {
return converter.writeDocument(jsonApiDocument);
} catch (DocumentSerializationException e) {
throw new RaoRunnerException("Exception occurred during message conversion", e);
}
}
private ResourceConverter createConverter() {
ResourceConverter converter = new ResourceConverter(objectMapper, RaoRequest.class, RaoSuccessResponse.class, RaoFailureResponse.class);
converter.disableSerializationOption(SerializationFeature.INCLUDE_META);
return converter;
}
}