Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ac65057e1dbdc25ab3e7cec6b25fa50768501625 (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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/*******************************************************************************
 * Copyright (c) 2009, 2012 QNX Software Systems 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:
 *     QNX Software Systems - initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.internal.ui.workingsets;

import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.eclipse.cdt.ui.CUIPlugin;
import org.eclipse.cdt.ui.newui.CDTPrefUtil;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.util.IPropertyChangeListener;
import org.eclipse.jface.util.PropertyChangeEvent;
import org.eclipse.ui.IMemento;
import org.eclipse.ui.IWorkingSet;
import org.eclipse.ui.IWorkingSetManager;
import org.eclipse.ui.XMLMemento;

/**
 * The purveyor of working set configurations. It provides a current view of the {@linkplain IWorkingSetProxy
 * working set configurations} defined in the workspace, as well as a working-copy
 * {@linkplain WorkspaceSnapshot snapshot} of the same for making modifications.
 *
 * @author Christian W. Damus (cdamus)
 *
 * @since 6.0
 *
 */
public class WorkingSetConfigurationManager {

	static final String TYPE_WORKING_SET_CONFIGS = "org.eclipse.cdt.ui.workingSetConfigurations"; //$NON-NLS-1$
	static final String KEY_WORKING_SET = "workingSet"; //$NON-NLS-1$
	static final String ATTR_NAME = "name"; //$NON-NLS-1$
	static final String KEY_CONFIG = "config"; //$NON-NLS-1$
	static final String KEY_PROJECT = "project"; //$NON-NLS-1$
	static final String ATTR_CONFIG = "config"; //$NON-NLS-1$
	static final String ATTR_FACTORY = "factory"; //$NON-NLS-1$

	static IWorkingSetManager WS_MGR = CUIPlugin.getDefault().getWorkbench().getWorkingSetManager();

	private static final WorkingSetConfigurationManager INSTANCE = new WorkingSetConfigurationManager();

	private Map<String, IWorkingSetProxy> workingSets;

	private final Object storeLock = new Object();
	private IMemento store;

	private final ISchedulingRule saveRule = new ISchedulingRule() {

		@Override
		public boolean isConflicting(ISchedulingRule rule) {
			return rule == this;
		}

		@Override
		public boolean contains(ISchedulingRule rule) {
			return rule == this;
		}
	};

	/**
	 * Not instantiable by clients.
	 */
	private WorkingSetConfigurationManager() {
		store = loadMemento();
		new WorkingSetChangeTracker();
	}

	/**
	 * Obtains the default working set configuration manager.
	 *
	 * @return the working set configuration manager
	 */
	public static WorkingSetConfigurationManager getDefault() {
		return INSTANCE;
	}

	private Map<String, IWorkingSetProxy> getWorkingSetMap() {
		Map<String, IWorkingSetProxy> result;

		synchronized (storeLock) {
			if (workingSets == null) {
				load();
			}
			result = workingSets;
		}

		return result;
	}

	/**
	 * Obtains the current immutable view of the specified working set's configurations. These configurations
	 * may be {@linkplain IWorkingSetConfiguration#activate() activated} to apply their settings to the
	 * workspace, but they cannot be modified.
	 *
	 * @param name
	 *            the name of the working set to retrieve
	 * @return the named working set, or <code>null</code> if there is none available by that name
	 */
	public IWorkingSetProxy getWorkingSet(String name) {
		return getWorkingSetMap().get(name);
	}

	/**
	 * Obtains the current immutable view of all available working set configurations. These configurations
	 * may be {@linkplain IWorkingSetConfiguration#activate() activated} to apply their settings to the
	 * workspace, but they cannot be modified.
	 *
	 * @return the working set configurations
	 */
	public Collection<IWorkingSetProxy> getWorkingSets() {
		return getWorkingSetMap().values();
	}

	/**
	 * Creates a new mutable snapshot of the current working set configurations. This snapshot accepts
	 * modifications and can be {@linkplain WorkspaceSnapshot#save() saved} to persist the changes.
	 *
	 * @return a working-copy of the working set configurations
	 */
	public WorkspaceSnapshot createWorkspaceSnapshot() {
		return new WorkspaceSnapshot().initialize(getWorkingSetMap());
	}

	/**
	 * <p>
	 * Loads the working set configurations from storage.
	 * </p>
	 * <p>
	 * <b>Note</b> that this method must only be called within the <tt>storeLock</tt> monitor.
	 * </p>
	 */
	private void load() {
		workingSets = new java.util.HashMap<String, IWorkingSetProxy>();

		for (IMemento next : store.getChildren(KEY_WORKING_SET)) {
			WorkingSetProxy ws = new WorkingSetProxy();

			ws.loadState(next);

			if (ws.isValid()) {
				workingSets.put(ws.getName(), ws);
			}
		}
	}

	/**
	 * <p>
	 * Forgets the current view of the working set configurations.
	 * </p>
	 * <p>
	 * <b>Note</b> that this method must only be called within the <tt>storeLock</tt> monitor.
	 * </p>
	 */
	private void clear() {
		workingSets = null;
	}

	/**
	 * Saves the working set configurations to storage.
	 *
	 * @param snapshot
	 *            the snapshot to save
	 */
	void save(WorkspaceSnapshot snapshot) {
		final XMLMemento memento = XMLMemento.createWriteRoot(TYPE_WORKING_SET_CONFIGS);

		for (IWorkingSetConfigurationElement next : snapshot.getWorkingSets()) {
			next.saveState(memento.createChild(KEY_WORKING_SET));
		}

		save(memento);
	}

	/**
	 * Records the specified memento as our new store and asynchronously saves it in a job.
	 *
	 * @param memento
	 *            the new store
	 */
	private void save(final XMLMemento memento) {
		synchronized (storeLock) {
			store = memento;
			clear();
		}

		new Job(WorkingSetMessages.WSConfigManager_save_job) {
			{
				setRule(saveRule);
				setSystem(true);
			}

			@Override
			protected IStatus run(IProgressMonitor monitor) {

				File file = getStorage();
				FileWriter writer = null;
				try {
					writer = new FileWriter(file);
					memento.save(writer);
					writer.close();
				} catch (IOException e) {
					if (writer != null) {
						try {
							writer.close();
						} catch (IOException e2) {
							// no recovery
							CUIPlugin.log(WorkingSetMessages.WSConfigManager_closeFailed, e);
						}
					}

					file.delete(); // it is corrupt; we won't be able to load it, later

					CUIPlugin.log(WorkingSetMessages.WSConfigManager_saveFailed, e);
				}
				return Status.OK_STATUS;
			}
		}.schedule();
	}

	/**
	 * Gets the file in which we persist the working set configurations.
	 *
	 * @return the file store
	 */
	private File getStorage() {
		IPath path = CUIPlugin.getDefault().getStateLocation().append("workingSetConfigs.xml"); //$NON-NLS-1$
		return path.toFile();
	}

	/**
	 * Loads the working set configurations from storage. For compatibility, if the XML file is not available,
	 * we load from the old preference setting format.
	 *
	 * @return the working set configuration store
	 */
	private IMemento loadMemento() {
		IMemento result = null;

		File file = getStorage();

		if (file.exists()) {
			FileReader reader = null;
			try {
				reader = new FileReader(file);
				result = XMLMemento.createReadRoot(reader);
				reader.close();
			} catch (Exception e) {
				result = null;

				if (reader != null) {
					try {
						reader.close();
					} catch (IOException e2) {
						// no recovery
						CUIPlugin.log(WorkingSetMessages.WSConfigManager_closeFailed, e);
					}
				}

				CUIPlugin.log(WorkingSetMessages.WSConfigManager_loadFailed, e);
			}
		}

		if (result == null) {
			// fake one from the old preference storage format. This also
			// handles the case of no working set configurations ever being made
			@SuppressWarnings("deprecation")
			List<String> configSetStrings = CDTPrefUtil.readConfigSets();
			result = XMLMemento.createWriteRoot(TYPE_WORKING_SET_CONFIGS);

			// collect the unordered entries by working set
			Map<String, IMemento> configMap = new HashMap<String, IMemento>();
			for (String next : configSetStrings) {
				String[] bits = next.split(" "); //$NON-NLS-1$

				if (bits.length >= 2) {
					String configName = bits[0];
					String wsName = bits[1];

					IMemento workingSet = configMap.get(wsName);
					if (workingSet == null) {
						workingSet = result.createChild(KEY_WORKING_SET);
						configMap.put(wsName, workingSet);
					}

					workingSet.putString(ATTR_NAME, wsName);

					IMemento config = workingSet.createChild(KEY_CONFIG);
					config.putString(ATTR_NAME, configName);

					int limit = bits.length - (bits.length % 2);
					for (int i = 2; i < limit; i += 2) {
						IMemento project = config.createChild(KEY_PROJECT);
						project.putString(ATTR_NAME, bits[i]);
						project.putString(ATTR_CONFIG, bits[i + 1]);
					}
				}
			}
		}

		return result;
	}

	//
	// Nested classes
	//

	/**
	 * A working set manager listener that tracks name changes and removals of working sets to keep our
	 * configurations in synch as much as possible. It updates the memento store directly in response to
	 * changes in the working sets.
	 *
	 * @author Christian W. Damus (cdamus)
	 *
	 * @since 6.0
	 */
	private class WorkingSetChangeTracker extends java.util.IdentityHashMap<IWorkingSet, String>
			implements IPropertyChangeListener {

		WorkingSetChangeTracker() {
			for (IWorkingSet next : WS_MGR.getWorkingSets()) {
				put(next, next.getName());
			}

			WS_MGR.addPropertyChangeListener(this);
		}

		@Override
		public void propertyChange(PropertyChangeEvent event) {
			String property = event.getProperty();

			if (IWorkingSetManager.CHANGE_WORKING_SET_NAME_CHANGE.equals(property)) {
				handleNameChange((IWorkingSet) event.getNewValue());
			} else if (IWorkingSetManager.CHANGE_WORKING_SET_REMOVE.equals(property)) {
				handleRemove((IWorkingSet) event.getOldValue());
			} else if (IWorkingSetManager.CHANGE_WORKING_SET_ADD.equals(property)) {
				handleAdd((IWorkingSet) event.getNewValue());
			}
		}

		private void handleNameChange(IWorkingSet workingSet) {
			synchronized (storeLock) {
				String oldName = get(workingSet);
				IMemento wsMemento = null;
				if (oldName != null) {
					for (IMemento next : store.getChildren(KEY_WORKING_SET)) {
						if (oldName.equals(next.getString(ATTR_NAME))) {
							wsMemento = next;
							break;
						}
					}
				}

				if (wsMemento != null) {
					// update the memento with the new name
					wsMemento.putString(ATTR_NAME, workingSet.getName());

					// clone it
					XMLMemento newStore = XMLMemento.createWriteRoot(TYPE_WORKING_SET_CONFIGS);
					newStore.putMemento(store);

					// save it asynchronously
					save(newStore);
				}

				// and update our mapping
				put(workingSet, workingSet.getName());
			}
		}

		private void handleRemove(IWorkingSet workingSet) {
			synchronized (storeLock) {
				String name = get(workingSet);
				if (name != null) {
					// remove the memento from the store
					XMLMemento newStore = XMLMemento.createWriteRoot(TYPE_WORKING_SET_CONFIGS);
					for (IMemento next : store.getChildren(KEY_WORKING_SET)) {
						if (!name.equals(next.getString(ATTR_NAME))) {
							newStore.createChild(KEY_WORKING_SET).putMemento(next);
						}
					}

					// save asynchronously
					save(newStore);
				}

				// and update our mapping
				remove(workingSet);
			}
		}

		private void handleAdd(IWorkingSet workingSet) {
			synchronized (storeLock) {
				put(workingSet, workingSet.getName());
			}
		}
	}
}

Back to the top