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

org.apache.openejb.config.AppContextConfigDeployer Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.openejb.config;

import org.apache.openejb.OpenEJBException;
import org.apache.openejb.config.sys.SaxAppCtxConfig;
import org.apache.openejb.loader.IO;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;

import javax.xml.parsers.ParserConfigurationException;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;

// this deployer is able to be called multiple times
public class AppContextConfigDeployer implements DynamicDeployer {
    private static final String CONFIG_NAME = "app-ctx.xml";

    private final EnvEntriesPropertiesDeployer envEntriesDeployer;
    private final BeanProperties beanPropertiesDeployer;

    public AppContextConfigDeployer(final EnvEntriesPropertiesDeployer envEntriesPropertiesDeployer, final BeanProperties beanProperties) {
        envEntriesDeployer = envEntriesPropertiesDeployer;
        beanPropertiesDeployer = beanProperties;
    }

    @Override
    public AppModule deploy(final AppModule appModule) throws OpenEJBException {
        final Collection deploymentModule = appModule.getDeploymentModule();
        deploymentModule.add(appModule);

        // parse files once since it is application scoped (we don't want duplicates)
        final Set alreadyParsed = new HashSet();

        for (final DeploymentModule module : deploymentModule) {
            final Object o = module.getAltDDs().get(CONFIG_NAME);
            if (o instanceof URL) {
                final URL url = (URL) o;
                if (alreadyParsed.add(url.toExternalForm())) {
                    configure(appModule, url);
                }
            } else if (o != null) {
                throw new OpenEJBException("Unknown app-ctx.xml type: " + o.getClass().getName());
            }
        }

        alreadyParsed.clear();

        return appModule;
    }

    private void configure(final AppModule appModule, final URL url) throws OpenEJBException {
        InputStream is = null;
        try {
            is = IO.read(url);
            SaxAppCtxConfig.parse(appModule, new InputSource(is), envEntriesDeployer, beanPropertiesDeployer); // work directly on the module/deployer, avoid temp objects
        } catch (final SAXException e) {
            throw new OpenEJBException("can't parse " + url.toExternalForm(), e);
        } catch (final ParserConfigurationException e) {
            throw new OpenEJBException("can't configure the parser for " + url.toExternalForm(), e);
        } catch (final IOException e) {
            throw new OpenEJBException("can't read " + url.toExternalForm(), e);
        } finally {
            IO.close(is);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy