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

com.landawn.abacus.parser.JacksonMapper Maven / Gradle / Ivy

Go to download

A general programming library in Java/Android. It's easy to learn and simple to use with concise and powerful APIs.

There is a newer version: 5.2.4
Show newest version
/*
 * Copyright (C) 2015 HaiYang Li
 *
 * 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.landawn.abacus.parser;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Reader;
import java.io.Writer;
import java.util.ArrayList;
import java.util.List;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.landawn.abacus.exception.UncheckedIOException;

/**
 *
 * @author Haiyang Li
 * @since 0.8
 */
final class JacksonMapper extends AbstractObjectMapper {

    private static final List mapperPool = new ArrayList<>(POOL_SIZE);

    private final JacksonMapperConfig defaultJacksonMapperConfig;

    JacksonMapper() {
        this(null);
    }

    JacksonMapper(final JacksonMapperConfig jmc) {
        this.defaultJacksonMapperConfig = jmc != null ? jmc : new JacksonMapperConfig();
    }

    /**
     *
     * @param obj
     * @param config
     * @return
     */
    @Override
    public String write(Object obj, JacksonMapperConfig config) {
        final ObjectMapper mapper = create(config);

        try {
            return mapper.writeValueAsString(obj);
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            recycle(mapper);
        }
    }

    /**
     *
     * @param output
     * @param obj
     * @param config
     */
    @Override
    public void write(File output, Object obj, JacksonMapperConfig config) {
        final ObjectMapper mapper = create(config);

        try {
            mapper.writeValue(output, obj);
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            recycle(mapper);
        }
    }

    /**
     *
     * @param output
     * @param obj
     * @param config
     */
    @Override
    public void write(OutputStream output, Object obj, JacksonMapperConfig config) {
        final ObjectMapper mapper = create(config);

        try {
            mapper.writeValue(output, obj);
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            recycle(mapper);
        }

    }

    /**
     *
     * @param output
     * @param obj
     * @param config
     */
    @Override
    public void write(Writer output, Object obj, JacksonMapperConfig config) {
        final ObjectMapper mapper = create(config);

        try {
            mapper.writeValue(output, obj);
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            recycle(mapper);
        }
    }

    /**
     *
     * @param 
     * @param cls
     * @param from
     * @param config
     * @return
     */
    @Override
    public  T read(Class cls, String from, JacksonMapperConfig config) {
        final ObjectMapper mapper = create(config);

        try {
            return mapper.readValue(from, cls);
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            recycle(mapper);
        }
    }

    /**
     *
     * @param 
     * @param cls
     * @param from
     * @param config
     * @return
     */
    @Override
    public  T read(Class cls, File from, JacksonMapperConfig config) {
        final ObjectMapper mapper = create(config);

        try {
            return mapper.readValue(from, cls);
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            recycle(mapper);
        }
    }

    /**
     *
     * @param 
     * @param cls
     * @param from
     * @param config
     * @return
     */
    @Override
    public  T read(Class cls, InputStream from, JacksonMapperConfig config) {
        final ObjectMapper mapper = create(config);

        try {
            return mapper.readValue(from, cls);
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        }
    }

    /**
     *
     * @param 
     * @param cls
     * @param from
     * @param config
     * @return
     */
    @Override
    public  T read(Class cls, Reader from, JacksonMapperConfig config) {
        final ObjectMapper mapper = create(config);

        try {
            return mapper.readValue(from, cls);
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            recycle(mapper);
        }
    }

    /**
     *
     * @param c
     * @return
     */
    ObjectMapper create(JacksonMapperConfig c) {
        ObjectMapper mapper = null;
        synchronized (mapperPool) {
            if (mapperPool.size() > 0) {
                mapper = mapperPool.remove(mapperPool.size() - 1);
            } else {
                mapper = new ObjectMapper();

                if (c == null) {
                    c = defaultJacksonMapperConfig;
                }
            }
        }

        if (c == null) {
            return mapper;
        }

        mapper.setConfig(c.getSerializationConfig());
        mapper.setConfig(c.getDeserializationConfig());

        return mapper;
    }

    /**
     *
     * @param mapper
     */
    void recycle(ObjectMapper mapper) {
        if (mapper == null) {
            return;
        }

        synchronized (mapperPool) {
            if (mapperPool.size() < POOL_SIZE) {

                mapper.setConfig(defaultJacksonMapperConfig.getSerializationConfig());
                mapper.setConfig(defaultJacksonMapperConfig.getDeserializationConfig());

                mapperPool.add(mapper);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy