Search in sources :

Example 6 with WebResource

use of org.eclipse.wst.server.core.util.WebResource in project webtools.servertools by eclipse.

the class TomcatLaunchableAdapterDelegate method getLaunchable.

/*
	 * @see LaunchableAdapterDelegate#getLaunchable(IServer, IModuleArtifact)
	 */
public Object getLaunchable(IServer server, IModuleArtifact moduleObject) {
    Trace.trace(Trace.FINER, "TomcatLaunchableAdapter " + server + "-" + moduleObject);
    if (server.getAdapter(TomcatServer.class) == null)
        return null;
    if (!(moduleObject instanceof Servlet) && !(moduleObject instanceof WebResource))
        return null;
    if (moduleObject.getModule().loadAdapter(IWebModule.class, null) == null)
        return null;
    try {
        URL url = ((IURLProvider) server.loadAdapter(IURLProvider.class, null)).getModuleRootURL(moduleObject.getModule());
        Trace.trace(Trace.FINER, "root: " + url);
        if (moduleObject instanceof Servlet) {
            Servlet servlet = (Servlet) moduleObject;
            if (servlet.getAlias() != null) {
                String path = servlet.getAlias();
                if (path.startsWith("/"))
                    path = path.substring(1);
                url = new URL(url, path);
            } else
                url = new URL(url, "servlet/" + servlet.getServletClassName());
        } else if (moduleObject instanceof WebResource) {
            WebResource resource = (WebResource) moduleObject;
            String path = resource.getPath().toString();
            Trace.trace(Trace.FINER, "path: " + path);
            if (path != null && path.startsWith("/") && path.length() > 0)
                path = path.substring(1);
            if (path != null && path.length() > 0)
                url = new URL(url, path);
        }
        return new HttpLaunchable(url);
    } catch (Exception e) {
        Trace.trace(Trace.SEVERE, "Error getting URL for " + moduleObject, e);
        return null;
    }
}
Also used : HttpLaunchable(org.eclipse.wst.server.core.util.HttpLaunchable) Servlet(org.eclipse.jst.server.core.Servlet) WebResource(org.eclipse.wst.server.core.util.WebResource) IWebModule(org.eclipse.jst.server.core.IWebModule) URL(java.net.URL)

Aggregations

WebResource (org.eclipse.wst.server.core.util.WebResource)6 URL (java.net.URL)5 HttpLaunchable (org.eclipse.wst.server.core.util.HttpLaunchable)5 CoreException (org.eclipse.core.runtime.CoreException)3 Servlet (org.eclipse.jst.server.core.Servlet)2 IProject (org.eclipse.core.resources.IProject)1 IResource (org.eclipse.core.resources.IResource)1 IAdaptable (org.eclipse.core.runtime.IAdaptable)1 IPath (org.eclipse.core.runtime.IPath)1 Path (org.eclipse.core.runtime.Path)1 IWebModule (org.eclipse.jst.server.core.IWebModule)1 IVirtualComponent (org.eclipse.wst.common.componentcore.resources.IVirtualComponent)1