Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 000af9e110d1d518f7866adb110f237e730e80b1 (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
/*******************************************************************************
 * Copyright (c) 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.cdt.managedbuilder.xlc.ui.properties;

import org.eclipse.cdt.managedbuilder.core.IBuildObject;
import org.eclipse.cdt.managedbuilder.core.IConfiguration;
import org.eclipse.cdt.managedbuilder.core.IFolderInfo;
import org.eclipse.cdt.managedbuilder.core.IHoldsOptions;
import org.eclipse.cdt.managedbuilder.core.IManagedProject;
import org.eclipse.cdt.managedbuilder.core.IOption;
import org.eclipse.cdt.managedbuilder.core.IOptionApplicability;
import org.eclipse.cdt.managedbuilder.xlc.ui.XLCUIPlugin;
import org.eclipse.cdt.managedbuilder.xlc.ui.preferences.PreferenceConstants;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.QualifiedName;
import org.eclipse.jface.preference.IPreferenceStore;

/**
 * @author crecoskie
 *
 */
public class XLCv8ApplicabiltyCalculator implements IOptionApplicability {

	private boolean isVersion8(IBuildObject configuration) {
		// first we check the preference for this project, if it exists
		if(configuration instanceof IConfiguration) {
			IConfiguration config = (IConfiguration) configuration;
			IManagedProject managedProject = config.getManagedProject();
			
			IProject project = (IProject) managedProject.getOwner();
			
			String currentVersion = null;
			try {
				currentVersion = project.getPersistentProperty(new QualifiedName("",
						PreferenceConstants.P_XLC_COMPILER_VERSION));
			} catch (CoreException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			
			if(currentVersion == null) {
				// if the property isn't set, then use the workbench preference
				IPreferenceStore prefStore = XLCUIPlugin.getDefault().getPreferenceStore();
				currentVersion = prefStore.getString(PreferenceConstants.P_XLC_COMPILER_VERSION);
			}
			
		  if(currentVersion.equals(PreferenceConstants.P_XL_COMPILER_VERSION_8_NAME))
			  return true;
		}
		
		if(configuration instanceof IFolderInfo) {
			IFolderInfo folderInfo = (IFolderInfo) configuration;
			
			IConfiguration config = folderInfo.getParent();
			
			IManagedProject managedProject = config.getManagedProject();
			
			IProject project = (IProject) managedProject.getOwner();
			
			String currentVersion = null;
			try {
				currentVersion = project.getPersistentProperty(new QualifiedName("",
						PreferenceConstants.P_XLC_COMPILER_VERSION));
			} catch (CoreException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			
			if(currentVersion == null) {
				// if the property isn't set, then use the workbench preference
				IPreferenceStore prefStore = XLCUIPlugin.getDefault().getPreferenceStore();
				currentVersion = prefStore.getString(PreferenceConstants.P_XLC_COMPILER_VERSION);
			}
			
		  if(currentVersion.equals(PreferenceConstants.P_XL_COMPILER_VERSION_8_NAME))
			  return true;
			
		}
		
		return false;
		
	}
	
	/* (non-Javadoc)
	 * @see org.eclipse.cdt.managedbuilder.core.IOptionApplicability#isOptionEnabled(org.eclipse.cdt.managedbuilder.core.IBuildObject, org.eclipse.cdt.managedbuilder.core.IHoldsOptions, org.eclipse.cdt.managedbuilder.core.IOption)
	 */
	public boolean isOptionEnabled(IBuildObject configuration,
			IHoldsOptions holder, IOption option) {
		return isVersion8(configuration);
	}

	/* (non-Javadoc)
	 * @see org.eclipse.cdt.managedbuilder.core.IOptionApplicability#isOptionUsedInCommandLine(org.eclipse.cdt.managedbuilder.core.IBuildObject, org.eclipse.cdt.managedbuilder.core.IHoldsOptions, org.eclipse.cdt.managedbuilder.core.IOption)
	 */
	public boolean isOptionUsedInCommandLine(IBuildObject configuration,
			IHoldsOptions holder, IOption option) {
		return isVersion8(configuration);
	}

	/* (non-Javadoc)
	 * @see org.eclipse.cdt.managedbuilder.core.IOptionApplicability#isOptionVisible(org.eclipse.cdt.managedbuilder.core.IBuildObject, org.eclipse.cdt.managedbuilder.core.IHoldsOptions, org.eclipse.cdt.managedbuilder.core.IOption)
	 */
	public boolean isOptionVisible(IBuildObject configuration,
			IHoldsOptions holder, IOption option) {
		return isVersion8(configuration);
	}
}

Back to the top