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

org.wisdom.framework.jpa.PersistentBundle Maven / Gradle / Ivy

The newest version!
/*
 * #%L
 * Wisdom-Framework
 * %%
 * Copyright (C) 2013 - 2014 Wisdom Framework
 * %%
 * 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.
 * #L%
 */
package org.wisdom.framework.jpa;

import com.google.common.base.Strings;
import org.apache.felix.ipojo.*;
import org.osgi.framework.Bundle;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.wisdom.database.jdbc.service.DataSources;
import org.wisdom.framework.jpa.model.Persistence;

import javax.sql.DataSource;
import java.util.Dictionary;
import java.util.HashSet;
import java.util.Hashtable;
import java.util.Set;

/**
 * This class represents a bundle with one or more valid Persistence Units. It computes the instance configuration to use to create the instance that will handle the persistence units.
 */
public class PersistentBundle {

    /**
     * The set of created instance.
     */
    private final Set instances = new HashSet<>();

    /**
     * The bundle object.
     */
    final Bundle bundle;
    /**
     * The factory to use.
     */
    private final Factory factory;

    final static Logger LOGGER = LoggerFactory.getLogger(PersistentBundle.class);

    /**
     * We found some persistence units for this bridge so create this manager.
     *
     * @param bundle  the actual bundle for the persistence units
     * @param set     a set of persistence units.
     * @param factory the PersistenceUnit factory
     */
    public PersistentBundle(Bundle bundle, Set set,
                            Factory factory) throws Exception {
        LOGGER.info("Creating persistence bundle for {}", bundle.getBundleId());
        this.factory = factory;
        this.bundle = bundle;

        for (Persistence.PersistenceUnit pu : set) {
            instances.add(createUnitInstance(pu));
        }
    }

    /**
     * Disposes the created instances.
     */
    public void destroy() {
        for (ComponentInstance instance : instances) {
            instance.dispose();
        }
        instances.clear();
    }

    /**
     * Creates the component instance for the given unit.
     * This function computes the filters to retrieve the data sources. If a data source is not set in inject a
     * filter that will never match.
     *
     * @param unit the persistence unit
     * @return the created instance
     * @throws MissingHandlerException   the instance cannot be created because of a missing handler
     * @throws UnacceptableConfiguration the configuration if invalid.
     * @throws ConfigurationException    the configuration is rejected.
     */
    private ComponentInstance createUnitInstance(Persistence.PersistenceUnit unit) throws MissingHandlerException,
            UnacceptableConfiguration, ConfigurationException {
        LOGGER.info("Creating persistence unit instance for unit {}", unit.getName());
        Dictionary configuration = new Hashtable<>();
        configuration.put("bundle", this);
        configuration.put("unit", unit);
        Dictionary filters = new Hashtable<>();
        if (!Strings.isNullOrEmpty(unit.getJtaDataSource())) {
            filters.put("jta-ds", createDataSourceFilter(unit.getJtaDataSource()));
            filters.put("ds", createDataSourceFilter(unit.getJtaDataSource()));
        }
        if (! Strings.isNullOrEmpty(unit.getNonJtaDataSource())) {
            filters.put("ds", createDataSourceFilter(unit.getNonJtaDataSource()));
            if (filters.get("jta-ds") == null) {
                filters.put("jta-ds", createDataSourceFilter(unit.getNonJtaDataSource()));
            }
        }
        configuration.put("requires.filters", filters);
        LOGGER.info("Creating persistence unit instance for unit {} : {}", unit.getName(), configuration);
        return factory.createComponentInstance(configuration);
    }

    static String createDataSourceFilter(String name) {
        if (name == null) {
//            return "(" + DataSources.DATASOURCE_NAME_PROPERTY + "= not-set)";
            return null;
        }
        if (name.startsWith("osgi:service/" + DataSource.class.getName() + "/")) {
            return name.substring(("osgi:service/" + DataSource.class.getName() + "/").length());
        }
        if (name.startsWith("(") && name.endsWith(")")) {
            return name;
        }
        return "(" + DataSources.DATASOURCE_NAME_PROPERTY + "=" + name + ")";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy