Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ec4516de776b3feb44fb161f4f31609de57ef562 (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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
/*******************************************************************************
 * Copyright (c) 2011, 2012 Anton Gorenkov
 *
 * 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:
 *     Anton Gorenkov - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.testsrunner.internal.ui.view;

import java.text.MessageFormat;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;

import org.eclipse.cdt.testsrunner.internal.model.ITestingSessionsManagerListener;
import org.eclipse.cdt.testsrunner.internal.model.TestingSessionsManager;
import org.eclipse.cdt.testsrunner.model.ITestCase;
import org.eclipse.cdt.testsrunner.model.ITestItem;
import org.eclipse.cdt.testsrunner.model.ITestSuite;
import org.eclipse.cdt.testsrunner.model.ITestingSession;
import org.eclipse.cdt.testsrunner.model.ITestingSessionListener;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.viewers.TreeViewer;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.progress.UIJob;

/**
 * Tracks and collects the changes in active testing session and updates the UI
 * periodically. It allows to significantly improve the UI performance.
 */
public class UIUpdater {

	/** Access to the results showing view. */
	private ResultsView resultsView;

	/** Access to the tests hierarchy showing widget. */
	private TestsHierarchyViewer testsHierarchyViewer;

	/** Access to the statistics showing widget. */
	private ProgressCountPanel progressCountPanel;

	/** Listener for the changes in active testing session. */
	private ITestingSessionListener sessionListener;

	/**
	 * Specifies whether tests hierarchy scrolling should be done during the
	 * testing process.
	 */
	private boolean autoScroll = true;

	/** Access to the testing sessions manager. */
	private TestingSessionsManager sessionsManager;

	/** Listener to handle active testing session change. */
	private TestingSessionsManagerListener sessionsManagerListener;

	/** Reference to the active testing session. */
	ITestingSession testingSession;

	/** Storage for the UI changes that should be done on update. */
	UIChangesCache uiChangesCache = new UIChangesCache();

	/** A job that makes an UI update periodically. */
	UpdateUIJob updateUIJob = null;

	/** Time interval over which the UI should be updated. */
	private static final int REFRESH_INTERVAL = 200;

	/**
	 * Storage for the UI changes that should be done on update.
	 */
	private class UIChangesCache {

		/**
		 * Specifies whether Progress Counter Panel should be updated during the
		 * next UI update.
		 */
		private boolean needProgressCountPanelUpdate;

		/**
		 * Specifies whether view actions should be updated during the next UI
		 * update.
		 */
		private boolean needActionsUpdate;

		/**
		 * A test item which path should be shown as a view caption during the
		 * next UI update.
		 */
		private ITestItem testItemForNewViewCaption;

		/**
		 * Set of tree objects on which <code>refresh()</code> should be called
		 * during the next UI update.
		 */
		private Set<Object> treeItemsToRefresh = new HashSet<>();

		/**
		 * Set of tree objects on which <code>update()</code> should be called
		 * during the next UI update.
		 */
		private Set<Object> treeItemsToUpdate = new HashSet<>();

		/** Tree object that should be revealed during the next UI update. */
		private Object treeItemToReveal;

		/** Map of tree objects that should be expanded or collapsed to their new states. */
		private Map<Object, Boolean> treeItemsToExpand = new LinkedHashMap<>();

		UIChangesCache() {
			resetChanges();
		}

		/**
		 * Schedules the Progress Counter Panel update during the next UI update.
		 */
		public void scheduleProgressCountPanelUpdate() {
			synchronized (this) {
				needProgressCountPanelUpdate = true;
			}
		}

		/**
		 * Schedules the view actions update during the next UI update.
		 */
		public void scheduleActionsUpdate() {
			synchronized (this) {
				needActionsUpdate = true;
			}
		}

		/**
		 * Schedules the view caption update to the path to specified test item
		 * during the next UI update.
		 *
		 * @param testItem specified test item
		 */
		public void scheduleViewCaptionChange(ITestItem testItem) {
			synchronized (this) {
				testItemForNewViewCaption = testItem;
			}
		}

		/**
		 * Schedules the <code>update()</code> call for the specified tree
		 * object during the next UI update.
		 *
		 * @param item tree object to update
		 */
		public void scheduleTreeItemUpdate(Object item) {
			synchronized (this) {
				treeItemsToUpdate.add(item);
			}
		}

		/**
		 * Schedules the revealing of the specified tree object. Overrides
		 * the previously specified tree object to reveal (if any).
		 *
		 * @param item tree object to reveal
		 */
		public void scheduleTreeItemReveal(Object item) {
			synchronized (this) {
				treeItemToReveal = item;
			}
		}

		/**
		 * Schedules the expanding or collapsing of the specified tree object.
		 * Overrides the previous state for the same tree object (if any).
		 *
		 * @param item tree object to expand or collapse
		 * @param expandedState true if the node is expanded, and false if
		 * collapsed
		 */
		public void scheduleTreeItemExpand(Object item, boolean expandedState) {
			synchronized (this) {
				treeItemsToExpand.put(item, expandedState);
			}
		}

		/**
		 * Schedules the <code>refresh()</code> call for the specified tree
		 * object during the next UI update.
		 *
		 * @param item tree object to refresh
		 */
		public void scheduleTreeItemRefresh(Object item) {
			synchronized (this) {
				treeItemsToRefresh.add(item);
			}
		}

		/**
		 * Apply any scheduled changes to UI.
		 */
		public void applyChanges() {
			synchronized (this) {
				TreeViewer treeViewer = testsHierarchyViewer.getTreeViewer();
				// View statistics widgets update
				if (needProgressCountPanelUpdate) {
					progressCountPanel.updateInfoFromSession();
				}
				// View actions update
				if (needActionsUpdate) {
					resultsView.updateActionsFromSession();
				}
				// View caption update
				if (testItemForNewViewCaption != null) {
					resultsView.setCaption(MessageFormat.format(UIViewMessages.UIUpdater_view_caption_format,
							testItemForNewViewCaption.getName(),
							TestPathUtils.getTestItemPath(testItemForNewViewCaption.getParent())));
				}
				// Tree view update
				if (!treeItemsToRefresh.isEmpty()) {
					for (Object item : treeItemsToRefresh) {
						treeViewer.refresh(item, false);
					}
				}
				if (!treeItemsToUpdate.isEmpty()) {
					treeViewer.update(treeItemsToUpdate.toArray(), null);
				}
				if (treeItemToReveal != null) {
					treeViewer.reveal(treeItemToReveal);
				}
				if (!treeItemsToExpand.isEmpty()) {
					for (Map.Entry<Object, Boolean> entry : treeItemsToExpand.entrySet()) {
						treeViewer.setExpandedState(entry.getKey(), entry.getValue());
					}
				}
				// All changes are applied, remove them
				resetChangesImpl();
			}
		}

		/**
		 * Reset all the scheduled changes to UI.
		 */
		public void resetChanges() {
			synchronized (this) {
				resetChangesImpl();
			}
		}

		/**
		 * Reset all the scheduled changes to UI. Note, this method is not
		 * synchronized so it should be used carefully
		 */
		private void resetChangesImpl() {
			needProgressCountPanelUpdate = false;
			needActionsUpdate = false;
			testItemForNewViewCaption = null;
			treeItemsToUpdate.clear();
			treeItemToReveal = null;
			treeItemsToExpand.clear();
		}
	}

	/**
	 * A job that makes an UI update periodically.
	 */
	private class UpdateUIJob extends UIJob {

		/** Controls whether the job should be scheduled again. */
		private boolean isRunning = true;

		public UpdateUIJob() {
			super(UIViewMessages.UIUpdater_update_ui_job);
			setSystem(true);
		}

		@Override
		public IStatus runInUIThread(IProgressMonitor monitor) {
			if (!resultsView.isDisposed()) {
				uiChangesCache.applyChanges();
				scheduleSelf();
			}
			return Status.OK_STATUS;
		}

		/**
		 * Schedule self for running after time interval.
		 */
		public void scheduleSelf() {
			schedule(REFRESH_INTERVAL);
		}

		/**
		 * Sets the flag that prevents planning this job again.
		 */
		public void stop() {
			isRunning = false;
		}

		@Override
		public boolean shouldSchedule() {
			return isRunning;
		}

	}

	/**
	 * Listener for the changes in active testing session.
	 */
	private class SessionListener implements ITestingSessionListener {

		/**
		 * Common implementation for test case and test suite entering.
		 *
		 * @param testItem test case or test suite
		 */
		private void enterTestItem(ITestItem testItem) {
			uiChangesCache.scheduleViewCaptionChange(testItem);
			uiChangesCache.scheduleTreeItemUpdate(testItem);
			if (autoScroll) {
				uiChangesCache.scheduleTreeItemReveal(testItem);
			}
		}

		@Override
		public void enterTestSuite(ITestSuite testSuite) {
			enterTestItem(testSuite);
		}

		@Override
		public void exitTestSuite(ITestSuite testSuite) {
			uiChangesCache.scheduleTreeItemUpdate(testSuite);
			if (autoScroll) {
				uiChangesCache.scheduleTreeItemExpand(testSuite, false);
			}
		}

		@Override
		public void enterTestCase(ITestCase testCase) {
			enterTestItem(testCase);
		}

		@Override
		public void exitTestCase(ITestCase testCase) {
			uiChangesCache.scheduleActionsUpdate();
			uiChangesCache.scheduleProgressCountPanelUpdate();
			uiChangesCache.scheduleTreeItemUpdate(testCase);
		}

		@Override
		public void childrenUpdate(ITestSuite parent) {
			uiChangesCache.scheduleTreeItemRefresh(parent);
		}

		@Override
		public void testingStarted() {
			resultsView.updateActionsFromSession();
			Display.getDefault().syncExec(new Runnable() {

				@Override
				public void run() {
					resultsView.setCaption(testingSession.getStatusMessage());
					progressCountPanel.updateInfoFromSession();
					testsHierarchyViewer.getTreeViewer().refresh();
				}
			});
			startUpdateUIJob();
		}

		@Override
		public void testingFinished() {
			stopUpdateUIJob();
			resultsView.updateActionsFromSession();
			Display.getDefault().syncExec(new Runnable() {

				@Override
				public void run() {
					uiChangesCache.applyChanges();
					resultsView.setCaption(testingSession.getStatusMessage());
					progressCountPanel.updateInfoFromSession();
					testsHierarchyViewer.getTreeViewer().refresh();
					testsHierarchyViewer.getTreeViewer().collapseAll();
					testsHierarchyViewer.getTreeViewer().expandToLevel(2);
				}
			});
		}
	}

	/**
	 * Listener to handle active testing session change.
	 */
	private class TestingSessionsManagerListener implements ITestingSessionsManagerListener {

		@Override
		public void sessionActivated(ITestingSession newTestingSession) {
			if (testingSession != newTestingSession) {
				stopUpdateUIJob();
				uiChangesCache.resetChanges();

				unsubscribeFromSessionEvent();
				testingSession = newTestingSession;
				subscribeToSessionEvent();

				resultsView.updateActionsFromSession();
				Display.getDefault().syncExec(new Runnable() {

					@Override
					public void run() {
						progressCountPanel.setTestingSession(testingSession);
						testsHierarchyViewer.setTestingSession(testingSession);
						resultsView.setCaption(testingSession != null ? testingSession.getStatusMessage() : ""); //$NON-NLS-1$
					}
				});
				if (newTestingSession != null && !newTestingSession.isFinished()) {
					startUpdateUIJob();
				}
			}
		}
	}

	public UIUpdater(ResultsView resultsView, TestsHierarchyViewer testsHierarchyViewer,
			ProgressCountPanel progressCountPanel, TestingSessionsManager sessionsManager) {
		this.resultsView = resultsView;
		this.testsHierarchyViewer = testsHierarchyViewer;
		this.progressCountPanel = progressCountPanel;
		this.sessionsManager = sessionsManager;
		sessionListener = new SessionListener();
		sessionsManagerListener = new TestingSessionsManagerListener();
		sessionsManager.addListener(sessionsManagerListener);
	}

	/**
	 * Returns whether tests hierarchy scrolling should be done during the
	 * testing process.
	 *
	 * @return auto scroll state
	 */
	public boolean getAutoScroll() {
		return autoScroll;
	}

	/**
	 * Sets whether whether tests hierarchy scrolling should be done during the
	 * testing process.
	 *
	 * @param autoScroll new filter state
	 */
	public void setAutoScroll(boolean autoScroll) {
		this.autoScroll = autoScroll;
	}

	/**
	 * Disposes of the UI Updater. Make the necessary clean up.
	 */
	public void dispose() {
		unsubscribeFromSessionEvent();
		sessionsManager.removeListener(sessionsManagerListener);
	}

	/**
	 * Subscribes to the events of currently set testing session.
	 */
	private void subscribeToSessionEvent() {
		if (testingSession != null) {
			testingSession.getModelAccessor().addChangesListener(sessionListener);
		}
	}

	/**
	 * Unsubscribe from the events of currently set testing session.
	 */
	private void unsubscribeFromSessionEvent() {
		if (testingSession != null) {
			testingSession.getModelAccessor().removeChangesListener(sessionListener);
		}
	}

	/**
	 * Starts the UI updating job. Stops the previously running (if any).
	 */
	private void startUpdateUIJob() {
		stopUpdateUIJob();
		uiChangesCache.resetChanges();
		updateUIJob = new UpdateUIJob();
		updateUIJob.scheduleSelf();
	}

	/**
	 * Stops the UI updating job (if any).
	 */
	private void stopUpdateUIJob() {
		if (updateUIJob != null) {
			updateUIJob.stop();
			updateUIJob = null;
		}
	}

	/**
	 * Fakes the testing session activation and makes all necessary steps to
	 * handle it.
	 */
	public void reapplyActiveSession() {
		sessionsManagerListener.sessionActivated(sessionsManager.getActiveSession());
	}

}

Back to the top