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

org.ops4j.pax.logging.OSGIPaxLoggingManager Maven / Gradle / Ivy

Go to download

Pax Logging API Library is a collection of logging APIs from different libraries/facades. It supports SLF4J, Commons Logging, JULI Logging, Log4J1 API, Log4J2 API, JBoss Logging and Avalon APIs. Additionally, Pax Logging specific library is available as backend implementation with its specific configuration mechanisms, but it's not required.

The newest version!
/*
 * Copyright 2006 Niclas Hedhman.
 *
 * 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.ops4j.pax.logging;

import java.util.HashMap;
import java.util.Map;

import org.ops4j.pax.logging.internal.TrackingLogger;
import org.ops4j.pax.logging.spi.support.BundleHelper;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.util.tracker.ServiceTracker;
import org.osgi.util.tracker.ServiceTrackerCustomizer;

/**
 * {@link PaxLoggingManager} that acts as a singleton that delegates to tracked instance of {@link PaxLoggingService}
 *
 * More precisely - it returns instances of {@link PaxLogger} that internally delegate to loggers obtained from
 * available {@link PaxLoggingService} or from fallback service when there's no implementation available.
 */
public class OSGIPaxLoggingManager
        implements PaxLoggingManager, ServiceTrackerCustomizer {

    private ServiceTracker tracker;

    private PaxLoggingService m_logService;
    private ServiceReference m_logServiceRef;

    /**
     * Mapping between logger name and {@link TrackingLogger}. This map is shared between all logging facades.
     */
    private final Map m_loggers;

    private BundleContext m_context;

    public OSGIPaxLoggingManager(BundleContext context) {
        tracker = new ServiceTracker<>(context, PaxLoggingService.class.getName(), this);

        m_loggers = new HashMap();
        m_context = context;

        // only now tracker can be opened, because when pax-logging-api bundle is restarted while
        // pax-logging- is not, we may already have org.ops4j.pax.logging.OSGIPaxLoggingManager.addingService()
        // called
        tracker.open();

        // retrieve the service if any exist at this point.
        ServiceReference ref = tracker.getServiceReference();
        if (ref != null) {
            m_logService = context.getService(ref);
        }
    }

    @Override
    public PaxLogger getLogger(String category, String fqcn) {
        Bundle bundle = BundleHelper.getCallerBundle(m_context.getBundle());
        return getLogger(bundle, category, fqcn);
    }

    @Override
    public PaxLogger getLogger(Bundle bundle, String category, String fqcn) {
        if (fqcn == null) {
            fqcn = PaxLogger.FQCN;
        }

        String key = fqcn + "#" + category + "#" + (bundle != null ? Long.toString(bundle.getBundleId()) : "0");
        synchronized (m_loggers) {
            TrackingLogger logger = m_loggers.get(key);
            if (logger == null) {
                logger = new TrackingLogger(m_logService, category, bundle, fqcn);
                m_loggers.put(key, logger);
            }
            return logger;
        }
    }

    @Override
    public PaxLoggingService getPaxLoggingService() {
        return m_logService;
    }

    @Override
    public void close() {
        tracker.close();
    }

    @Override
    public void dispose() {
        if (m_logServiceRef != null) {
            m_context.ungetService(m_logServiceRef);
            m_logServiceRef = null;
        }

        // clearing this global map (which keeps all loggers for all facades) is explicit decision
        // and is a reason that loggers do NOT survive _restart_ of pax-logging-api bundle
        // we could always think about storing this map as static and the loggers would survice the restart
        // of pax-logging-api (though they'd naturally not survive refresh of pax-logging-api)
        // see https://ops4j1.jira.com/browse/PAXLOGGING-307
        synchronized (m_loggers) {
            for (TrackingLogger logger : m_loggers.values()) {
                logger.removed();
            }
            m_loggers.clear();
        }

        m_context = null;
    }

    @Override
    public Bundle getBundle() {
        return m_context.getBundle();
    }

    @Override
    public PaxLoggingService addingService(ServiceReference reference) {
        m_logServiceRef = reference;
        m_logService = m_context.getService(m_logServiceRef);

        synchronized (m_loggers) {
            for (TrackingLogger logger : m_loggers.values()) {
                logger.added(m_logService);
            }
        }
        return m_logService;
    }

    @Override
    public void modifiedService(ServiceReference reference, PaxLoggingService service) {
    }

    @Override
    public void removedService(ServiceReference reference, PaxLoggingService service) {
        m_logService = null;
        if (m_logServiceRef != null) {
            m_context.ungetService(m_logServiceRef);
            m_logServiceRef = null;
        }

        synchronized (m_loggers) {
            for (TrackingLogger logger : m_loggers.values()) {
                logger.removed();
            }
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy