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

com.landawn.abacus.parser.JAXBParser 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.Map;

import org.w3c.dom.Node;

import com.landawn.abacus.exception.ParseException;
import com.landawn.abacus.exception.UncheckedIOException;
import com.landawn.abacus.util.BufferedReader;
import com.landawn.abacus.util.BufferedWriter;
import com.landawn.abacus.util.IOUtil;
import com.landawn.abacus.util.N;
import com.landawn.abacus.util.Objectory;
import com.landawn.abacus.util.XMLUtil;

import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.Unmarshaller;

/**
 *
 * @author Haiyang Li
 * @since 0.8
 */
final class JAXBParser extends AbstractXMLParser {

    JAXBParser() {
    }

    JAXBParser(final XMLSerializationConfig xsc, final XMLDeserializationConfig xdc) {
        super(xsc, xdc);
    }

    /**
     *
     * @param obj
     * @param config
     * @return
     */
    @Override
    public String serialize(Object obj, XMLSerializationConfig config) {
        if (obj == null) {
            return N.EMPTY_STRING;
        }

        final BufferedWriter bw = Objectory.createBufferedWriter();

        try {
            write(bw, obj, config);

            return bw.toString();
        } finally {
            Objectory.recycle(bw);
        }
    }

    /**
     *
     * @param file
     * @param obj
     * @param config
     */
    @Override
    public void serialize(File file, Object obj, XMLSerializationConfig config) {
        OutputStream os = null;

        try {
            createNewFileIfNotExists(file);

            os = IOUtil.newFileOutputStream(file);

            serialize(os, obj, config);

            os.flush();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            IOUtil.close(os);
        }
    }

    /**
     *
     * @param os
     * @param obj
     * @param config
     */
    @Override
    public void serialize(OutputStream os, Object obj, XMLSerializationConfig config) {
        final BufferedWriter bw = Objectory.createBufferedWriter(os);

        try {
            write(bw, obj, config);

            bw.flush();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            Objectory.recycle(bw);
        }
    }

    /**
     *
     * @param writer
     * @param obj
     * @param config
     */
    @Override
    public void serialize(Writer writer, Object obj, XMLSerializationConfig config) {
        boolean isBufferedWriter = writer instanceof BufferedWriter || writer instanceof java.io.BufferedWriter;
        final Writer bw = isBufferedWriter ? writer : Objectory.createBufferedWriter(writer);

        try {
            write(bw, obj, config);

            bw.flush();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } finally {
            if (!isBufferedWriter) {
                Objectory.recycle((BufferedWriter) bw);
            }
        }
    }

    /**
     *
     * @param writer
     * @param obj
     * @param config
     */
    protected void write(Writer writer, Object obj, XMLSerializationConfig config) {
        if (config != null && N.notNullOrEmpty(config.getIgnoredPropNames())) {
            throw new ParseException("'ignoredPropNames' is not supported");
        }

        if (obj == null) {
            try {
                IOUtil.write(writer, N.EMPTY_STRING);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }

            return;
        }

        final Marshaller marshaller = XMLUtil.createMarshaller(obj.getClass());

        try {
            marshaller.marshal(obj, writer);

            writer.flush();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } catch (JAXBException e) {
            throw new ParseException(e);
        }
    }

    /**
     *
     * @param 
     * @param targetClass
     * @param st
     * @param config
     * @return
     */
    @Override
    public  T deserialize(Class targetClass, String st, XMLDeserializationConfig config) {
        if (N.isNullOrEmpty(st)) {
            return N.defaultValueOf(targetClass);
        }

        final BufferedReader br = Objectory.createBufferedReader(st);

        try {
            return read(targetClass, br, config);
        } finally {
            Objectory.recycle(br);
        }
    }

    /**
     *
     * @param 
     * @param targetClass
     * @param file
     * @param config
     * @return
     */
    @Override
    public  T deserialize(Class targetClass, File file, XMLDeserializationConfig config) {
        InputStream is = null;

        try {
            is = IOUtil.newFileInputStream(file);

            return deserialize(targetClass, is, config);
        } finally {
            IOUtil.close(is);
        }
    }

    /**
     *
     * @param 
     * @param targetClass
     * @param is
     * @param config
     * @return
     */
    @Override
    public  T deserialize(Class targetClass, InputStream is, XMLDeserializationConfig config) {
        final BufferedReader br = Objectory.createBufferedReader(is);

        try {
            return read(targetClass, br, config);
        } finally {
            Objectory.recycle(br);
        }
    }

    /**
     *
     * @param 
     * @param targetClass
     * @param reader
     * @param config
     * @return
     */
    @Override
    public  T deserialize(Class targetClass, Reader reader, XMLDeserializationConfig config) {
        //
        // BufferedReader br = ObjectFactory.createBufferedReader(reader);
        //
        // try {
        // return read(cls, br, config);
        // } finally {
        // ObjectFactory.recycle(br);
        // }
        //
        return read(targetClass, reader, config);
    }

    /**
     * 
     *
     * @param  
     * @param targetClass 
     * @param node 
     * @param config 
     * @return 
     * @throws UnsupportedOperationException 
     */
    @Override
    public  T deserialize(Class targetClass, Node node, XMLDeserializationConfig config) throws UnsupportedOperationException {
        throw new UnsupportedOperationException();
    }

    /**
     * 
     *
     * @param  
     * @param nodeClasses 
     * @param is 
     * @param config 
     * @return 
     * @throws UnsupportedOperationException 
     */
    @Override
    public  T deserialize(Map> nodeClasses, InputStream is, XMLDeserializationConfig config) throws UnsupportedOperationException {
        throw new UnsupportedOperationException();
    }

    /**
     * 
     *
     * @param  
     * @param nodeClasses 
     * @param reader 
     * @param config 
     * @return 
     * @throws UnsupportedOperationException 
     */
    @Override
    public  T deserialize(Map> nodeClasses, Reader reader, XMLDeserializationConfig config) throws UnsupportedOperationException {
        throw new UnsupportedOperationException();
    }

    /**
     * 
     *
     * @param  
     * @param nodeClasses 
     * @param node 
     * @param config 
     * @return 
     * @throws UnsupportedOperationException 
     */
    @Override
    public  T deserialize(Map> nodeClasses, Node node, XMLDeserializationConfig config) throws UnsupportedOperationException {
        throw new UnsupportedOperationException();
    }

    /**
     *
     * @param 
     * @param targetClass
     * @param reader
     * @param config
     * @return
     */
    @SuppressWarnings("unchecked")
    protected  T read(Class targetClass, Reader reader, XMLDeserializationConfig config) {
        if (config != null && N.notNullOrEmpty(config.getIgnoredPropNames())) {
            throw new ParseException("'ignoredPropNames' is not supported");
        }

        Unmarshaller unmarshaller = XMLUtil.createUnmarshaller(targetClass);

        try {
            return (T) unmarshaller.unmarshal(reader);
        } catch (JAXBException e) {
            throw new ParseException(e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy