org.envirocar.server.rest.decoding.json.AbstractJSONMessageBodyReader.java Source code

Java tutorial

Introduction

Here is the source code for org.envirocar.server.rest.decoding.json.AbstractJSONMessageBodyReader.java

Source

/*
 * Copyright (C) 2013 The enviroCar project
 *
 * 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 Affero 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 <http://www.gnu.org/licenses/>.
 */
package org.envirocar.server.rest.decoding.json;

import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;

import javax.ws.rs.Consumes;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import javax.ws.rs.ext.MessageBodyReader;

import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectReader;
import com.fasterxml.jackson.databind.node.JsonNodeFactory;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.google.inject.Inject;

import org.envirocar.server.rest.JSONConstants;

/**
 * TODO JavaDoc
 *
 * @author Christian Autermann <autermann@uni-muenster.de>
 */
@Consumes(MediaType.APPLICATION_JSON)
public abstract class AbstractJSONMessageBodyReader<T> implements MessageBodyReader<T> {
    @Inject
    private ObjectReader reader;
    @Inject
    private JsonNodeFactory factory;
    private final Class<T> classType;

    public AbstractJSONMessageBodyReader(Class<T> classType) {
        this.classType = classType;
    }

    @Override
    public boolean isReadable(Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
        return this.classType.isAssignableFrom(type) && mediaType.isCompatible(MediaType.APPLICATION_JSON_TYPE);
    }

    @Override
    public T readFrom(Class<T> c, Type gt, Annotation[] a, MediaType mt, MultivaluedMap<String, String> h,
            InputStream in) throws IOException, WebApplicationException {
        try {
            return decode(reader.readTree(in), mt);
        } catch (JsonParseException e) {
            ObjectNode error = factory.objectNode();
            error.put(JSONConstants.ERROR_KEY, e.getMessage());
            throw new WebApplicationException(Response.status(Status.BAD_REQUEST)
                    .type(MediaType.APPLICATION_JSON_TYPE).entity(error).build());
        }
    }

    public abstract T decode(JsonNode j, MediaType mt);
}