Package org.jboss.as.clustering.web.infinispan

Source Code of org.jboss.as.clustering.web.infinispan.DefaultLockManagerSource$LockManagerEntry

/*
* JBoss, Home of Professional Open Source.
* Copyright 2010, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.as.clustering.web.infinispan;

import java.security.AccessController;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

import org.infinispan.Cache;
import org.infinispan.manager.EmbeddedCacheManager;
import org.infinispan.notifications.Listener;
import org.infinispan.notifications.cachemanagerlistener.annotation.CacheStopped;
import org.infinispan.notifications.cachemanagerlistener.event.CacheStoppedEvent;
import org.infinispan.remoting.transport.jgroups.JGroupsTransport;
import org.jboss.as.clustering.CoreGroupCommunicationService;
import org.jboss.as.clustering.lock.SharedLocalYieldingClusterLockManager;
import org.jboss.logging.Logger;
import org.jboss.util.loading.ContextClassLoaderSwitcher;
import org.jgroups.Channel;

/**
* @author Vladimir Blagojevic
* @author Paul Ferraro
*/
@Listener
public class DefaultLockManagerSource implements LockManagerSource {
    /** The scope assigned to our group communication service */
    public static final Short SCOPE_ID = Short.valueOf((short) 222);
    /** The service name of the group communication service */
    public static final String SERVICE_NAME = "HTTPSESSIONOWNER";

    static final Logger log = Logger.getLogger(DefaultLockManagerSource.class);

    // Store LockManagers in static map so they can be shared across DCMs
    static final Map<String, LockManagerEntry> lockManagers = new HashMap<String, LockManagerEntry>();

    // Need to cast since ContextClassLoaderSwitcher.NewInstance does not generically implement
    // PrivilegedAction<ContextClassLoaderSwitcher>
    @SuppressWarnings("unchecked")
    private final ContextClassLoaderSwitcher switcher = (ContextClassLoaderSwitcher) AccessController.doPrivileged(ContextClassLoaderSwitcher.INSTANTIATOR);

    /**
     * {@inheritDoc}
     *
     * @see org.jboss.web.tomcat.service.session.distributedcache.ispn.LockManagerSource#getLockManager(org.infinispan.Cache)
     */
    @Override
    public SharedLocalYieldingClusterLockManager getLockManager(Cache<?, ?> cache) {
        if (!cache.getConfiguration().getCacheMode().isClustered())
            return null;

        EmbeddedCacheManager container = (EmbeddedCacheManager) cache.getCacheManager();
        String containerName = container.getGlobalConfiguration().getCacheManagerName();

        synchronized (lockManagers) {
            LockManagerEntry entry = lockManagers.get(containerName);

            if (entry == null) {
                JGroupsTransport transport = (JGroupsTransport) cache.getAdvancedCache().getRpcManager().getTransport();

                ContextClassLoaderSwitcher.SwitchContext context = this.switcher.getSwitchContext(this.getClass().getClassLoader());

                try {
                    entry = new LockManagerEntry(transport.getChannel());
                } finally {
                    context.reset();
                }

                debug("Started lock manager for \"%s\" container", containerName);

                container.addListener(entry);

                lockManagers.put(containerName, entry);
            }

            String cacheName = cache.getName();

            debug("Registering \"%s\" cache with lock manager for \"%s\" container", cacheName, containerName);

            entry.addCache(cacheName);

            return entry.getLockManager();
        }
    }

    @Listener
    public static class LockManagerEntry {
        private final SharedLocalYieldingClusterLockManager lockManager;
        private final CoreGroupCommunicationService service;
        private final Set<String> caches = new HashSet<String>();

        LockManagerEntry(Channel channel) {
            this.service = new CoreGroupCommunicationService();
            this.service.setChannel(channel);
            this.service.setScopeId(SCOPE_ID);

            try {
                this.service.start();
            } catch (Exception e) {
                throw new IllegalStateException(String.format("Unexpected exception while starting group communication service for %s", channel.getClusterName()));
            }

            this.lockManager = new SharedLocalYieldingClusterLockManager(SERVICE_NAME, this.service, this.service);

            try {
                this.lockManager.start();
            } catch (Exception e) {
                this.service.stop();
                throw new IllegalStateException(String.format("Unexpected exception while starting lock manager for %s", channel.getClusterName()));
            }
        }

        SharedLocalYieldingClusterLockManager getLockManager() {
            return this.lockManager;
        }

        synchronized void addCache(String cacheName) {
            this.caches.add(cacheName);
        }

        synchronized boolean removeCache(String cacheName) {
            this.caches.remove(cacheName);

            boolean empty = this.caches.isEmpty();

            if (empty) {
                try {
                    this.lockManager.stop();
                } catch (Exception e) {
                    log.warn(e.getMessage(), e);
                }
                try {
                    this.service.stop();
                } catch (Exception e) {
                    log.warn(e.getMessage(), e);
                }
            }

            return empty;
        }

        @CacheStopped
        public void stopped(CacheStoppedEvent event) {
            EmbeddedCacheManager container = event.getCacheManager();
            String containerName = container.getGlobalConfiguration().getCacheManagerName();

            synchronized (lockManagers) {
                LockManagerEntry entry = lockManagers.get(containerName);

                if (entry != null) {
                    String cacheName = event.getCacheName();

                    debug("Deregistering \"%s\" cache from lock manager for \"%s\" container", cacheName, containerName);

                    // Returns true if this was the last cache
                    if (entry.removeCache(cacheName)) {
                        debug("Stopped lock manager for \"%s\" container", containerName);

                        lockManagers.remove(containerName);

                        container.removeListener(entry);
                    }
                }
            }
        }
    }

    static void debug(String message, Object... args) {
        log.debugf(message, args);
    }
}
TOP

Related Classes of org.jboss.as.clustering.web.infinispan.DefaultLockManagerSource$LockManagerEntry

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.