Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2010 Proofpoint, 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.facebook.airlift.json;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.reflect.TypeParameter;
import com.google.common.reflect.TypeToken;
import javax.inject.Inject;
import javax.inject.Provider;
import java.lang.reflect.Type;
import java.util.List;
import java.util.Map;
import static com.fasterxml.jackson.databind.SerializationFeature.INDENT_OUTPUT;
import static java.util.Objects.requireNonNull;
public class JsonCodecFactory
{
private final Provider objectMapperProvider;
private final boolean prettyPrint;
public JsonCodecFactory()
{
this(new ObjectMapperProvider());
}
@Inject
public JsonCodecFactory(Provider objectMapperProvider)
{
this(objectMapperProvider, false);
}
public JsonCodecFactory(Provider objectMapperProvider, boolean prettyPrint)
{
this.objectMapperProvider = objectMapperProvider;
this.prettyPrint = prettyPrint;
}
public JsonCodecFactory prettyPrint()
{
return new JsonCodecFactory(objectMapperProvider, true);
}
public JsonCodec jsonCodec(Class type)
{
requireNonNull(type, "type is null");
return new JsonCodec<>(createObjectMapper(), type);
}
public JsonCodec jsonCodec(Type type)
{
requireNonNull(type, "type is null");
return new JsonCodec<>(createObjectMapper(), type);
}
public JsonCodec jsonCodec(TypeToken type)
{
requireNonNull(type, "type is null");
return new JsonCodec<>(createObjectMapper(), type.getType());
}
public JsonCodec> listJsonCodec(Class type)
{
requireNonNull(type, "type is null");
Type listType = new TypeToken>() {}
.where(new TypeParameter() {}, type)
.getType();
return new JsonCodec<>(createObjectMapper(), listType);
}
public JsonCodec> listJsonCodec(JsonCodec type)
{
requireNonNull(type, "type is null");
Type listType = new TypeToken>() {}
.where(new TypeParameter() {}, type.getTypeToken())
.getType();
return new JsonCodec<>(createObjectMapper(), listType);
}
public JsonCodec