/******************************************************************************* * Copyright (c) 2003, 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.internal.validation; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IResource; import org.eclipse.emf.ecore.EObject; import org.eclipse.jst.j2ee.application.internal.impl.ApplicationImpl; import org.eclipse.jst.j2ee.commonarchivecore.internal.Archive; import org.eclipse.jst.j2ee.commonarchivecore.internal.EARFile; import org.eclipse.jst.j2ee.commonarchivecore.internal.exception.OpenFailureException; import org.eclipse.jst.j2ee.componentcore.util.EARArtifactEdit; import org.eclipse.jst.j2ee.internal.J2EEConstants; import org.eclipse.jst.j2ee.internal.plugin.J2EEPlugin; import org.eclipse.wst.common.componentcore.ArtifactEdit; import org.eclipse.wst.common.componentcore.ComponentCore; import org.eclipse.wst.common.componentcore.internal.util.ComponentUtilities; import org.eclipse.wst.common.componentcore.resources.IVirtualComponent; import org.eclipse.wst.validation.internal.operations.WorkbenchReporter; public class EarHelper extends J2EEValidationHelper { protected EARFile earFile; protected ArtifactEdit edit = null; /** * WarHelper constructor comment. */ public EarHelper() { super(); registerModel(J2EEConstants.EAR_MODEL_NAME, "loadEarFile"); //$NON-NLS-1$ } public String getApplicationXMLFile() { return J2EEConstants.APPL_ID; } /** * Given a resource, return its non-eclipse-specific location. If this resource, or type of * resource, isn't handled by this helper, return null. */ @Override public String getPortableName(IResource resource) { if (!(resource instanceof IFile)) { return null; } return "application.xml"; //$NON-NLS-1$ } @Override public String getTargetObjectName(Object obj) { super.getTargetObjectName(obj); if (obj != null && obj instanceof EARFile) { return getApplicationXMLFile(); } if (obj != null && obj instanceof ApplicationImpl) { return "application.xml"; //$NON-NLS-1$ } return null; } /** * Get the WAR file for validation */ public EObject loadEarFile() { IVirtualComponent comp = ComponentCore.createComponent(getProject()); edit = ComponentUtilities.getArtifactEditForRead(comp); try { Archive archive = ((EARArtifactEdit) edit).asArchive(false, false, true); earFile = (EARFile)archive; return archive; } catch (OpenFailureException e1) { J2EEPlugin.logError(e1); } return null; } public void closeEARFile() { if (earFile != null) { earFile.close(); earFile = null; } } @Override public void cleanup(WorkbenchReporter reporter) { if (edit != null) { edit.dispose(); edit = null; } if (earFile != null) { earFile.close(); earFile = null; } } }