1 | /* |
2 | * Copyright 2007, IPD, SDQ, University of Karlsruhe |
3 | */ |
4 | package de.uka.ipd.sdq.pcm.gmf.repository.edit.commands; |
5 | |
6 | import org.eclipse.core.commands.ExecutionException; |
7 | import org.eclipse.core.runtime.IAdaptable; |
8 | import org.eclipse.core.runtime.IProgressMonitor; |
9 | import org.eclipse.emf.ecore.EObject; |
10 | import org.eclipse.gmf.runtime.common.core.command.CommandResult; |
11 | import org.eclipse.gmf.runtime.common.core.command.ICommand; |
12 | import org.eclipse.gmf.runtime.emf.type.core.IElementType; |
13 | import org.eclipse.gmf.runtime.emf.type.core.commands.EditElementCommand; |
14 | import org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest; |
15 | import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest; |
16 | import org.eclipse.gmf.runtime.emf.type.core.requests.CreateRelationshipRequest; |
17 | |
18 | import de.uka.ipd.sdq.pcm.core.entity.InterfaceProvidingEntity; |
19 | import de.uka.ipd.sdq.pcm.gmf.repository.edit.policies.PalladioComponentModelBaseItemSemanticEditPolicy; |
20 | import de.uka.ipd.sdq.pcm.repository.InfrastructureInterface; |
21 | import de.uka.ipd.sdq.pcm.repository.InfrastructureProvidedRole; |
22 | import de.uka.ipd.sdq.pcm.repository.RepositoryFactory; |
23 | |
24 | /** |
25 | * @generated |
26 | */ |
27 | public class InfrastructureProvidedRoleCreateCommand extends EditElementCommand { |
28 | |
29 | /** |
30 | * @generated |
31 | */ |
32 | private final EObject source; |
33 | |
34 | /** |
35 | * @generated |
36 | */ |
37 | private final EObject target; |
38 | |
39 | /** |
40 | * @generated |
41 | */ |
42 | public InfrastructureProvidedRoleCreateCommand( |
43 | CreateRelationshipRequest request, EObject source, EObject target) { |
44 | super(request.getLabel(), null, request); |
45 | this.source = source; |
46 | this.target = target; |
47 | } |
48 | |
49 | /** |
50 | * @generated |
51 | */ |
52 | public boolean canExecute() { |
53 | if (source == null && target == null) { |
54 | return false; |
55 | } |
56 | if (source != null |
57 | && false == source instanceof InterfaceProvidingEntity) { |
58 | return false; |
59 | } |
60 | if (target != null |
61 | && false == target instanceof InfrastructureInterface) { |
62 | return false; |
63 | } |
64 | if (getSource() == null) { |
65 | return true; // link creation is in progress; source is not defined yet |
66 | } |
67 | // target may be null here but it's possible to check constraint |
68 | return PalladioComponentModelBaseItemSemanticEditPolicy.LinkConstraints |
69 | .canCreateInfrastructureProvidedRole_4111(getSource(), |
70 | getTarget()); |
71 | } |
72 | |
73 | /** |
74 | * @generated |
75 | */ |
76 | protected CommandResult doExecuteWithResult(IProgressMonitor monitor, |
77 | IAdaptable info) throws ExecutionException { |
78 | if (!canExecute()) { |
79 | throw new ExecutionException( |
80 | "Invalid arguments in create link command"); //$NON-NLS-1$ |
81 | } |
82 | |
83 | InfrastructureProvidedRole newElement = RepositoryFactory.eINSTANCE |
84 | .createInfrastructureProvidedRole(); |
85 | getSource().getProvidedRoles_InterfaceProvidingEntity().add(newElement); |
86 | newElement |
87 | .setProvidedInterface__InfrastructureProvidedRole(getTarget()); |
88 | doConfigure(newElement, monitor, info); |
89 | ((CreateElementRequest) getRequest()).setNewElement(newElement); |
90 | return CommandResult.newOKCommandResult(newElement); |
91 | |
92 | } |
93 | |
94 | /** |
95 | * @generated |
96 | */ |
97 | protected void doConfigure(InfrastructureProvidedRole newElement, |
98 | IProgressMonitor monitor, IAdaptable info) |
99 | throws ExecutionException { |
100 | IElementType elementType = ((CreateElementRequest) getRequest()) |
101 | .getElementType(); |
102 | ConfigureRequest configureRequest = new ConfigureRequest( |
103 | getEditingDomain(), newElement, elementType); |
104 | configureRequest.setClientContext(((CreateElementRequest) getRequest()) |
105 | .getClientContext()); |
106 | configureRequest.addParameters(getRequest().getParameters()); |
107 | configureRequest.setParameter(CreateRelationshipRequest.SOURCE, |
108 | getSource()); |
109 | configureRequest.setParameter(CreateRelationshipRequest.TARGET, |
110 | getTarget()); |
111 | ICommand configureCommand = elementType |
112 | .getEditCommand(configureRequest); |
113 | if (configureCommand != null && configureCommand.canExecute()) { |
114 | configureCommand.execute(monitor, info); |
115 | } |
116 | } |
117 | |
118 | /** |
119 | * @generated |
120 | */ |
121 | protected void setElementToEdit(EObject element) { |
122 | throw new UnsupportedOperationException(); |
123 | } |
124 | |
125 | /** |
126 | * @generated |
127 | */ |
128 | protected InterfaceProvidingEntity getSource() { |
129 | return (InterfaceProvidingEntity) source; |
130 | } |
131 | |
132 | /** |
133 | * @generated |
134 | */ |
135 | protected InfrastructureInterface getTarget() { |
136 | return (InfrastructureInterface) target; |
137 | } |
138 | |
139 | } |