Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cfa7a02b1f304464d5216380fcf9f7d60ce97d19 (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
/*******************************************************************************
 * Copyright (c) 2009, 2011 Red Hat Inc..
 * 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:
 *     Red Hat Incorporated - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.internal.autotools.ui.actions;

import java.util.ArrayList;

import org.eclipse.cdt.internal.autotools.core.AutotoolsPropertyConstants;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.swt.widgets.Shell;

public class AutoconfHandler extends AbstractAutotoolsHandler {

	@Override
	public Object execute(ExecutionEvent event) {
		return execute1(event);
	}

	private final static String DEFAULT_COMMAND = "autoconf"; //$NON-NLS-1$

	@Override
	public void run(Shell activeShell) {
		IContainer container = getSelectedContainer();
		if (container == null)
			return;

		IPath execDir = getExecDir(container);

		IProject project = container.getProject();
		String autoconfCommand = null;
		try {
			autoconfCommand = project.getPersistentProperty(AutotoolsPropertyConstants.AUTOCONF_TOOL);
		} catch (CoreException e) {
			// do nothing
		}

		// If unset for the project, default to system path
		if (autoconfCommand == null) {
			autoconfCommand = DEFAULT_COMMAND;
		}
		executeConsoleCommand(DEFAULT_COMMAND, autoconfCommand, new ArrayList<>(), execDir);
	}

}

Back to the top