blob: 7b6457ccea6d4d1c5d7e0f7a1ce08ea196296dee [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 SAP AG 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:
* Kaloyan Raev, kaloyan.raev@sap.com - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.j2ee.internal.web.operations;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import org.eclipse.jst.j2ee.internal.common.operations.INewJavaClassDataModelProperties;
import org.eclipse.jst.j2ee.webapplication.DispatcherType;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
public class CreateFilterTemplateModel extends CreateWebClassTemplateModel
implements INewFilterClassDataModelProperties {
public static final String QUALIFIED_IO_EXCEPTION = "java.io.IOException"; //$NON-NLS-1$
public static final String QUALIFIED_SERVLET_EXCEPTION = "javax.servlet.ServletException"; //$NON-NLS-1$
public static final String QUALIFIED_SERVLET_REQUEST = "javax.servlet.ServletRequest"; //$NON-NLS-1$
public static final String QUALIFIED_SERVLET_RESPONSE = "javax.servlet.ServletResponse"; //$NON-NLS-1$
public static final String QUALIFIED_FILTER_CONFIG = "javax.servlet.FilterConfig"; //$NON-NLS-1$
public static final String QUALIFIED_FILTER_CHAIN = "javax.servlet.FilterChain"; //$NON-NLS-1$
public static final String INIT = "init"; //$NON-NLS-1$
public static final String DO_FILTER = "doFilter"; //$NON-NLS-1$
public static final String DESTROY = "destroy"; //$NON-NLS-1$
public static final int NAME = 0;
public static final int VALUE = 1;
public static final int DESCRIPTION = 2;
public CreateFilterTemplateModel(IDataModel dataModel) {
super(dataModel);
}
public Collection<String> getImports() {
Collection<String> collection = super.getImports();
if (shouldGenInit()) {
collection.add(QUALIFIED_FILTER_CONFIG);
collection.add(QUALIFIED_SERVLET_EXCEPTION);
}
if (shouldGenDoFilter()) {
collection.add(QUALIFIED_SERVLET_REQUEST);
collection.add(QUALIFIED_SERVLET_RESPONSE);
collection.add(QUALIFIED_FILTER_CHAIN);
collection.add(QUALIFIED_IO_EXCEPTION);
collection.add(QUALIFIED_SERVLET_EXCEPTION);
}
return collection;
}
public String getFilterName() {
return getProperty(CLASS_NAME).trim();
}
public boolean shouldGenInit() {
return implementImplementedMethod(INIT);
}
public boolean shouldGenDoFilter() {
return implementImplementedMethod(DO_FILTER);
}
public boolean shouldGenDestroy() {
return implementImplementedMethod(DESTROY);
}
public List getInitParams() {
return (List) dataModel.getProperty(INIT_PARAM);
}
public String getInitParam(int index, int type) {
List params = getInitParams();
if (index < params.size()) {
String[] stringArray = (String[]) params.get(index);
return stringArray[type];
}
return null;
}
public List<IFilterMappingItem> getFilterMappings() {
return (List<IFilterMappingItem>) dataModel.getProperty(FILTER_MAPPINGS);
}
public IFilterMappingItem getFilterMapping(int index) {
List<IFilterMappingItem> mappings = getFilterMappings();
if (index < mappings.size()) {
return mappings.get(index);
}
return null;
}
public String getDispatcherList(IFilterMappingItem mapping) {
List<String> list = new ArrayList<String>();
int dispatchers = mapping.getDispatchers();
if ((dispatchers & IFilterMappingItem.REQUEST) > 0) {
list.add(DispatcherType.REQUEST_LITERAL.getLiteral());
}
if ((dispatchers & IFilterMappingItem.FORWARD) > 0) {
list.add(DispatcherType.FORWARD_LITERAL.getLiteral());
}
if ((dispatchers & IFilterMappingItem.INCLUDE) > 0) {
list.add(DispatcherType.INCLUDE_LITERAL.getLiteral());
}
if ((dispatchers & IFilterMappingItem.ERROR) > 0) {
list.add(DispatcherType.ERROR_LITERAL.getLiteral());
}
StringBuilder builder = new StringBuilder();
Iterator<String> iterator = list.iterator();
while (iterator.hasNext()) {
builder.append(iterator.next());
if (iterator.hasNext()) {
builder.append(",");
}
}
return builder.toString();
}
protected boolean implementImplementedMethod(String methodName) {
if (dataModel.getBooleanProperty(ABSTRACT_METHODS)) {
if (methodName.equals(INIT))
return dataModel.getBooleanProperty(INewFilterClassDataModelProperties.INIT);
else if (methodName.equals(DO_FILTER))
return dataModel.getBooleanProperty(INewFilterClassDataModelProperties.DO_FILTER);
else if (methodName.equals(DESTROY))
return dataModel.getBooleanProperty(INewFilterClassDataModelProperties.DESTROY);
}
return false;
}
}