Package org.jboss.bpm.console.server

Source Code of org.jboss.bpm.console.server.ConfigListener$BundleVfsTypeHandler

/*
* Copyright 2013 JBoss Inc
*
* 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.jboss.bpm.console.server;

import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

import org.osgi.framework.BundleContext;
import org.osgi.framework.FrameworkUtil;
import org.osgi.framework.ServiceReference;
import org.overlord.commons.osgi.vfs.IVfsBundleFactory;
import org.overlord.commons.osgi.vfs.VfsBundle;
import org.reflections.vfs.SystemDir;
import org.reflections.vfs.Vfs;
import org.reflections.vfs.ZipDir;

/**
* Does some initial configuration on startup.
*/
public class ConfigListener implements ServletContextListener {
   
    /**
     * Constructor.
     */
    public ConfigListener() {
        System.out.println("[ConfigListener created!]");
    }

    /**
     * @see javax.servlet.ServletContextListener#contextDestroyed(javax.servlet.ServletContextEvent)
     */
    @Override
    public void contextDestroyed(ServletContextEvent evt) {
    }

    /**
     * @see javax.servlet.ServletContextListener#contextInitialized(javax.servlet.ServletContextEvent)
     */
    @Override
    public void contextInitialized(ServletContextEvent evt) {
        System.out.println("[ConfigListener:: Context Initialized]");
        try {
            Vfs.addDefaultURLTypes(new BundleVfsTypeHandler());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /**
     * A Vfs.UrlType that supports Fuse 6.x.
     */
    public static class BundleVfsTypeHandler implements Vfs.UrlType {

        private final static String BUNDLE = "bundle"; //$NON-NLS-1$

        /**
         * Constructor.
         */
        public BundleVfsTypeHandler() {
        }

        /**
         * @see org.jboss.errai.reflections.vfs.Vfs.UrlType#matches(java.net.URL)
         */
        @Override
        public boolean matches(URL url) {
            return url.getProtocol().equals(BUNDLE);
        }

        /**
         * @see org.jboss.errai.reflections.vfs.Vfs.UrlType#createDir(java.net.URL)
         */
        @Override
        public Vfs.Dir createDir(URL url) {
            BundleContext bundleContext = FrameworkUtil.getBundle(getClass()).getBundleContext();
            ServiceReference serviceReference = bundleContext.getServiceReference(IVfsBundleFactory.class.getName());
            if (serviceReference == null)
                throw new RuntimeException("OSGi Service Reference for [IVfsBundleFactory] not found."); //$NON-NLS-1$
            IVfsBundleFactory vfsBundleFactory = (IVfsBundleFactory) bundleContext.getService(serviceReference);
            VfsBundle bundle = vfsBundleFactory.getVfsBundle(url);
            File vfsFile = bundle.asFile(url);
            try {
                if (vfsFile.isFile()) {
                    return new ZipDir(vfsFile.toURI().toURL());
                }
                if (vfsFile.isDirectory()) {
                    return new SystemDir(vfsFile.toURI().toURL());
                }
                return null;
            } catch (MalformedURLException e) {
                throw new RuntimeException(e);
            }
        }
    }

}
TOP

Related Classes of org.jboss.bpm.console.server.ConfigListener$BundleVfsTypeHandler

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.