blob: 336e36d9a9a5f17e1bd276c3b9f9706ca18e6a97 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2004 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.ws.internal.axis.creation.ui.command;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Status;
import org.eclipse.jst.j2ee.web.componentcore.util.WebArtifactEdit;
import org.eclipse.jst.j2ee.webapplication.Servlet;
import org.eclipse.jst.j2ee.webapplication.ServletMapping;
import org.eclipse.jst.j2ee.webapplication.ServletType;
import org.eclipse.jst.j2ee.webapplication.WebApp;
import org.eclipse.jst.j2ee.webapplication.WebapplicationFactory;
import org.eclipse.wst.command.internal.provisional.env.core.EnvironmentalOperation;
import org.eclipse.wst.command.internal.provisional.env.core.common.Environment;
import org.eclipse.wst.command.internal.provisional.env.core.common.MessageUtils;
import org.eclipse.wst.command.internal.provisional.env.core.common.StatusUtils;
import org.eclipse.wst.common.componentcore.ComponentCore;
import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
public class UpdateWEBXMLCommand extends EnvironmentalOperation {
private MessageUtils msgUtils_;
private IProject serverProject;
private String moduleName_;
public UpdateWEBXMLCommand( String moduleName )
{
String pluginId = "org.eclipse.jst.ws.axis.creation.ui";
msgUtils_ = new MessageUtils( pluginId + ".plugin", this );
moduleName_ = moduleName;
}
public IStatus execute( IProgressMonitor monitor, IAdaptable adaptable )
{
Environment environment = getEnvironment();
if (serverProject != null) {
IStatus status = null;
status = addServlet(serverProject, moduleName_, getAxisServletDescriptor());
if (status.getSeverity() == Status.ERROR) {
environment.getStatusHandler().reportError(status);
return status;
}
if (status.getSeverity() == Status.ERROR) {
environment.getStatusHandler().reportError(status);
return status;
}
addServlet(serverProject, moduleName_, getAdmintServletDescriptor());
if (status.getSeverity() == Status.ERROR) {
environment.getStatusHandler().reportError(status);
return status;
}
}
return Status.OK_STATUS;
}
private ServletDescriptor getAxisServletDescriptor() {
ServletDescriptor sd = new ServletDescriptor();
sd._name = "AxisServlet"; //$NON-NLS-1$
sd._displayName = "Apache-Axis Servlet"; //$NON-NLS-1$
sd._className = "org.apache.axis.transport.http.AxisServlet"; //$NON-NLS-1$
sd._mappings = new String[] { "/servlet/AxisServlet", //$NON-NLS-1$
"*.jws", //$NON-NLS-1$
"/services/*" }; //$NON-NLS-1$
return sd;
}
private ServletDescriptor getAdmintServletDescriptor() {
ServletDescriptor sd = new ServletDescriptor();
sd._name = "AdminServlet"; //$NON-NLS-1$
sd._displayName = "Axis Admin Servlet"; //$NON-NLS-1$
sd._className = "org.apache.axis.transport.http.AdminServlet"; //$NON-NLS-1$
sd._mappings = new String[] { "/servlet/AdminServlet" }; //$NON-NLS-1$
sd._loadOnStartup = new Integer(100);
return sd;
}
public IStatus addServlet(
IProject webProject,
String moduleName,
ServletDescriptor servletDescriptor) {
WebArtifactEdit webEdit = null;
try {
//
WebApp webapp = null;
IVirtualComponent vc = ComponentCore.createComponent(webProject, moduleName);
webEdit = WebArtifactEdit.getWebArtifactEditForWrite(vc);
if (webEdit != null)
{
webapp = (WebApp) webEdit.getDeploymentDescriptorRoot();
boolean foundServlet = false;
List theServlets = webapp.getServlets();
for (int i = 0; i < theServlets.size(); i++) {
Servlet aServlet = (Servlet) theServlets.get(i);
if (aServlet.getServletName().equals(servletDescriptor._name)) {
foundServlet = true;
}
}
if (foundServlet) {
return Status.OK_STATUS;
}
WebapplicationFactory factory = WebapplicationFactory.eINSTANCE;
Servlet servlet = factory.createServlet();
ServletType servletType = factory.createServletType();
servlet.setWebType(servletType);
servlet.setServletName(servletDescriptor._name);
servletType.setClassName(servletDescriptor._className);
if(servletDescriptor._displayName != null){
servlet.setDisplayName(servletDescriptor._displayName);
}
if(servletDescriptor._loadOnStartup != null){
servlet.setLoadOnStartup(servletDescriptor._loadOnStartup);
}
if(servletDescriptor._params != null){
Properties properties = servlet.getParamsAsProperties();
properties.putAll(servletDescriptor._params);
}
webapp.getServlets().add(servlet);
if(servletDescriptor._mappings != null){
for(int i=0; i<servletDescriptor._mappings.length; i++){
ServletMapping servletMapping = factory.createServletMapping();
servletMapping.setServlet(servlet);
servletMapping.setUrlPattern(servletDescriptor._mappings[i]);
webapp.getServletMappings().add(servletMapping);
}
}
webEdit.save(new NullProgressMonitor());
}
return Status.OK_STATUS;
} catch (Exception e) {
return StatusUtils.errorStatus(
msgUtils_.getMessage("MSG_ERROR_UPDATE_WEB_XML"),
e);
}
finally{
if (webEdit != null)
webEdit.dispose();
}
}
public void setServerProject(IProject serverProject)
{
this.serverProject = serverProject;
}
public class ServletDescriptor {
String _name;
String _className;
String _displayName;
Map _params;
String[] _mappings;
Integer _loadOnStartup;
}
}