Package org.wso2.carbon.statistics.internal

Source Code of org.wso2.carbon.statistics.internal.StatisticsServiceComponent

/*
* Copyright 2005-2007 WSO2, Inc. (http://wso2.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 org.wso2.carbon.statistics.internal;

import org.apache.axis2.AxisFault;
import org.apache.axis2.context.ConfigurationContext;
import org.apache.axis2.description.AxisModule;
import org.apache.axis2.engine.AxisConfiguration;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.component.ComponentContext;
import org.wso2.carbon.base.ServerConfiguration;
import org.wso2.carbon.registry.core.service.RegistryService;
import org.wso2.carbon.statistics.StatisticsAxis2ConfigurationContextObserver;
import org.wso2.carbon.statistics.StatisticsConstants;
import org.wso2.carbon.statistics.services.StatisticsAdmin;
import org.wso2.carbon.statistics.services.SystemStatisticsUtil;
import org.wso2.carbon.user.core.service.RealmService;
import org.wso2.carbon.user.core.tenant.TenantManager;
import org.wso2.carbon.utils.Axis2ConfigurationContextObserver;
import org.wso2.carbon.utils.ConfigurationContextService;
import org.wso2.carbon.utils.MBeanRegistrar;

/**
* @scr.component name="statistics.service.component" immediate="true"
* @scr.reference name="config.context.service"
* interface="org.wso2.carbon.utils.ConfigurationContextService"
* cardinality="1..1" policy="dynamic"
* bind="setConfigurationContextService"
* unbind="unsetConfigurationContextService"
* @scr.reference name="server.configuration"
* interface="org.wso2.carbon.base.ServerConfiguration"
* cardinality="1..1" policy="dynamic"
* bind="setServerConfiguration"
* unbind="unsetServerConfiguration"
* @scr.reference name="registry.service"
* interface="org.wso2.carbon.registry.core.service.RegistryService"
* cardinality="1..1" policy="dynamic" bind="setRegistryService"
* unbind="unsetRegistryService"
*/
public class StatisticsServiceComponent {

    private static final Log log = LogFactory.getLog(StatisticsServiceComponent.class);

    private ConfigurationContext configContext;

    private ServerConfiguration serverConfig;

    private ServiceRegistration statAdminServiceRegistration;
    private ServiceRegistration axisConfigCtxObserverServiceRegistration;

    private RegistryService registryService;
    private static RealmService realmService;

    protected void activate(ComponentContext ctxt) {
        try {
            // Engaging StatisticModule as an global module
            configContext.getAxisConfiguration().engageModule(StatisticsConstants.STATISTISTICS_MODULE_NAME);

            //Register Statistics MBean
            registerMBeans(serverConfig);
            //Registering StatisticsAdmin as an OSGi service.
            BundleContext bundleCtx = ctxt.getBundleContext();
            statAdminServiceRegistration = bundleCtx.registerService(SystemStatisticsUtil.class.getName(),
                    new SystemStatisticsUtil(), null);
            axisConfigCtxObserverServiceRegistration =
                    bundleCtx.registerService(Axis2ConfigurationContextObserver.class.getName(),
                            new StatisticsAxis2ConfigurationContextObserver(), null);
            log.debug("Statistics bundle is activated");
        } catch (Throwable e) {
            log.error("Failed to activate Statistics bundle", e);
        }
    }

    public RealmService getRealmService() {
        return realmService;
    }

    protected void setRealmService(RealmService realmService) {
        StatisticsServiceComponent.realmService = realmService;
    }

    protected void deactivate(ComponentContext ctxt) {
        //unregistering StatisticsAdmin service from the OSGi Service Register.
        statAdminServiceRegistration.unregister();
        axisConfigCtxObserverServiceRegistration.unregister();
        log.debug("Statistics bundle is deactivated");
    }

    private void registerMBeans(ServerConfiguration serverConfig) {
        MBeanRegistrar.registerMBean(new StatisticsAdmin());
    }

    protected void setConfigurationContextService(ConfigurationContextService contextService) {
        this.configContext = contextService.getServerConfigContext();
    }

    protected void unsetConfigurationContextService(ConfigurationContextService contextService) {
        AxisConfiguration axisConf = configContext.getAxisConfiguration();
        AxisModule statModule = axisConf.getModule(StatisticsConstants.STATISTISTICS_MODULE_NAME);
        if (statModule != null) {
            try {
                axisConf.disengageModule(statModule);
            } catch (AxisFault axisFault) {
                log.error("Failed disengage module: " + StatisticsConstants.STATISTISTICS_MODULE_NAME);
            }
        }
        this.configContext = null;
    }

    protected void setServerConfiguration(ServerConfiguration serverConfiguration) {
        this.serverConfig = serverConfiguration;
    }

    protected void unsetServerConfiguration(ServerConfiguration serverConfiguration) {
        this.serverConfig = null;
    }

    protected void setRegistryService(RegistryService registryService) {
        if (log.isDebugEnabled()) {
            log.info("Setting the Registry Service");
        }
        this.registryService = registryService;
    }

    protected void unsetRegistryService(RegistryService registryService) {
        if (log.isDebugEnabled()) {
            log.info("Unsetting the Registry Service");
        }
        this.registryService = null;
    }


    public static TenantManager getTenantManager() {
        return realmService.getTenantManager();
    }

}
TOP

Related Classes of org.wso2.carbon.statistics.internal.StatisticsServiceComponent

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.