Skip to main content
summaryrefslogtreecommitdiffstats
blob: 592b228c6e2b9d2e55974d5168b0f06c2c3358c0 (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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/*******************************************************************************
 * Copyright (c) 2009 Alena Laskavaia 
 * 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:
 *    Alena Laskavaia  - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.codan.internal.ui.widgets;

import java.io.File;

import org.eclipse.cdt.codan.core.model.IProblem;
import org.eclipse.cdt.codan.core.model.IProblemWorkingCopy;
import org.eclipse.cdt.codan.core.param.FileScopeProblemPreference;
import org.eclipse.cdt.codan.core.param.IProblemPreference;
import org.eclipse.cdt.codan.core.param.IProblemPreferenceCompositeDescriptor;
import org.eclipse.cdt.codan.core.param.ListProblemPreference;
import org.eclipse.cdt.codan.internal.ui.CodanUIMessages;
import org.eclipse.jface.dialogs.InputDialog;
import org.eclipse.jface.preference.BooleanFieldEditor;
import org.eclipse.jface.preference.FieldEditorPreferencePage;
import org.eclipse.jface.preference.FileFieldEditor;
import org.eclipse.jface.preference.ListEditor;
import org.eclipse.jface.preference.PreferenceStore;
import org.eclipse.jface.preference.StringFieldEditor;
import org.eclipse.jface.window.Window;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;

/**
 * Composite to show problem preferences
 * 
 */
public class ParametersComposite extends Composite {
	private FieldEditorPreferencePage page;
	private IProblem problem;
	private PreferenceStore prefStore;

	/**
	 * @param parent
	 * @param problem
	 * @param style
	 */
	public ParametersComposite(Composite parent, final IProblem problem) {
		super(parent, SWT.NONE);
		if (problem == null)
			throw new NullPointerException();
		this.setLayout(new GridLayout(2, false));
		this.problem = problem;
		this.prefStore = new PreferenceStore();
		page = new FieldEditorPreferencePage() {
			@Override
			protected void createFieldEditors() {
				noDefaultAndApplyButton();
				IProblemPreference pref = problem.getPreference();
				createFieldEditorsForParameters(pref);
			}

			/**
			 * @param info
			 */
			private void createFieldEditorsForParameters(
					final IProblemPreference info) {
				if (info == null)
					return;
				if (info.getKey() == FileScopeProblemPreference.KEY)
					return; // skip the scope
				switch (info.getType()) {
					case TYPE_STRING: {
						StringFieldEditor fe = new StringFieldEditor(
								info.getQualifiedKey(), info.getLabel(),
								getFieldEditorParent());
						addField(fe);
						break;
					}
					case TYPE_BOOLEAN: {
						BooleanFieldEditor fe = new BooleanFieldEditor(
								info.getQualifiedKey(), info.getLabel(),
								getFieldEditorParent());
						addField(fe);
						break;
					}
					case TYPE_LIST:
						ListEditor le = new ListEditor(info.getQualifiedKey(),
								info.getLabel(), getFieldEditorParent()) {
							@Override
							protected String[] parseString(String stringList) {
								ListProblemPreference list = (ListProblemPreference) info;
								IProblemPreference[] childDescriptors = list
										.getChildDescriptors();
								if (childDescriptors.length == 0)
									return new String[0];
								String res[] = new String[childDescriptors.length];
								for (int i = 0; i < childDescriptors.length; i++) {
									IProblemPreference item = childDescriptors[i];
									res[i] = String.valueOf(item.getValue());
								}
								return res;
							}

							@Override
							protected String getNewInputObject() {
								ListProblemPreference list = (ListProblemPreference) info;
								String label = list.getChildDescriptor()
										.getLabel();
								InputDialog dialog = new InputDialog(
										getShell(),
										CodanUIMessages.ParametersComposite_NewValue,
										label, "", null); //$NON-NLS-1$
								if (dialog.open() == Window.OK) {
									return dialog.getValue();
								}
								return null;
							}

							@Override
							protected String createList(String[] items) {
								ListProblemPreference list = (ListProblemPreference) info
										.clone();
								list.clear();
								for (int i = 0; i < items.length; i++) {
									String val = items[i];
									list.addChildValue(val);
								}
								return list.exportValue();
							}
						};
						addField(le);
						break;
					case TYPE_MAP:
						IProblemPreference[] childrenDescriptor = ((IProblemPreferenceCompositeDescriptor) info)
								.getChildDescriptors();
						for (int i = 0; i < childrenDescriptor.length; i++) {
							IProblemPreference desc = childrenDescriptor[i];
							createFieldEditorsForParameters(desc);
						}
						break;
					case TYPE_CUSTOM: {
						StringFieldEditor fe = new StringFieldEditor(
								info.getQualifiedKey(), info.getLabel(),
								getFieldEditorParent());
						addField(fe);
						break;
					}
					case TYPE_FILE: {
						FileFieldEditor fe = new FileFieldEditor(
								info.getQualifiedKey(), info.getLabel(),
								getFieldEditorParent());
						addField(fe);
						break;
					}
					default:
						throw new UnsupportedOperationException(info.getType()
								.toString());
				}
			}
		};
		IProblemPreference info = problem.getPreference();
		if (info == null) {
			Label label = new Label(this, 0);
			label.setText(CodanUIMessages.ParametersComposite_None);
		} else {
			initPrefStore(info);
		}
		page.setPreferenceStore(prefStore);
		page.createControl(parent);
		page.getControl().setLayoutData(new GridData(GridData.FILL_BOTH));
	}

	public void save(IProblemWorkingCopy problem) {
		page.performOk();
		savePrefStore(problem.getPreference());
	}

	private void savePrefStore(IProblemPreference desc) {
		if (desc == null)
			return;
		String key = desc.getQualifiedKey();
		switch (desc.getType()) {
			case TYPE_STRING:
				desc.setValue(prefStore.getString(key));
				break;
			case TYPE_BOOLEAN:
				desc.setValue(prefStore.getBoolean(key));
				break;
			case TYPE_INTEGER:
				desc.setValue(prefStore.getInt(key));
				break;
			case TYPE_FILE:
				desc.setValue(new File(prefStore.getString(key)));
				break;
			case TYPE_LIST:
				desc.importValue(prefStore.getString(key));
				break;
			case TYPE_CUSTOM:
				desc.importValue(prefStore.getString(key));
				break;
			case TYPE_MAP:
				IProblemPreference[] childrenDescriptor = ((IProblemPreferenceCompositeDescriptor) desc)
						.getChildDescriptors();
				for (int i = 0; i < childrenDescriptor.length; i++) {
					IProblemPreference chi = childrenDescriptor[i];
					savePrefStore(chi);
				}
				break;
			default:
				throw new UnsupportedOperationException(desc.getType()
						.toString());
		}
	}

	private void initPrefStore(IProblemPreference desc) {
		if (desc == null)
			return;
		String key = desc.getQualifiedKey();
		switch (desc.getType()) {
			case TYPE_STRING:
				prefStore.setValue(key, (String) desc.getValue());
				break;
			case TYPE_BOOLEAN:
				prefStore.setValue(key, (Boolean) desc.getValue());
				break;
			case TYPE_INTEGER:
				prefStore.setValue(key, (Integer) desc.getValue());
				break;
			case TYPE_FILE:
				prefStore.setValue(key, ((File) desc.getValue()).getPath());
				break;
			case TYPE_LIST:
				prefStore.setValue(key, desc.exportValue());
				break;
			case TYPE_CUSTOM:
				prefStore.setValue(key, desc.exportValue());
				break;
			case TYPE_MAP:
				IProblemPreference[] childrenDescriptor = ((IProblemPreferenceCompositeDescriptor) desc)
						.getChildDescriptors();
				for (int i = 0; i < childrenDescriptor.length; i++) {
					IProblemPreference chi = childrenDescriptor[i];
					initPrefStore(chi);
				}
				break;
			default:
				throw new UnsupportedOperationException(desc.getType()
						.toString());
		}
	}

	/**
	 * @return the problem
	 */
	public IProblem getProblem() {
		return problem;
	}
}

Back to the top