Package com.cibuddy.project.configuration.impl.installer

Source Code of com.cibuddy.project.configuration.impl.installer.IndicatorBehaviorConfigurationListener

/*
* Copyright (C) 2012 Mirko Jahn <mirkojahn@gmail.com>
*
* 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.cibuddy.project.configuration.impl.installer;

import com.cibuddy.core.build.configuration.IIndicatorBehaviorConfiguration;
import com.cibuddy.project.configuration.jaxb.v1_0.indicator.Config;
import com.cibuddy.project.configuration.impl.IndicatorBehaviorConfiguration;
import java.io.File;
import java.net.URL;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;
import org.osgi.framework.Bundle;
import org.osgi.framework.ServiceRegistration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Installation Listener for IndicatorBehaviorConfigurations.
*
* @author mirkojahn
* @version 1.0
* @since 1.0
*/
public class IndicatorBehaviorConfigurationListener extends AbstractXMLArtifactInstaller<Config> {

    private static final Logger LOG = LoggerFactory.getLogger(IndicatorBehaviorConfigurationListener.class);
    private static final String packageName = Config.class.getPackage().getName();

    @Override
    String getPackageName() {
        return packageName;
    }

    @Override
    Config getRootTypeInstance() {
        return new Config();
    }

    @Override
    void handle(Config config, URL url, Bundle bundle) {
        try {
            IIndicatorBehaviorConfiguration iibc = new IndicatorBehaviorConfiguration(config);
            List<ServiceRegistration> configServices = new ArrayList<ServiceRegistration>();
            // register the configuration
            if(bundle == null) {
                // manage the services exposed through none bundle related resources (no lifecycle)
                ServiceRegistration  sr = registerConfigurationAsService(iibc, url, IIndicatorBehaviorConfiguration.class);
                configServices.add(sr);
                configuredURLs.put(url, configServices);
            } else {
                // register with another bundle (as soon as that one disappears, the service goes as well)
                ServiceRegistration  sr = registerConfigurationAsService(iibc, url, new Hashtable<String,String>(),new String[]{IIndicatorBehaviorConfiguration.class.getName()}, bundle.getBundleContext());
            }
        } catch (Exception e) {
            LOG.warn("Problems setting up configuration file.",e);
        }
    }
   
}
TOP

Related Classes of com.cibuddy.project.configuration.impl.installer.IndicatorBehaviorConfigurationListener

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.