blob: e6a0d813bb3ed820fc7f0977b75aa77482d970d0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.j2ee.project;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.jst.j2ee.componentcore.J2EEModuleVirtualComponent;
import org.eclipse.jst.j2ee.internal.J2EEVersionConstants;
import org.eclipse.jst.j2ee.internal.common.XMLResource;
import org.eclipse.jst.j2ee.model.ModelProviderManager;
import org.eclipse.jst.javaee.web.WebApp;
import org.eclipse.jst.javaee.web.WebAppVersionType;
import org.eclipse.wst.common.componentcore.ComponentCore;
import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
import org.eclipse.wst.common.componentcore.resources.IVirtualReference;
public class WebUtilities extends JavaEEProjectUtilities {
public static IPath WEBLIB = new Path("/WEB-INF/lib"); //$NON-NLS-1$
public WebUtilities() {
// TODO Auto-generated constructor stub
}
/**
* <p>
* Retrieves Servlet version information derived from the {@see WebAppResource}.
* </p>
*
* @return an integer representation of a module version
*
*/
public static int getServletVersion(IProject webProject) {
int retVal = 0;
Object webAppResource = ModelProviderManager.getModelProvider(webProject).getModelObject();
if (webAppResource instanceof XMLResource)
{
retVal = ((XMLResource)webAppResource).getModuleVersionID();
}
else if (webAppResource instanceof WebApp)
{
switch (((WebApp)webAppResource).getVersion().getValue()) {
case WebAppVersionType._25:
retVal = J2EEVersionConstants.WEB_2_5_ID;
break;
}
}
return retVal;
}
/**
* This method returns the integer representation for the JSP specification level associated
* with the J2EE version for this workbench module. This method will not return null and returns
* 20 as default.
*
* @return an integer representation of the JSP level
*/
public static int getJSPVersion(IProject webProject) {
int servletVersion = getServletVersion(webProject);
if (servletVersion == J2EEVersionConstants.WEB_2_2_ID)
return J2EEVersionConstants.JSP_1_1_ID;
else if (servletVersion == J2EEVersionConstants.WEB_2_3_ID)
return J2EEVersionConstants.JSP_1_2_ID;
else
return J2EEVersionConstants.JSP_2_0_ID;
}
/**
* This method will return the list of dependent modules which are utility jars in the web lib
* folder of the deployed path of the module. It will not return null.
*
* @return array of the web library dependent modules
*/
public static IVirtualReference[] getLibModules(IProject webProject) {
List result = new ArrayList();
IVirtualComponent comp = ComponentCore.createComponent(webProject);
IVirtualReference[] refComponents = null;
if (!comp.isBinary())
refComponents = ((J2EEModuleVirtualComponent)comp).getNonManifestReferences();
else
refComponents = comp.getReferences();
// Check the deployed path to make sure it has a lib parent folder and matchs the web.xml
// base path
for (int i = 0; i < refComponents.length; i++) {
if (refComponents[i].getRuntimePath().equals(WEBLIB))
result.add(refComponents[i]);
}
return (IVirtualReference[]) result.toArray(new IVirtualReference[result.size()]);
}
}