Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7e858153695c134f8e9c1d4c8dcbec82603a8922 (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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
/*****************************************************************************
 * Copyright (c) 2010, 2013 LIFL & CEA LIST.
 *
 *
 * 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:
 *  Cedric Dumoulin (LIFL) cedric.dumoulin@lifl.fr - Initial API and implementation
 *  Christian W. Damus (CEA) - Don't make editor dirty on empty ResourceSetChangeEvent
 *
 *****************************************************************************/

package org.eclipse.papyrus.infra.ui.lifecycleevents;

import static org.eclipse.papyrus.infra.core.Activator.log;

import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.EventObject;
import java.util.List;

import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.emf.common.command.BasicCommandStack;
import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.common.command.CommandStack;
import org.eclipse.emf.common.command.CommandStackListener;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.emf.transaction.NotificationFilter;
import org.eclipse.emf.transaction.ResourceSetChangeEvent;
import org.eclipse.emf.transaction.ResourceSetListener;
import org.eclipse.emf.transaction.RollbackException;
import org.eclipse.emf.transaction.Transaction;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.jface.dialogs.ProgressMonitorDialog;
import org.eclipse.papyrus.infra.core.resource.ModelSet;
import org.eclipse.papyrus.infra.core.services.IService;
import org.eclipse.papyrus.infra.core.services.ServiceException;
import org.eclipse.papyrus.infra.core.services.ServicesRegistry;
import org.eclipse.papyrus.infra.core.utils.ServiceUtils;
import org.eclipse.papyrus.infra.ui.editor.IMultiDiagramEditor;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IFileEditorInput;
import org.eclipse.ui.ISaveablePart;
import org.eclipse.ui.actions.WorkspaceModifyOperation;
import org.eclipse.ui.dialogs.SaveAsDialog;
import org.eclipse.ui.part.FileEditorInput;

/**
 * A Papyrus Service allowing to perform save and saveAs on Papyrus Models. The
 * service also allows to listen on the dirty state of the Models. <br>
 * The service implements the {@link ISaveablePart} interface, and can be used
 * directly in part requiring such interface of adapter.
 *
 * <br>
 * This class allows nested editors to register themselves as nested {@link ISaveablePart}. In this case, the registered part will be notified
 * each time a save or saveAs is performed. Also, the nested part will be asked
 * for its dirtyState.
 *
 * TODO : Improve the implementation by registering the isDirty flag value, and
 * firing events only if the value really change. Actually, the event is fired
 * every time the model is modified, even if the virtual value of the flag
 * hasn't changed.
 *
 * @author cedric dumoulin
 *
 */
public class SaveAndDirtyService extends LifeCycleEventsProvider implements ISaveablePart, IService, ISaveAndDirtyService {

	/**
	 * Class used to propagate life cycle events. This class can be retrieved as
	 * a service using {@link ILifeCycleEventsProvider}.class. This class
	 * extends LifeCycleEventsProvider, so the local variable is set with
	 * ourself (historical reasons). TODO : remove this local variable.
	 */
	protected LifeCycleEventsProvider lifeCycleEventsProvider = this;

	/**
	 * Cached event that can be reused.
	 */
	protected DoSaveEvent lifeCycleEvent;

	/**
	 * Model set managing models.
	 */
	private ModelSet resourceSet;

	/**
	 *
	 */
	private TransactionalEditingDomain transactionalEditingDomain;

	/**
	 * The serviceRegistry.
	 */
	// private ServicesRegistry servicesRegistry;

	/**
	 * Associated editor. Needed by saveAs to synchronize editor input.
	 */
	private IMultiDiagramEditor multiDiagramEditor;

	/**
	 * List of registered {@link ISaveablePart}. This are usually nested
	 * editors.
	 */
	private ISaveablePartList registeredIsaveablePart;

	/**
	 * List of listeners on input changed event after a call to saveAs.
	 */
	private List<IEditorInputChangedListener> inputChangedListeners;

	/**
	 * Listener on commandStack changes.
	 */
	private final CommandStackListener commandStackListener = new CommandStackListener() {

		@Override
		public void commandStackChanged(EventObject event) {

			fireIsDirtyChanged();
		};
	};

	/*
	 * Listener on ResourceSet
	 */
	private final ResourceSetListener resourceSetListener = new ResourceSetListener() {

		@Override
		public NotificationFilter getFilter() {
			return null;
		}

		@Override
		public boolean isAggregatePrecommitListener() {
			return false;
		}

		@Override
		public boolean isPostcommitOnly() {
			return true;
		}

		@Override
		public boolean isPrecommitOnly() {
			return false;
		}

		@Override
		public void resourceSetChanged(ResourceSetChangeEvent event) {
			if (event.getTransaction() != null && event.getTransaction().getStatus().isOK() && madePersistableChanges(event)) {
				fireIsDirtyChanged();
			}
		}

		private boolean madePersistableChanges(ResourceSetChangeEvent event) {
			return !event.getNotifications().isEmpty() && !isUnprotected(event.getTransaction());
		}

		private boolean isUnprotected(Transaction transaction) {
			return !Boolean.TRUE.equals(transaction.getOptions().get(Transaction.OPTION_UNPROTECTED));
		}

		@Override
		public Command transactionAboutToCommit(ResourceSetChangeEvent event) throws RollbackException {
			return null;
		}

	};

	/**
	 * Constructor.
	 *
	 */
	public SaveAndDirtyService() {
		registeredIsaveablePart = new ISaveablePartList();
		inputChangedListeners = new ArrayList<IEditorInputChangedListener>();
	}

	/**
	 * Initialize the service. Retrieve other required services (ModelSet,
	 * CoreEditor).
	 *
	 * @see org.eclipse.papyrus.infra.core.services.IService#init(org.eclipse.papyrus.infra.core.services.ServicesRegistry)
	 *
	 * @param servicesRegistry
	 * @throws ServiceException
	 */
	@Override
	public void init(ServicesRegistry servicesRegistry) throws ServiceException {

		// this.servicesRegistry = servicesRegistry;

		// Retrieve required services.
		resourceSet = servicesRegistry.getService(ModelSet.class);
		multiDiagramEditor = servicesRegistry.getService(IMultiDiagramEditor.class);
		transactionalEditingDomain = ServiceUtils.getInstance().getTransactionalEditingDomain(servicesRegistry);

		// Initialize and register the ILifeCycleEventsProvider service (which
		// is ourself).
		// This mean that the ILifeCycleEventsProvider is not available until we
		// are started.
		lifeCycleEvent = new DoSaveEvent(servicesRegistry, multiDiagramEditor);
		// servicesRegistry.add(ILifeCycleEventsProvider.class, 1,
		// lifeCycleEventsProvider);

	}

	/**
	 * Do nothing.
	 *
	 * @see org.eclipse.papyrus.infra.core.services.IService#startService()
	 *
	 * @throws ServiceException
	 */
	@Override
	public void startService() throws ServiceException {

		// Listen to the modifications of the EMF model
		transactionalEditingDomain.getCommandStack().addCommandStackListener(commandStackListener);

		// Let's listen to the resource set change
		transactionalEditingDomain.addResourceSetListener(resourceSetListener);
	}

	/**
	 * @see org.eclipse.papyrus.infra.core.services.IService#disposeService()
	 *
	 * @throws ServiceException
	 */
	@Override
	public void disposeService() throws ServiceException {
		if (transactionalEditingDomain != null) {
			// Check if commandStack is null (meaning that transactionalEditingDomain
			// is disposed
			CommandStack commandStack = transactionalEditingDomain.getCommandStack();
			if (commandStack != null) {
				transactionalEditingDomain.getCommandStack().removeCommandStackListener(commandStackListener);
			}
			transactionalEditingDomain.removeResourceSetListener(resourceSetListener);
			// resourceSetListener = null;
		}

		// clean properties in order to help GC
		inputChangedListeners.clear();
		inputChangedListeners = null;
		multiDiagramEditor = null;
		// servicesRegistry = null;
		transactionalEditingDomain = null;
		resourceSet = null;
		lifeCycleEvent = null;

		postSaveListeners.clear();
		saveListeners.clear();
		preSaveListeners.clear();


	}

	/**
	 * Save the Models
	 *
	 * @see org.eclipse.ui.ISaveablePart#doSave(org.eclipse.core.runtime.IProgressMonitor)
	 *
	 * @param monitor
	 */
	@Override
	public void doSave(IProgressMonitor monitor) {
		// Sent pre doSave event
		lifeCycleEventsProvider.fireAboutToDoSaveEvent(lifeCycleEvent);

		// sent doSaveEvent
		lifeCycleEventsProvider.fireDoSaveEvent(lifeCycleEvent);
		// Perform local doSave
		// TODO : put it in a listener ?
		try {
			// Save each associated resource
			resourceSet.save(monitor);
			// notify registered IsaveablePart
			registeredIsaveablePart.doSave(monitor);
			markSaveLocation();
		} catch (IOException e) {
			log.error("Error during save", e); //$NON-NLS-1$
		}

		// Sent post Events
		lifeCycleEventsProvider.firePostDoSaveEvent(lifeCycleEvent);

	}

	/**
	 * @see org.eclipse.ui.ISaveablePart#doSaveAs()
	 *
	 */
	@Override
	public void doSaveAs() {
		// Sent pre doSave event
		lifeCycleEventsProvider.fireAboutToDoSaveAsEvent(lifeCycleEvent);

		// sent doSaveEvent
		lifeCycleEventsProvider.fireDoSaveAsEvent(lifeCycleEvent);
		// Perform local doSaveAs

		// Show a SaveAs dialog
		Shell shell = multiDiagramEditor.getEditorSite().getWorkbenchWindow().getShell();
		SaveAsDialog dialog = new SaveAsDialog(shell);
		dialog.setOriginalFile(((IFileEditorInput) multiDiagramEditor.getEditorInput()).getFile());
		dialog.open();
		final IPath path = dialog.getResult();
		if (path != null) {
			// try to save the editor's contents under a different file name
			final IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(path);
			try {
				new ProgressMonitorDialog(shell).run(false, // don't fork
						false, // can't cancel
						new WorkspaceModifyOperation() { // run this operation

							@Override
							public void execute(final IProgressMonitor monitor) {
								try {
									// to event bad redirection after the saveAs
									// see bug 319023
									EcoreUtil.resolveAll(resourceSet);
									resourceSet.saveAs(path);
									// notify registered IsaveablePart
									registeredIsaveablePart.doSave(monitor);
								} catch (IOException e) {
									log.error("Unable to saveAs the resource set", e); //$NON-NLS-1$
								}
							}
						});
				// set input to the new file
				fireEditorInputChanged(new FileEditorInput(file));
				markSaveLocation();
			} catch (InterruptedException e) {
				// should not happen, since the monitor dialog is not cancelable
				log.error(e);
			} catch (InvocationTargetException e) {
				log.error(e);
			}
		}

		// sent doSaveEvent
		lifeCycleEventsProvider.firePostDoSaveAsEvent(lifeCycleEvent);
	}

	/**
	 * Change the input of the underlying editor.
	 *
	 * @param fileEditorInput
	 */
	private void fireEditorInputChanged(FileEditorInput fileEditorInput) {

		for (IEditorInputChangedListener listener : inputChangedListeners) {
			try {
				listener.editorInputChanged(fileEditorInput);
			} catch (Exception e) {
				log.error("Can't set input for '" + listener + "'", e); //$NON-NLS-1$ //$NON-NLS-2$
			}
		}

	}

	/**
	 * Fire a PropertyChanged event to registered {@link IEditorInputChangedListener}.
	 *
	 * @param propertyId
	 */
	private void fireIsDirtyChanged() {

		for (IEditorInputChangedListener listener : inputChangedListeners) {
			try {
				listener.isDirtyChanged();
			} catch (Exception e) {
				log.error("Can't call listener '" + listener + "'", e); //$NON-NLS-1$ //$NON-NLS-2$
			}
		}

	}

	/**
	 * Return true if the multiEditor is dirty, false otherwise. The dirty state
	 * is compute as follow:
	 * <ul>
	 * <li>The {@link TransactionalEditingDomain} commandStack is checked</li>
	 * <li>and each registered nested Isaveable.isDirty() state is checked</li>
	 * <li></li>
	 * <li></li>
	 * <li></li>
	 * <li></li>
	 * </ul>
	 * If one of these states is false, the returned value is false. <br>
	 * If all of these states are true, the returned value is true.
	 *
	 * @see org.eclipse.ui.ISaveablePart#isDirty()
	 *
	 * @return
	 */
	@Override
	public boolean isDirty() {
		// First, look if the model part (EMF) is dirty, else look at the
		// Graphical part (GEF/GMF)
		if (transactionalEditingDomain == null) {
			return false;
		}
		return ((BasicCommandStack) transactionalEditingDomain.getCommandStack()).isSaveNeeded() || registeredIsaveablePart.isDirty();
	}

	/**
	 * @see org.eclipse.ui.ISaveablePart#isSaveAsAllowed()
	 *
	 * @return
	 */
	@Override
	public boolean isSaveAsAllowed() {
		return true;
	}

	/**
	 * @see org.eclipse.ui.ISaveablePart#isSaveOnCloseNeeded()
	 *
	 * @return
	 */
	@Override
	public boolean isSaveOnCloseNeeded() {
		return isDirty();
	}

	/**
	 * Mark the command stack of all sub-editors. Default implementation do
	 * nothing.
	 */
	protected void markSaveLocation() {
		((BasicCommandStack) transactionalEditingDomain.getCommandStack()).saveIsDone();
		fireIsDirtyChanged();
	}

	/**
	 * Register a nested {@link ISaveablePart} as a listener that will be
	 * notified each time a {@link #doSave(IProgressMonitor)} or {@link #doSaveAs()} is performed. Also, it will be asked for the
	 * dirtyState.
	 *
	 * @param saveablePart
	 */
	@Override
	public void registerIsaveablePart(ISaveablePart saveablePart) {
		registeredIsaveablePart.add(saveablePart);
	}

	/**
	 * Remove the specified {@link ISaveablePart} from the list of listeners.
	 *
	 * @param saveablePart
	 */
	@Override
	public void removeIsaveablePart(ISaveablePart saveablePart) {
		registeredIsaveablePart.remove(saveablePart);
	}

	/**
	 * Add a listeners on input changed event.
	 *
	 * @param inputChangedListener
	 */
	@Override
	public void addInputChangedListener(IEditorInputChangedListener inputChangedListener) {
		inputChangedListeners.add(inputChangedListener);
	}

	/**
	 * Remove a listeners on input changed event.
	 *
	 * @param inputChangedListener
	 */
	@Override
	public void removeInputChangedListener(IEditorInputChangedListener inputChangedListener) {
		inputChangedListeners.remove(inputChangedListener);
	}

	/**
	 * A list of {@link ISaveablePart}.
	 *
	 * @author dumoulin
	 *
	 */
	public class ISaveablePartList extends ArrayList<ISaveablePart> {

		/**
		 *
		 */
		private static final long serialVersionUID = 1L;

		/**
		 * Return true if one of the part is dirty, false if all part are not
		 * dirty.
		 *
		 * @return
		 */
		public boolean isDirty() {
			for (ISaveablePart part : this) {
				if (part.isDirty()) {
					return true;
				}
			}

			return false;
		}

		/**
		 * Call doSave on each registered {@link ISaveablePart}.
		 *
		 * @param monitor
		 */
		public void doSave(IProgressMonitor monitor) {
			for (ISaveablePart part : this) {

				try {
					part.doSave(monitor);
				} catch (Exception e) {
					log.error("Can't save ISaveablePart '" + part + "'", e); //$NON-NLS-1$ //$NON-NLS-2$
				}
			}

		}

		/**
		 * Call doSaveAs on each registered {@link ISaveablePart}.
		 *
		 * @param monitor
		 */
		public void doSaveAs() {
			for (ISaveablePart part : this) {
				try {
					part.doSaveAs();
				} catch (Exception e) {
					log.error("Can't save ISaveablePart '" + part + "'", e); //$NON-NLS-1$ //$NON-NLS-2$
				}
			}

		}
	}
}

Back to the top