Package net.kuujo.vertigo.util.serialization.impl

Source Code of net.kuujo.vertigo.util.serialization.impl.JacksonSerializer

/*
* Copyright 2014 the original author or authors.
*
* 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 net.kuujo.vertigo.util.serialization.impl;

import net.kuujo.vertigo.util.serialization.DeserializationException;
import net.kuujo.vertigo.util.serialization.SerializationException;
import net.kuujo.vertigo.util.serialization.Serializer;

import org.vertx.java.core.json.JsonArray;
import org.vertx.java.core.json.JsonObject;

import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.AnnotationIntrospector;
import com.fasterxml.jackson.databind.ObjectMapper;

/**
* A Jackson-based serializer implementation.
*
* @author <a href="http://github.com/kuujo">Jordan Halterman</a>
*/
public class JacksonSerializer implements Serializer {
  private final ObjectMapper mapper;

  public JacksonSerializer() {
    this(new InclusiveAnnotationIntrospector());
  }

  public JacksonSerializer(AnnotationIntrospector introspector) {
    mapper = new ObjectMapper();
    mapper.setAnnotationIntrospector(introspector);
  }

  @Override
  public <T> byte[] serializeToBytes(T object) {
    try {
      return mapper.writeValueAsBytes(object);
    } catch (Exception e) {
      throw new SerializationException(e.getMessage());
    }
  }

  @Override
  public <T> T deserializeBytes(byte[] json, Class<T> type) {
    try {
      return mapper.readValue(json, type);
    } catch (Exception e) {
      throw new SerializationException(e.getMessage());
    }
  }

  @Override
  public <T> T deserializeBytes(byte[] json, TypeReference<T> type) {
    try {
      return mapper.readValue(json, type);
    } catch (Exception e) {
      throw new SerializationException(e.getMessage());
    }
  }

  @Override
  public <T> String serializeToString(T object) {
    try {
      return mapper.writeValueAsString(object);
    } catch (Exception e) {
      throw new SerializationException(e.getMessage());
    }
  }

  @Override
  public <T> T deserializeString(String json, Class<T> type) {
    try {
      return mapper.readValue(json, type);
    } catch (Exception e) {
      throw new SerializationException(e.getMessage());
    }
  }

  @Override
  public <T> T deserializeString(String json, TypeReference<T> type) {
    try {
      return mapper.readValue(json, type);
    } catch (Exception e) {
      throw new SerializationException(e.getMessage());
    }
  }

  @Override
  public <T> JsonObject serializeToObject(T object) {
    try {
      return new JsonObject(mapper.writeValueAsString(object));
    } catch (Exception e) {
      throw new SerializationException(e.getMessage());
    }
  }

  @Override
  public <T> T deserializeObject(JsonObject json, Class<T> type) {
    try {
      return mapper.readValue(json.encode(), type);
    } catch (Exception e) {
      throw new DeserializationException(e.getMessage());
    }
  }

  @Override
  public <T> T deserializeObject(JsonObject json, TypeReference<T> type) {
    try {
      return mapper.readValue(json.encode(), type);
    } catch (Exception e) {
      throw new DeserializationException(e.getMessage());
    }
  }

  @Override
  public <T> T deserializeObject(JsonArray json, Class<T> type) {
    try {
      return mapper.readValue(json.encode(), type);
    } catch (Exception e) {
      throw new DeserializationException(e.getMessage());
    }
  }

  @Override
  public <T> T deserializeObject(JsonArray json, TypeReference<T> type) {
    try {
      return mapper.readValue(json.encode(), type);
    } catch (Exception e) {
      throw new DeserializationException(e.getMessage());
    }
  }

}
TOP

Related Classes of net.kuujo.vertigo.util.serialization.impl.JacksonSerializer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.