Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 48d7c878c789f7367e1a95e5822cc3b6c541eac7 (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
/*******************************************************************************
 * Copyright (c) 2008, 2011 Intel Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Intel Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.managedbuilder.gnu.ui;

import org.eclipse.cdt.managedbuilder.core.BuildException;
import org.eclipse.cdt.managedbuilder.core.IBuildObject;
import org.eclipse.cdt.managedbuilder.core.IConfiguration;
import org.eclipse.cdt.managedbuilder.core.IHoldsOptions;
import org.eclipse.cdt.managedbuilder.core.IOption;
import org.eclipse.cdt.managedbuilder.core.IOptionApplicability;
import org.eclipse.cdt.managedbuilder.core.ITool;

/**
 * @noextend This class is not intended to be subclassed by clients.
 * @noinstantiate This class is not intended to be instantiated by clients.
 */
public class ProfAppCalculator implements IOptionApplicability {

	protected static final String COMPILER_PATTERN = ".compiler."; //$NON-NLS-1$

	protected String getOptionIdPattern() {
		return ".compiler.option.debugging.prof"; //$NON-NLS-1$
	}

	@Override
	public boolean isOptionEnabled(IBuildObject configuration,
			IHoldsOptions holder, IOption option) {
		return true;
	}

	@Override
	public boolean isOptionUsedInCommandLine(IBuildObject configuration,
			IHoldsOptions holder, IOption option) {

		if (! (configuration instanceof IConfiguration))
			return false; // not probable.

		IConfiguration cfg = (IConfiguration)configuration;
	outer:
		for (ITool t : cfg.getFilteredTools()){
			if (t.getId().indexOf(COMPILER_PATTERN) < 0)
				continue;
			for (IOption op : t.getOptions()) {
				if (op.getId().indexOf(getOptionIdPattern()) < 0)
					continue;
				try {
					if (op.getBooleanValue() != option.getBooleanValue())
						cfg.setOption(holder, option, op.getBooleanValue());
				} catch (BuildException e) {}
				break outer;
			}
		}
		return true;
	}

	@Override
	public boolean isOptionVisible(IBuildObject configuration,
			IHoldsOptions holder, IOption option) {
		return false;
	}

}

Back to the top