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

de.javakaffee.web.msm.serializer.javolution.JavolutionTranscoderFactory Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
/*
 * Copyright 2009 Martin Grotzke
 *
 * 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 de.javakaffee.web.msm.serializer.javolution;

import javolution.xml.XMLFormat;

import org.apache.catalina.Loader;
import org.apache.catalina.Manager;

import de.javakaffee.web.msm.MemcachedSessionService.SessionManager;
import de.javakaffee.web.msm.SessionAttributesTranscoder;
import de.javakaffee.web.msm.TranscoderFactory;

/**
 * Creates {@link XStreamTranscoder} instances.
 *
 * @author Martin Grotzke ([email protected]) (initial creation)
 */
public class JavolutionTranscoderFactory implements TranscoderFactory {

    private boolean _copyCollectionsForSerialization;
    private String[] _customConverterClassNames;
    private JavolutionTranscoder _transcoder;

    /**
     * {@inheritDoc}
     */
    public SessionAttributesTranscoder createTranscoder( final SessionManager manager ) {
        return getTranscoder( manager );
    }

    /**
     * Gets/creates a single instance of {@link JavolutionTranscoder}. We need to have a single
     * instance so that {@link XMLFormat}s are not created twice which would lead to errors.
     *
     * @param manager the manager that will be passed to the transcoder.
     * @return for all invocations the same instance of {@link JavolutionTranscoder}.
     */
    private JavolutionTranscoder getTranscoder( final SessionManager manager ) {
        if ( _transcoder == null ) {
            final CustomXMLFormat[] customFormats = loadCustomFormats( manager );
            _transcoder = new JavolutionTranscoder( manager, _copyCollectionsForSerialization, customFormats );
        }
        return _transcoder;
    }

    private CustomXMLFormat[] loadCustomFormats( final SessionManager manager ) {
        if ( _customConverterClassNames == null || _customConverterClassNames.length == 0 ) {
            return null;
        }
        final CustomXMLFormat[] customFormats = new CustomXMLFormat[ _customConverterClassNames.length ];
        for ( int i = 0; i < _customConverterClassNames.length; i++ ) {
            final String className = _customConverterClassNames[i];
            try {
                final CustomXMLFormat xmlFormat = Class.forName( className, true, manager.getContainerClassLoader() )
                    .asSubclass( CustomXMLFormat.class )
                    .newInstance();
                customFormats[i] = xmlFormat;
            } catch ( final Exception e ) {
                throw new RuntimeException( "Could not load custom xml format " + className, e );
            }
        }
        return customFormats;
    }

    /**
     * {@inheritDoc}
     */
    public void setCopyCollectionsForSerialization( final boolean copyCollectionsForSerialization ) {
        _copyCollectionsForSerialization = copyCollectionsForSerialization;
    }

    /**
     * {@inheritDoc}
     */
    @edu.umd.cs.findbugs.annotations.SuppressWarnings("EI_EXPOSE_REP2")
    public void setCustomConverterClassNames( final String[] customConverterClassNames ) {
        _customConverterClassNames = customConverterClassNames;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy