Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6f2d123ce74163e3c74512d9989ccef13effabed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/***************************************************************************************************
 * 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.archive.operations;



import java.lang.reflect.InvocationTargetException;

import org.eclipse.core.resources.ICommand;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IncrementalProjectBuilder;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.Path;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jem.util.emf.workbench.JavaProjectUtilities;
import org.eclipse.jst.j2ee.application.internal.operations.J2EEArtifactExportDataModel;
import org.eclipse.jst.j2ee.commonarchivecore.internal.ModuleFile;
import org.eclipse.jst.j2ee.commonarchivecore.internal.exception.SaveFailureException;
import org.eclipse.jst.j2ee.internal.plugin.LibCopyBuilder;
import org.eclipse.wst.common.frameworks.internal.enablement.nonui.WFTWrappedException;
import org.eclipse.wst.common.frameworks.internal.operations.WTPOperation;

public abstract class J2EEArtifactExportOperation extends WTPOperation {
	protected IProgressMonitor progressMonitor;
	protected IProject project;
	protected IPath destinationPath;
	protected ModuleFile moduleFile;
	protected boolean exportSource = false;
	protected boolean buildIncremental = true;

	/**
	 * Assumptions: aProject is a valid project with an J2EENatureRuntime, and the destination path
	 * is the fully qualified path where a new jar will be created, and the client code has already
	 * confirmed overwrite if the file already exists
	 */
	public J2EEArtifactExportOperation(J2EEArtifactExportDataModel model) {
		super(model);
		setProject(ResourcesPlugin.getWorkspace().getRoot().getProject(model.getStringProperty(J2EEArtifactExportDataModel.PROJECT_NAME)));
		setDestinationPath(new Path(model.getStringProperty(J2EEArtifactExportDataModel.ARCHIVE_DESTINATION)));
		setExportSource(model.getBooleanProperty(J2EEArtifactExportDataModel.EXPORT_SOURCE_FILES));
	}

	protected abstract String archiveString();

	public abstract void createModuleFile() throws SaveFailureException;

	protected void execute(IProgressMonitor monitor) throws CoreException, InvocationTargetException, InterruptedException {
		try {
			setProgressMonitor(monitor);
			//defect 240999
			project.refreshLocal(IResource.DEPTH_INFINITE, null);
			if (buildIncremental && operationDataModel.getBooleanProperty(J2EEArtifactExportDataModel.RUN_BUILD)) {
				javac(project, monitor);
			}
			export();
		} catch (SaveFailureException e) {
			throw new WFTWrappedException(e, EJBArchiveOpsResourceHandler.getString("Error_exporting__UI_") + archiveString()); //$NON-NLS-1$ = "Error exporting "
		} finally {
			monitor.done();
		}
	}

	public abstract void export() throws SaveFailureException, CoreException, InvocationTargetException, InterruptedException;

	/**
	 * Insert the method's description here. Creation date: (11/08/00 5:23:49 PM)
	 * 
	 * @return com.ibm.itp.common.IPath
	 */
	public IPath getDestinationPath() {
		return destinationPath;
	}

	protected IJavaProject getJavaProject() {
		return JavaProjectUtilities.getJavaProject(getProject());
	}

	protected ModuleFile getModuleFile() {
		return moduleFile;
	}

	/**
	 * Insert the method's description here. Creation date: (10/13/00 2:12:50 PM)
	 * 
	 * @return com.ibm.itp.common.IProgressMonitor
	 */
	protected IProgressMonitor getProgressMonitor() {
		return progressMonitor;
	}

	/**
	 * Insert the method's description here. Creation date: (11/08/00 5:20:53 PM)
	 * 
	 * @return com.ibm.itp.core.api.resources.IProject
	 */
	protected IProject getProject() {
		return project;
	}

	/**
	 * Insert the method's description here. Creation date: (4/19/2001 6:02:06 PM)
	 * 
	 * @return boolean
	 */
	protected boolean isExportSource() {
		return exportSource;
	}

	/**
	 * Insert the method's description here. Creation date: (11/08/00 5:23:49 PM)
	 * 
	 * @param newDestinationPath
	 *            com.ibm.itp.common.IPath
	 */
	protected void setDestinationPath(IPath newDestinationPath) {
		destinationPath = newDestinationPath;
	}

	/**
	 * Insert the method's description here. Creation date: (4/19/2001 6:02:06 PM)
	 * 
	 * @param newExportSource
	 *            boolean
	 */
	protected void setExportSource(boolean newExportSource) {
		exportSource = newExportSource;
	}

	protected void setModuleFile(ModuleFile newModuleFile) {
		moduleFile = newModuleFile;
	}

	/**
	 * Insert the method's description here. Creation date: (10/13/00 2:12:50 PM)
	 * 
	 * @param newProgressMonitor
	 *            com.ibm.itp.common.IProgressMonitor
	 */
	protected void setProgressMonitor(IProgressMonitor newProgressMonitor) {
		progressMonitor = newProgressMonitor;
	}

	/**
	 * Insert the method's description here. Creation date: (11/08/00 5:20:53 PM)
	 * 
	 * @param newProject
	 *            com.ibm.itp.core.api.resources.IProject
	 */
	protected void setProject(IProject newProject) {
		project = newProject;
	}

	/**
	 * Indicates whether an incremental build should be invoked before export
	 * 
	 * @return Returns a boolean
	 */
	public boolean shouldBuildIncremental() {
		return buildIncremental;
	}

	/**
	 * Indicates whether an incremental build should be invoked before export
	 * 
	 * @param buildIncremental
	 *            The buildIncremental to set
	 */
	protected void setBuildIncremental(boolean buildIncremental) {
		this.buildIncremental = buildIncremental;
	}

	/**
	 * Find the specific Java command amongst the build spec of a given description
	 */
	private static ICommand getJavaCommand(IProjectDescription description) throws CoreException {
		if (description == null) {
			return null;
		}

		ICommand[] commands = description.getBuildSpec();
		for (int i = 0; i < commands.length; ++i) {
			if (commands[i].getBuilderName().equals(JavaCore.BUILDER_ID)) {
				return commands[i];
			}
		}
		return null;
	}

	private static ICommand getLibCopyBuilder(IProjectDescription description) throws CoreException {
		if (description == null) {
			return null;
		}

		ICommand[] commands = description.getBuildSpec();
		for (int i = 0; i < commands.length; ++i) {
			if (commands[i].getBuilderName().equals(LibCopyBuilder.BUILDER_ID)) {
				return commands[i];
			}
		}
		return null;

	}

	public static void javac(IProject project, IProgressMonitor monitor) throws CoreException {
		IProjectDescription description = project.getDescription();
		ICommand javaBuilder = getJavaCommand(description);
		if (javaBuilder != null) {
			project.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, JavaCore.BUILDER_ID, javaBuilder.getArguments(), monitor);
		}
		ICommand libCopyBuilder = getLibCopyBuilder(description);
		if (null != libCopyBuilder) {
			project.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, LibCopyBuilder.BUILDER_ID, libCopyBuilder.getArguments(), monitor);
		}
	}

}

Back to the top