Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 50b175390770f99746df85a4ee243029c20f8036 (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
/*****************************************************************************
 * Copyright (c) 2015 CEA LIST and others.
 * 
 * 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:
 *   Nicolas FAUVERGUE (ALL4TEC) nicolas.fauvergue@all4tec.net - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.infra.nattable.utils;

import java.util.ListIterator;

import org.eclipse.emf.common.CommonPlugin;
import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.common.command.CompoundCommand;
import org.eclipse.emf.common.util.WrappedException;
import org.eclipse.papyrus.infra.emf.gmf.command.GMFtoEMFCommandWrapper;

/**
 * This allow to manage th execution of command if not already executed.
 */
public class ExtendedCompoundCommand extends CompoundCommand {

	public ExtendedCompoundCommand(String label){
	    super(label);
	  }
	
	/**
	 * @see org.eclipse.emf.common.command.CompoundCommand#execute()
	 *
	 */
	@Override
	public void execute() {
		for (ListIterator<Command> commands = commandList.listIterator(); commands.hasNext(); ) 
	    {
	      try
	      {
	        Command command = commands.next();
	        if(!(command instanceof GMFtoEMFCommandWrapper)){
	        	command.execute();
	        }else if(null == ((GMFtoEMFCommandWrapper)command).getGMFCommand().getCommandResult()){
	        	command.execute();
	        }
	      }
	      catch (RuntimeException exception)
	      {
	        // Skip over the command that threw the exception.
	        //
	        commands.previous();

	        try
	        {
	          // Iterate back over the executed commands to undo them.
	          //
	          while (commands.hasPrevious())
	          {
	            Command command = commands.previous();
	            if (command.canUndo())
	            {
	              command.undo();
	            }
	            else
	            {
	              break;
	            }
	          }
	        }
	        catch (RuntimeException nestedException)
	        {
	          CommonPlugin.INSTANCE.log
	            (new WrappedException
	              (CommonPlugin.INSTANCE.getString("_UI_IgnoreException_exception"), nestedException).fillInStackTrace());
	        }

	        throw exception;
	      }
	    }
	}
	
}

Back to the top