mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-13 11:15:38 +02:00
bug 288032: reformatting only
This commit is contained in:
parent
b37f1f3d9b
commit
0843b02a8f
1 changed files with 493 additions and 453 deletions
|
@ -67,10 +67,6 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
@Deprecated
|
||||
protected static final String PREFIX = "ScannerConfigOptionsDialog"; //$NON-NLS-1$
|
||||
|
||||
private static final String SC_GROUP_LABEL = "ScannerConfigOptionsDialog.scGroup.label"; //$NON-NLS-1$
|
||||
private static final String SC_ENABLED_BUTTON = "ScannerConfigOptionsDialog.scGroup.enabled.button"; //$NON-NLS-1$
|
||||
private static final String SC_PROBLEM_REPORTING_ENABLED_BUTTON = "ScannerConfigOptionsDialog.scGroup.problemReporting.enabled.button"; //$NON-NLS-1$
|
||||
private static final String SC_SELECTED_PROFILE_COMBO = "ScannerConfigOptionsDialog.scGroup.selectedProfile.combo"; //$NON-NLS-1$
|
||||
private static final String NAMESPACE = "org.eclipse.cdt.make.ui"; //$NON-NLS-1$
|
||||
private static final String POINT = "DiscoveryProfilePage"; //$NON-NLS-1$
|
||||
private static final String PROFILE_PAGE = "profilePage"; //$NON-NLS-1$
|
||||
|
@ -98,8 +94,13 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
protected SashForm sashForm;
|
||||
|
||||
private DiscoveryPageWrapper wrapper = null;
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
|
||||
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
*
|
||||
* @see
|
||||
* org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets
|
||||
* .Composite)
|
||||
*/
|
||||
public void createControls(Composite parent) {
|
||||
super.createControls(parent);
|
||||
|
@ -107,7 +108,8 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
usercomp.setLayout(new GridLayout(1, false));
|
||||
|
||||
if (page.isForProject() || page.isForPrefs()) {
|
||||
Group scopeGroup = setupGroup(usercomp, Messages.getString("DiscoveryTab.0"), 1, GridData.FILL_HORIZONTAL); //$NON-NLS-1$
|
||||
Group scopeGroup = setupGroup(usercomp, Messages.getString("DiscoveryTab.0"),
|
||||
1, GridData.FILL_HORIZONTAL); //$NON-NLS-1$
|
||||
scopeGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
|
||||
scopeComboBox = new Combo(scopeGroup, SWT.DROP_DOWN | SWT.READ_ONLY | SWT.BORDER);
|
||||
scopeComboBox.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
|
||||
|
@ -115,7 +117,8 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
scopeComboBox.add(Messages.getString("DiscoveryTab.2")); //$NON-NLS-1$
|
||||
scopeComboBox.addSelectionListener(new SelectionAdapter() {
|
||||
public void widgetSelected(SelectionEvent e) {
|
||||
if (cbi == null) return;
|
||||
if (cbi == null)
|
||||
return;
|
||||
cbi.setPerRcTypeDiscovery(scopeComboBox.getSelectionIndex() == 0);
|
||||
updateData();
|
||||
}
|
||||
|
@ -141,7 +144,8 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
resTable.addSelectionListener(new SelectionAdapter() {
|
||||
public void widgetSelected(SelectionEvent e) {
|
||||
handleToolSelected();
|
||||
}});
|
||||
}
|
||||
});
|
||||
initializeProfilePageMap();
|
||||
|
||||
Composite c = new Composite(sashForm, 0);
|
||||
|
@ -160,9 +164,11 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
}
|
||||
|
||||
private void createScannerConfigControls(Composite parent) {
|
||||
scGroup = setupGroup(parent, UIMessages.getString(SC_GROUP_LABEL), 2, GridData.FILL_HORIZONTAL);
|
||||
scGroup = setupGroup(parent, UIMessages.getString("ScannerConfigOptionsDialog.scGroup.label"),
|
||||
2, GridData.FILL_HORIZONTAL);
|
||||
|
||||
scEnabledButton = setupCheck(scGroup, UIMessages.getString(SC_ENABLED_BUTTON), 2, GridData.FILL_HORIZONTAL);
|
||||
scEnabledButton = setupCheck(scGroup, UIMessages.getString("ScannerConfigOptionsDialog.scGroup.enabled.button"),
|
||||
2, GridData.FILL_HORIZONTAL);
|
||||
scEnabledButton.addSelectionListener(new SelectionAdapter() {
|
||||
public void widgetSelected(SelectionEvent e) {
|
||||
buildInfo.setAutoDiscoveryEnabled(scEnabledButton.getSelection());
|
||||
|
@ -171,7 +177,8 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
handleDiscoveryProfileChanged();
|
||||
}
|
||||
});
|
||||
scProblemReportingEnabledButton = setupCheck(scGroup, UIMessages.getString(SC_PROBLEM_REPORTING_ENABLED_BUTTON), 2, GridData.FILL_HORIZONTAL);
|
||||
scProblemReportingEnabledButton = setupCheck(scGroup, UIMessages.getString("ScannerConfigOptionsDialog.scGroup.problemReporting.enabled.button"),
|
||||
2, GridData.FILL_HORIZONTAL);
|
||||
scProblemReportingEnabledButton.addSelectionListener(new SelectionAdapter() {
|
||||
public void widgetSelected(SelectionEvent e) {
|
||||
buildInfo.setProblemReportingEnabled(scProblemReportingEnabledButton.getSelection());
|
||||
|
@ -179,7 +186,8 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
});
|
||||
|
||||
// Add profile combo box
|
||||
setupLabel(scGroup,UIMessages.getString(SC_SELECTED_PROFILE_COMBO), 1, GridData.BEGINNING);
|
||||
setupLabel(scGroup, UIMessages.getString("ScannerConfigOptionsDialog.scGroup.selectedProfile.combo"),
|
||||
1, GridData.BEGINNING);
|
||||
profileComboBox = new Combo(scGroup, SWT.DROP_DOWN | SWT.READ_ONLY | SWT.BORDER);
|
||||
profileComboBox.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
|
||||
profileComboBox.addSelectionListener(new SelectionAdapter() {
|
||||
|
@ -210,7 +218,8 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
cbi = CfgScannerConfigProfileManager.getCfgScannerConfigBuildInfo(cfg);
|
||||
if (!page.isForPrefs() && baseInfoMap == null) {
|
||||
try {
|
||||
IScannerConfigBuilderInfo2Set baseCbi = ScannerConfigProfileManager.createScannerConfigBuildInfo2Set(cfg.getOwner().getProject());
|
||||
IProject project = cfg.getOwner().getProject();
|
||||
IScannerConfigBuilderInfo2Set baseCbi = ScannerConfigProfileManager.createScannerConfigBuildInfo2Set(project);
|
||||
baseInfoMap = baseCbi.getInfoMap();
|
||||
} catch (CoreException e) {
|
||||
}
|
||||
|
@ -230,7 +239,6 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
scopeComboBox.select(selScope);
|
||||
fTableDefinition.setText(lblText);
|
||||
|
||||
|
||||
Map<CfgInfoContext, IScannerConfigBuilderInfo2> m = cbi.getInfoMap();
|
||||
int pos = resTable.getSelectionIndex();
|
||||
resTable.removeAll();
|
||||
|
@ -240,15 +248,18 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
if (rci == null) { // per configuration
|
||||
s = ic.getConfiguration().getName();
|
||||
} else { // per resource
|
||||
if ( ! configPath.equals(rci.getPath())) continue;
|
||||
if (!configPath.equals(rci.getPath()))
|
||||
continue;
|
||||
IInputType typ = ic.getInputType();
|
||||
if (typ != null) s = typ.getName();
|
||||
if (typ != null)
|
||||
s = typ.getName();
|
||||
if (s == null) {
|
||||
ITool tool = ic.getTool();
|
||||
if (tool != null)
|
||||
s = tool.getName();
|
||||
}
|
||||
if (s == null) s = Messages.getString("DiscoveryTab.3"); //$NON-NLS-1$
|
||||
if (s == null)
|
||||
s = Messages.getString("DiscoveryTab.3"); //$NON-NLS-1$
|
||||
}
|
||||
IScannerConfigBuilderInfo2 bi2 = m.get(ic);
|
||||
TableItem ti = new TableItem(resTable, SWT.NONE);
|
||||
|
@ -277,14 +288,14 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
private String getProfileName(String id) {
|
||||
int x = id.lastIndexOf("."); //$NON-NLS-1$
|
||||
return (x == -1) ? id : id.substring(x + 1);
|
||||
}
|
||||
|
||||
private void handleToolSelected() {
|
||||
if (resTable.getSelectionCount() == 0) return;
|
||||
if (resTable.getSelectionCount() == 0)
|
||||
return;
|
||||
|
||||
performOK(false);
|
||||
|
||||
|
@ -325,10 +336,10 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
}
|
||||
if (null == tools)
|
||||
return;
|
||||
}
|
||||
else
|
||||
} else {
|
||||
tools = new ITool[] { tool };
|
||||
}
|
||||
}
|
||||
for (String profileId : profilesList) {
|
||||
if (tools != null) {
|
||||
boolean ok = false;
|
||||
|
@ -391,7 +402,8 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
String attribute = ((InputType) it).getDiscoveryProfileIdAttribute();
|
||||
if (null == attribute)
|
||||
return new String[0];
|
||||
// FIXME: temporary; we should add new method to IInputType instead of that
|
||||
// FIXME: temporary; we should add new method to IInputType instead of
|
||||
// that
|
||||
String[] profileIds = attribute.split("\\|");
|
||||
for (int i = 0; i < profileIds.length; ++i)
|
||||
profileIds[i] = profileIds[i].trim();
|
||||
|
@ -403,19 +415,19 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
String[] tmp = new String[counter];
|
||||
// Always show either Name + ID, or ID only
|
||||
// These cases do not require checking for doubles.
|
||||
if (mode == CDTPrefUtil.DISC_NAMING_ALWAYS_BOTH ||
|
||||
mode == CDTPrefUtil.DISC_NAMING_ALWAYS_IDS){
|
||||
for (int i=0; i<counter; i++)
|
||||
tmp[i] = (mode == CDTPrefUtil.DISC_NAMING_ALWAYS_IDS) ?
|
||||
ids[i] :
|
||||
combine(labels[i], ids[i]);
|
||||
if (mode == CDTPrefUtil.DISC_NAMING_ALWAYS_BOTH || mode == CDTPrefUtil.DISC_NAMING_ALWAYS_IDS) {
|
||||
for (int i = 0; i < counter; i++) {
|
||||
tmp[i] = (mode == CDTPrefUtil.DISC_NAMING_ALWAYS_IDS)
|
||||
? ids[i]
|
||||
: combine(labels[i], ids[i]);
|
||||
}
|
||||
return tmp;
|
||||
}
|
||||
|
||||
// For not-unique names only, either display ID or name + ID
|
||||
boolean doubles = false;
|
||||
outer:
|
||||
// quick check for at least one double
|
||||
outer:
|
||||
for (int i = 0; i < counter; i++) {
|
||||
for (int j = 0; j < counter; j++) {
|
||||
// sic! i < j, to avoid repeated comparison
|
||||
|
@ -440,7 +452,8 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
if (doubles) {
|
||||
if (mode == CDTPrefUtil.DISC_NAMING_UNIQUE_OR_IDS)
|
||||
tmp[i] = ids[i];
|
||||
else // replace with Name + Id
|
||||
else
|
||||
// replace with Name + Id
|
||||
tmp[i] = combine(labels[i], ids[i]);
|
||||
} else { // this name is unique - no changes !
|
||||
tmp[i] = labels[i];
|
||||
|
@ -451,8 +464,10 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
}
|
||||
|
||||
private String combine(String s1, String s2) {
|
||||
if (s1.equals(s2)) return s1;
|
||||
else return s1 + " (" + s2 + ")"; //$NON-NLS-1$ //$NON-NLS-2$
|
||||
if (s1.equals(s2))
|
||||
return s1;
|
||||
else
|
||||
return s1 + " (" + s2 + ")"; //$NON-NLS-1$ //$NON-NLS-2$
|
||||
}
|
||||
|
||||
private void handleDiscoveryProfileChanged() {
|
||||
|
@ -467,9 +482,9 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
*/
|
||||
private void initializeProfilePageMap() {
|
||||
pagesList = new ArrayList<DiscoveryProfilePageConfiguration>(5);
|
||||
IExtensionPoint point = Platform.getExtensionRegistry().getExtensionPoint(
|
||||
NAMESPACE, POINT);
|
||||
if (point == null) return;
|
||||
IExtensionPoint point = Platform.getExtensionRegistry().getExtensionPoint(NAMESPACE, POINT);
|
||||
if (point == null)
|
||||
return;
|
||||
IConfigurationElement[] infos = point.getConfigurationElements();
|
||||
for (int i = 0; i < infos.length; i++) {
|
||||
if (infos[i].getName().equals(PROFILE_PAGE)) {
|
||||
|
@ -487,28 +502,32 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
IConfigurationElement fElement;
|
||||
private String profId, name;
|
||||
|
||||
protected DiscoveryProfilePageConfiguration(IConfigurationElement element) {
|
||||
protected DiscoveryProfilePageConfiguration(
|
||||
IConfigurationElement element) {
|
||||
fElement = element;
|
||||
profId = fElement.getAttribute(PROFILE_ID);
|
||||
name = fElement.getAttribute(PROFILE_NAME);
|
||||
}
|
||||
protected String getName() { return name; }
|
||||
|
||||
private AbstractDiscoveryPage getPage()
|
||||
{
|
||||
protected String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
private AbstractDiscoveryPage getPage() {
|
||||
try {
|
||||
return (AbstractDiscoveryPage) fElement.createExecutableExtension("class"); //$NON-NLS-1$
|
||||
} catch (CoreException e) { return null; }
|
||||
} catch (CoreException e) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void performApply(ICResourceDescription src,ICResourceDescription dst) {
|
||||
public void performApply(ICResourceDescription src,
|
||||
ICResourceDescription dst) {
|
||||
if (page.isMultiCfg())
|
||||
return;
|
||||
ICfgScannerConfigBuilderInfo2Set cbi1 =
|
||||
CfgScannerConfigProfileManager.getCfgScannerConfigBuildInfo(getCfg(src.getConfiguration()));
|
||||
ICfgScannerConfigBuilderInfo2Set cbi2 =
|
||||
CfgScannerConfigProfileManager.getCfgScannerConfigBuildInfo(getCfg(dst.getConfiguration()));
|
||||
ICfgScannerConfigBuilderInfo2Set cbi1 = CfgScannerConfigProfileManager.getCfgScannerConfigBuildInfo(getCfg(src.getConfiguration()));
|
||||
ICfgScannerConfigBuilderInfo2Set cbi2 = CfgScannerConfigProfileManager.getCfgScannerConfigBuildInfo(getCfg(dst.getConfiguration()));
|
||||
cbi2.setPerRcTypeDiscovery(cbi1.isPerRcTypeDiscovery());
|
||||
|
||||
Map<CfgInfoContext, IScannerConfigBuilderInfo2> m1 = cbi1.getInfoMap();
|
||||
|
@ -598,7 +617,8 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
return list;
|
||||
}
|
||||
|
||||
private boolean settingsEqual(IScannerConfigBuilderInfo2 info1, IScannerConfigBuilderInfo2 info2){
|
||||
private boolean settingsEqual(IScannerConfigBuilderInfo2 info1,
|
||||
IScannerConfigBuilderInfo2 info2) {
|
||||
if (!CDataUtil.objectsEqual(info1.getSelectedProfileId(), info2.getSelectedProfileId()))
|
||||
return false;
|
||||
if (!CDataUtil.objectsEqual(info1.getBuildOutputFilePath(), info2.getBuildOutputFilePath()))
|
||||
|
@ -607,10 +627,10 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
return false;
|
||||
if (!CDataUtil.objectsEqual(info1.getSelectedProfileId(), info2.getSelectedProfileId()))
|
||||
return false;
|
||||
if (info1.isAutoDiscoveryEnabled() != info2.isAutoDiscoveryEnabled() ||
|
||||
info1.isBuildOutputFileActionEnabled() != info2.isBuildOutputFileActionEnabled() ||
|
||||
info1.isBuildOutputParserEnabled() != info2.isBuildOutputParserEnabled() ||
|
||||
info1.isProblemReportingEnabled() != info2.isProblemReportingEnabled())
|
||||
if (info1.isAutoDiscoveryEnabled() != info2.isAutoDiscoveryEnabled()
|
||||
|| info1.isBuildOutputFileActionEnabled() != info2.isBuildOutputFileActionEnabled()
|
||||
|| info1.isBuildOutputParserEnabled() != info2.isBuildOutputParserEnabled()
|
||||
|| info1.isProblemReportingEnabled() != info2.isProblemReportingEnabled())
|
||||
return false;
|
||||
if (!listEqual(info1.getProfileIdList(), info2.getProfileIdList()))
|
||||
return false;
|
||||
|
@ -620,15 +640,20 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
}
|
||||
|
||||
private boolean listEqual(List<String> l1, List<String> l2) {
|
||||
if (l1 == null && l2 == null) return true;
|
||||
if (l1 == null || l2 == null) return false;
|
||||
if (l1.size() != l2.size()) return false;
|
||||
if (l1 == null && l2 == null)
|
||||
return true;
|
||||
if (l1 == null || l2 == null)
|
||||
return false;
|
||||
if (l1.size() != l2.size())
|
||||
return false;
|
||||
// both lists have items in the same order ?
|
||||
// since it's most probable, try it first.
|
||||
if (l1.equals(l2)) return true;
|
||||
if (l1.equals(l2))
|
||||
return true;
|
||||
// order may differ...
|
||||
for (String s : l1)
|
||||
if (!l2.contains(s)) return false;
|
||||
if (!l2.contains(s))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -642,18 +667,29 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
return true;
|
||||
// Hide this page for folders and files
|
||||
// if Discovery scope is "per configuration", not "per resource"
|
||||
ICfgScannerConfigBuilderInfo2Set _cbi =
|
||||
CfgScannerConfigProfileManager.getCfgScannerConfigBuildInfo(getCfg(page.getResDesc().getConfiguration()));
|
||||
IConfiguration cfg = getCfg(page.getResDesc().getConfiguration());
|
||||
ICfgScannerConfigBuilderInfo2Set _cbi = CfgScannerConfigProfileManager.getCfgScannerConfigBuildInfo(cfg);
|
||||
return _cbi.isPerRcTypeDiscovery();
|
||||
}
|
||||
|
||||
/**
|
||||
* IBuildInfoContainer methods - called from dynamic pages
|
||||
*/
|
||||
public IScannerConfigBuilderInfo2 getBuildInfo() { return buildInfo; }
|
||||
public CfgInfoContext getContext() { return iContext; }
|
||||
public IProject getProject() { return page.getProject(); }
|
||||
public ICConfigurationDescription getConfiguration() { return getResDesc().getConfiguration(); }
|
||||
public IScannerConfigBuilderInfo2 getBuildInfo() {
|
||||
return buildInfo;
|
||||
}
|
||||
|
||||
public CfgInfoContext getContext() {
|
||||
return iContext;
|
||||
}
|
||||
|
||||
public IProject getProject() {
|
||||
return page.getProject();
|
||||
}
|
||||
|
||||
public ICConfigurationDescription getConfiguration() {
|
||||
return getResDesc().getConfiguration();
|
||||
}
|
||||
|
||||
protected void performDefaults() {
|
||||
if (page.isMultiCfg())
|
||||
|
@ -662,9 +698,13 @@ public class DiscoveryTab extends AbstractCBuildPropertyTab implements IBuildInf
|
|||
for (CfgInfoContext cic : cbi.getInfoMap().keySet()) {
|
||||
try {
|
||||
cbi.applyInfo(cic, null);
|
||||
} catch (CoreException e) {}
|
||||
} catch (CoreException e) {
|
||||
}
|
||||
}
|
||||
updateData();
|
||||
}
|
||||
protected void updateButtons() {} // Do nothing. No buttons to update.
|
||||
|
||||
protected void updateButtons() {
|
||||
// Do nothing. No buttons to update.
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue