![JAR search and dependency download from the Maven repository](/logo.png)
net.officefloor.web.json.JacksonHttpObjectResponderFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of officejson_default Show documentation
Show all versions of officejson_default Show documentation
OfficeFloor plug-in for Default JSON integration with Web
/*-
* #%L
* JSON default for Web
* %%
* Copyright (C) 2005 - 2020 Daniel Sagenschneider
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
* #L%
*/
package net.officefloor.web.json;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.ObjectMapper;
import net.officefloor.frame.api.escalate.Escalation;
import net.officefloor.server.http.HttpHeaderValue;
import net.officefloor.server.http.HttpResponse;
import net.officefloor.server.http.ServerHttpConnection;
import net.officefloor.server.stream.ServerOutputStream;
import net.officefloor.web.build.HttpObjectResponder;
import net.officefloor.web.build.HttpObjectResponderFactory;
/**
* Jackson {@link HttpObjectResponderFactory}.
*
* @author Daniel Sagenschneider
*/
public class JacksonHttpObjectResponderFactory implements HttpObjectResponderFactory {
/**
* Obtains the entity for the {@link Escalation}.
*
* @param escalation {@link Throwable} {@link Escalation}.
* @param mapper {@link ObjectMapper} to write entity.
* @return Entity for the {@link Escalation}.
* @throws IOException If fails to write {@link Escalation}.
*/
public static String getEntity(Throwable escalation, ObjectMapper mapper) throws IOException {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
writeError(buffer, escalation, initiateObjectMapper(mapper));
return buffer.toString();
}
/**
* Initialises the {@link ObjectMapper}.
*
* @param mapper {@link ObjectMapper}.
* @return Initialised {@link ObjectMapper}.
*/
private static ObjectMapper initiateObjectMapper(ObjectMapper mapper) {
// Always disable close on finish
mapper.disable(JsonGenerator.Feature.AUTO_CLOSE_TARGET);
// Return the mapper for use
return mapper;
}
/**
* Writes the {@link Escalation}.
*
* @param output {@link OutputStream} to write the {@link Escalation}.
* @param escalation {@link Throwable} {@link Escalation}.
* @throws IOException If fails to write.
*/
private static void writeError(OutputStream output, Throwable escalation, ObjectMapper mapper) throws IOException {
output.write(ERROR_MESSAGE_PREFIX);
// Write the error detail
String message = escalation.getMessage();
if ((message == null) || (message.trim().length() == 0)) {
message = escalation.getClass().getSimpleName();
}
mapper.writeValue(output, message);
output.write(ERROR_MESSAGE_SUFFIX);
}
/**
* {@link ObjectMapper}.
*/
private final ObjectMapper mapper;
/**
* Content-Type
.
*/
private static final HttpHeaderValue contentType = new HttpHeaderValue("application/json");
/**
* Error message prefix.
*/
private static final byte[] ERROR_MESSAGE_PREFIX = "{\"error\":"
.getBytes(ServerHttpConnection.DEFAULT_HTTP_ENTITY_CHARSET);
/**
* Error message suffix.
*/
private static final byte[] ERROR_MESSAGE_SUFFIX = "}".getBytes(ServerHttpConnection.DEFAULT_HTTP_ENTITY_CHARSET);
/**
* Initiate with the {@link ObjectMapper}.
*
* @param mapper {@link ObjectMapper}.
*/
public JacksonHttpObjectResponderFactory(ObjectMapper mapper) {
this.mapper = initiateObjectMapper(mapper);
}
/*
* ============== HttpObjectResponderFactory ===============
*/
@Override
public String getContentType() {
return contentType.getValue();
}
@Override
public HttpObjectResponder createHttpObjectResponder(Class objectType) {
// Create the type for efficient execution
JavaType javaType = this.mapper.constructType(objectType);
// Determine if can deserialise type
if (!mapper.canDeserialize(javaType)) {
return null;
}
// Return the object responder
return new HttpObjectResponder() {
@Override
public String getContentType() {
return contentType.getValue();
}
@Override
public Class getObjectType() {
return objectType;
}
@Override
public void send(T object, ServerHttpConnection connection) throws IOException {
HttpResponse response = connection.getResponse();
response.setContentType(contentType, null);
JacksonHttpObjectResponderFactory.this.mapper.writeValue(response.getEntity(), object);
}
};
}
@Override
public HttpObjectResponder createHttpEscalationResponder(Class escalationType) {
// Return the object responder
return new HttpObjectResponder() {
@Override
public String getContentType() {
return contentType.getValue();
}
@Override
public Class getObjectType() {
return escalationType;
}
@Override
public void send(E escalation, ServerHttpConnection connection) throws IOException {
HttpResponse response = connection.getResponse();
response.setContentType(contentType, null);
ServerOutputStream output = response.getEntity();
writeError(output, escalation, JacksonHttpObjectResponderFactory.this.mapper);
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy