All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gwtplatform.dispatch.rest.client.serialization.JsonSerialization Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 ArcBees Inc.
 *
 * Licensed 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 com.gwtplatform.dispatch.rest.client.serialization;

import java.util.List;

import javax.inject.Inject;
import javax.ws.rs.core.MediaType;

import com.github.nmorel.gwtjackson.client.JsonDeserializationContext;
import com.github.nmorel.gwtjackson.client.JsonSerializationContext;
import com.github.nmorel.gwtjackson.client.ObjectMapper;
import com.github.nmorel.gwtjackson.client.exception.JsonMappingException;
import com.gwtplatform.dispatch.rest.shared.ContentType;

/**
 * JSON implementation of {@link Serialization}. It acts as a facade to 
 * gwt-jackson.
 */
public class JsonSerialization implements Serialization {
    private static final String VOID = Void.class.getName();
    private static final ContentType CONTENT_TYPE = ContentType.valueOf(MediaType.APPLICATION_JSON + "; charset=utf-8");

    private final JacksonMapperProvider jacksonMapperProvider;
    private final JsonSerializationContext.Builder serializationContext;
    private final JsonDeserializationContext.Builder deserializationContext;

    @Inject
    JsonSerialization(JacksonMapperProvider jacksonMapperProvider) {
        this.jacksonMapperProvider = jacksonMapperProvider;

        deserializationContext = JsonDeserializationContext.builder()
                .failOnUnknownProperties(false);
        serializationContext = JsonSerializationContext.builder();
    }

    @Override
    public boolean canSerialize(String type, List contentTypes) {
        return matchesContentType(contentTypes) &&
                (VOID.equals(type) || jacksonMapperProvider.hasMapper(type));
    }

    @Override
    public boolean canDeserialize(String type, ContentType contentType) {
        return VOID.equals(type)
                || (CONTENT_TYPE.isCompatible(contentType) && jacksonMapperProvider.hasMapper(type));
    }

    @Override
    public  SerializedValue serialize(String type, List contentTypes, T o) {
        if (VOID.equals(type) || o == null) {
            return null;
        }

        ObjectMapper mapper = jacksonMapperProvider.getMapper(type);
        String json;
        try {
            json = mapper.write(o, getSerializationContext().build());
        } catch (JsonMappingException e) {
            throw new SerializationException("Unable to serialize request body. An unexpected error occurred.", e);
        }

        return new SerializedValue(CONTENT_TYPE, json);
    }

    @Override
    public  T deserialize(String type, ContentType contentType, String json) {
        if (VOID.equals(type) || json == null || json.isEmpty()) {
            return null;
        }

        ObjectMapper mapper = jacksonMapperProvider.getMapper(type);

        try {
            return mapper.read(json, getDeserializationContext().build());
        } catch (JsonMappingException e) {
            throw new SerializationException("Unable to deserialize response. An unexpected error occurred.", e);
        }
    }

    protected JsonSerializationContext.Builder getSerializationContext() {
        return serializationContext;
    }

    protected JsonDeserializationContext.Builder getDeserializationContext() {
        return deserializationContext;
    }

    private boolean matchesContentType(List contentTypes) {
        boolean contentTypeMatch = false;
        for (ContentType contentType : contentTypes) {
            if (CONTENT_TYPE.isCompatible(contentType)) {
                contentTypeMatch = true;
                break;
            }
        }
        return contentTypeMatch;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy