DefaultServletRouter.java

127 lines | 4.478 kB Blame History Raw Download
/*
 * Copyright 2010-2013 Ning, Inc.
 *
 * Ning licenses this file to you 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.ning.billing.osgi.http;

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

import javax.inject.Singleton;
import javax.servlet.Servlet;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.ning.billing.osgi.api.OSGIServiceDescriptor;
import com.ning.billing.osgi.api.OSGIServiceRegistration;

@Singleton
public class DefaultServletRouter implements OSGIServiceRegistration<Servlet> {

    private static final Logger logger = LoggerFactory.getLogger(DefaultServletRouter.class);

    // Internal Servlet routing table: map of plugin prefixes to servlet instances.
    // A plugin prefix can be /foo, /foo/bar, /foo/bar/baz, ... and is mounted on /plugins/<pluginPrefix>
    private final Map<String, Servlet> pluginPathServlets = new HashMap<String, Servlet>();
    private final Map<String, OSGIServiceDescriptor> pluginRegistrations = new HashMap<String, OSGIServiceDescriptor>();

    @Override
    public void registerService(final OSGIServiceDescriptor desc, final Servlet httpServlet) {
        // Enforce each route to start with /
        final String pathPrefix = sanitizePathPrefix(desc.getServiceInfo());
        logger.info("Registering OSGI servlet at " + pathPrefix);
        synchronized (this) {
            pluginPathServlets.put(pathPrefix, httpServlet);
            pluginRegistrations.put(desc.getServiceName(), desc);
        }
    }

    public void registerServiceFromPath(final String path, final Servlet httpServlet) {
        pluginPathServlets.put(sanitizePathPrefix(path), httpServlet);
    }


        @Override
    public void unregisterService(final String serviceName) {
        synchronized (this) {
            final OSGIServiceDescriptor desc = pluginRegistrations.get(serviceName);
            if (desc != null) {
                final String registeredPath = sanitizePathPrefix(desc.getServiceInfo());
                pluginPathServlets.remove(registeredPath);
                pluginRegistrations.remove(desc);
                logger.info("Unregistering OSGI servlet " + desc.getServiceName() + " at path " + registeredPath);
            }
        }
    }

    public void unregisterServiceFromPath(final String path) {
        pluginPathServlets.remove(sanitizePathPrefix(path));
    }


    @Override
    public Servlet getServiceForName(final String serviceName) {
        final OSGIServiceDescriptor desc = pluginRegistrations.get(serviceName);
        if (desc == null) {
            return null;
        }
        final String registeredPath = sanitizePathPrefix(desc.getServiceInfo());
        return pluginPathServlets.get(registeredPath);
    }

    public Servlet getServiceForPath(final String path) {
        return getServletForPathPrefix(path);
    }

    @Override
    public Set<String> getAllServices() {
        return pluginPathServlets.keySet();
    }

    @Override
    public Class<Servlet> getServiceType() {
        return Servlet.class;
    }

    // TODO PIERRE Naive implementation - we should rather switch to e.g. heap tree
    public String getPluginPrefixForPath(final String pathPrefix) {
        String bestMatch = null;
        for (final String potentialMatch : pluginPathServlets.keySet()) {
            if (pathPrefix.startsWith(potentialMatch) && (bestMatch == null || bestMatch.length() < potentialMatch.length())) {
                bestMatch = potentialMatch;
            }
        }
        return bestMatch;
    }

    private Servlet getServletForPathPrefix(final String pathPrefix) {
        final String bestMatch = getPluginPrefixForPath(pathPrefix);
        return bestMatch == null ? null : pluginPathServlets.get(bestMatch);
    }


    private static final String sanitizePathPrefix(final String inputPath) {
        final String pathPrefix;
        if (inputPath.charAt(0) != '/') {
            pathPrefix = "/" + inputPath;
        } else {
            pathPrefix = inputPath;
        }
        return pathPrefix;
    }
}