c62759b72b3a89279d5009c594f00ea81c775d3a
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / name / operation / ChangeSynonymToAcceptedTaxonOperation.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.taxeditor.editor.name.operation;
11
12 import java.util.Set;
13
14 import org.eclipse.core.commands.ExecutionException;
15 import org.eclipse.core.commands.operations.IUndoContext;
16 import org.eclipse.core.runtime.IAdaptable;
17 import org.eclipse.core.runtime.IProgressMonitor;
18 import org.eclipse.core.runtime.IStatus;
19
20 import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
21 import eu.etaxonomy.cdm.api.service.ITaxonService;
22 import eu.etaxonomy.cdm.api.service.exception.HomotypicalGroupChangeException;
23 import eu.etaxonomy.cdm.model.name.TaxonNameBase;
24 import eu.etaxonomy.cdm.model.taxon.ITaxonTreeNode;
25 import eu.etaxonomy.cdm.model.taxon.Synonym;
26 import eu.etaxonomy.cdm.model.taxon.Taxon;
27 import eu.etaxonomy.cdm.model.taxon.TaxonNode;
28 import eu.etaxonomy.taxeditor.model.MessagingUtils;
29 import eu.etaxonomy.taxeditor.operation.AbstractPersistentPostOperation;
30 import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
31 import eu.etaxonomy.taxeditor.session.ICdmEntitySessionEnabled;
32 import eu.etaxonomy.taxeditor.store.CdmStore;
33
34 /**
35 * Change the taxonomic parent of a given taxon.
36 *
37 * @author n.hoffmann
38 * @created 16.01.2009
39 * @version 1.0
40 */
41 public class ChangeSynonymToAcceptedTaxonOperation extends AbstractPersistentPostOperation {
42
43 private Taxon newTaxon;
44 private final Synonym synonym;
45 private final ITaxonTreeNode parentNode;
46
47 private TaxonNode newNode;
48
49 //private final Set<TaxonNameBase> namesInHomotypicGroup;
50
51 /**
52 * <p>Constructor for ChangeSynonymToAcceptedTaxonOperation.</p>
53 *
54 * @param label a {@link java.lang.String} object.
55 * @param undoContext a {@link org.eclipse.core.commands.operations.IUndoContext} object.
56 * @param taxon a {@link eu.etaxonomy.cdm.model.taxon.Taxon} object.
57 * @param parentNode a {@link eu.etaxonomy.cdm.model.taxon.ITaxonTreeNode} object.
58 * @param synonym a {@link eu.etaxonomy.cdm.model.taxon.Synonym} object.
59 * @param synonymsInHomotypicalGroup an array of {@link eu.etaxonomy.cdm.model.taxon.Synonym} objects.
60 * @param postOperationEnabled a {@link eu.etaxonomy.taxeditor.operation.IPostOperationEnabled} object.
61 * @param conversationEnabled a {@link eu.etaxonomy.cdm.api.conversation.IConversationEnabled} object.
62 */
63 public ChangeSynonymToAcceptedTaxonOperation(String label,
64 IUndoContext undoContext,
65 Taxon taxon,
66 ITaxonTreeNode parentNode,
67 Synonym synonym,
68 Set<TaxonNameBase> namesInHomotypicalGroup,
69 IPostOperationEnabled postOperationEnabled,
70 IConversationEnabled conversationEnabled,
71 ICdmEntitySessionEnabled cdmEntitySessionEnabled) {
72 super(label, undoContext, postOperationEnabled, conversationEnabled, cdmEntitySessionEnabled);
73
74 this.element = taxon;
75 this.parentNode = parentNode;
76 this.synonym = synonym;
77 //this.namesInHomotypicGroup = namesInHomotypicalGroup;
78 }
79
80 /* (non-Javadoc)
81 * @see org.eclipse.core.commands.operations.AbstractOperation#execute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
82 */
83 /** {@inheritDoc} */
84 @Override
85 public IStatus execute(IProgressMonitor monitor, IAdaptable info)
86 throws ExecutionException {
87
88 try {
89 newNode = (TaxonNode) CdmStore.getService(ITaxonService.class).changeSynonymToAcceptedTaxon(synonym.getUuid(),
90 element.getUuid(),
91 parentNode.getUuid(),
92 true,
93 true,
94 null,
95 null).getCdmEntity();
96 } catch (HomotypicalGroupChangeException e) {
97 MessagingUtils.warningDialog("Operation may lead to inconsistent data", getClass(), e.getMessage());
98 return postExecute(null);
99 }
100 monitor.worked(20);
101 //newTaxon = (Taxon) CdmStore.getService(ITaxonService.class).merge(newTaxon);
102 //element.removeSynonym(synonym);
103
104
105 /*if(namesInHomotypicGroup != null){
106 Taxon taxon = newNode.getTaxon();
107 for (TaxonNameBase synonymName : namesInHomotypicGroup){
108 taxon.addHomotypicSynonymName(synonymName, null, null);
109
110 }
111 }*/
112 //newNode = CdmStore.getService(ITaxonNodeService.class).merge(newNode);
113
114 monitor.worked(40);
115
116 return postExecute(newNode);
117 }
118
119 /* (non-Javadoc)
120 * @see org.eclipse.core.commands.operations.AbstractOperation#redo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
121 */
122 /** {@inheritDoc} */
123 @Override
124 public IStatus redo(IProgressMonitor monitor, IAdaptable info)
125 throws ExecutionException {
126 return execute(monitor, info);
127 }
128
129 /* (non-Javadoc)
130 * @see org.eclipse.core.commands.operations.AbstractOperation#undo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
131 */
132 /** {@inheritDoc} */
133 @Override
134 public IStatus undo(IProgressMonitor monitor, IAdaptable info)
135 throws ExecutionException {
136
137 // TODO implement - biggest problem is that any window open for new taxon must be closed first
138 MessagingUtils.warn(this.getClass(), "Not yet implemented");
139
140 return postExecute(element);
141 }
142
143 }