blob: 6fbc67dd04b2dca86fef6d71728bba2fecf5084f [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.j2ee.internal.deployables;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.core.resources.IProject;
import org.eclipse.jem.util.logger.proxy.Logger;
import org.eclipse.jst.j2ee.applicationclient.internal.creation.IApplicationClientNatureConstants;
import org.eclipse.jst.j2ee.internal.project.J2EENature;
import org.eclipse.wst.common.componentcore.ComponentCore;
import org.eclipse.wst.common.componentcore.ModuleCoreNature;
import org.eclipse.wst.common.componentcore.internal.util.IModuleConstants;
import org.eclipse.wst.common.componentcore.resources.IFlexibleProject;
import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
import org.eclipse.wst.server.core.IModule;
/**
* @version 1.0
* @author
*/
public class ApplicationClientDeployableFactory extends J2EEDeployableFactory {
private static final String ID = "com.ibm.wtp.server.j2ee.appclient"; //$NON-NLS-1$
/**
* Constructor for ApplicationClientDeployableFactory.
*/
public ApplicationClientDeployableFactory() {
super();
}
/*
* @see DeployableProjectFactoryDelegate#getFactoryID()
*/
public String getFactoryId() {
return ID;
}
/*
* @see J2EEDeployableFactory#getNatureID()
*/
public String getNatureID() {
return IApplicationClientNatureConstants.NATURE_ID;
}
/*
* @see J2EEDeployableFactory#createDeployable(J2EENature)
*/
public IModule createModule(J2EENature nature) {
if (nature == null)
return null;
ApplicationClientDeployable moduleDelegate = null;
IModule module = nature.getModule();
if (module == null) {
try {
moduleDelegate = new ApplicationClientDeployable(nature, ID);
module = createModule(moduleDelegate.getId(), moduleDelegate.getName(), moduleDelegate.getType(), moduleDelegate.getVersion(), moduleDelegate.getProject());
nature.setModule(module);
moduleDelegate.initialize(module);
} catch (Exception e) {
Logger.getLogger().write(e);
} finally {
moduleDelegates.add(moduleDelegate);
}
}
return module;
}
/* (non-Javadoc)
* @see org.eclipse.jst.j2ee.internal.deployables.J2EEDeployableFactory#createModules(org.eclipse.wst.common.modulecore.ModuleCoreNature)
*/
protected List createModules(ModuleCoreNature nature) {
return null;
}
/* (non-Javadoc)
* @see org.eclipse.wst.server.core.model.ModuleFactoryDelegate#getModules()
*/
public IModule[] getModules() {
cacheModules(false);
ArrayList moduleList = new ArrayList();
for (Iterator iter = projects.values().iterator(); iter.hasNext();) {
IModule[] element = (IModule[]) iter.next();
for (int j = 0; j < element.length; j++) {
moduleList.add(element[j]);
}
}
IModule[] modules = new IModule[moduleList.size()];
moduleList.toArray(modules);
return modules;
}
protected boolean isValidModule(IProject project) {
if (isFlexibleProject(project)) {
IFlexibleProject flex = ComponentCore.createFlexibleProject(project);
IVirtualComponent[] comps = flex.getComponents();
for (int i = 0; i < comps.length; i++) {
if(comps[i].getComponentTypeId().equals(IModuleConstants.JST_APPCLIENT_MODULE))
return true;
}
}
return false;
}
/* (non-Javadoc)
* @see org.eclipse.jst.j2ee.internal.deployables.J2EEDeployableFactory#createModuleDelegates(org.eclipse.emf.common.util.EList, org.eclipse.core.resources.IProject)
*/
protected List createModuleDelegates(IVirtualComponent[] components) {
ApplicationClientFlexibleDeployable moduleDelegate = null;
IModule module = null;
List moduleList = new ArrayList(components.length);
for (int i = 0; i < components.length; i++) {
IVirtualComponent component = components[i];
try {
if(IModuleConstants.JST_APPCLIENT_MODULE.equals(component.getComponentTypeId())) {
moduleDelegate = new ApplicationClientFlexibleDeployable(component.getProject(), ID, component);
module = createModule(component.getName(), component.getName(), moduleDelegate.getType(), moduleDelegate.getVersion(), moduleDelegate.getProject());
moduleList.add(module);
moduleDelegate.initialize(module);
}
} catch (Exception e) {
Logger.getLogger().write(e);
} finally {
if (module != null) {
if (getModuleDelegate(module) == null)
moduleDelegates.add(moduleDelegate);
}
}
}
return moduleList;
}
}