Merge branch 'develop' into remoting-4.0
[taxeditor.git] / eu.etaxonomy.taxeditor.navigation / src / main / java / eu / etaxonomy / taxeditor / navigation / navigator / operation / ChangeAcceptedTaxonToSynonymOperation.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.navigation.navigator.operation;
12
13 import org.eclipse.core.commands.ExecutionException;
14 import org.eclipse.core.commands.operations.IUndoContext;
15 import org.eclipse.core.runtime.IAdaptable;
16 import org.eclipse.core.runtime.IProgressMonitor;
17 import org.eclipse.core.runtime.IStatus;
18 import org.eclipse.core.runtime.Status;
19 import org.eclipse.jface.dialogs.MessageDialog;
20
21 import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
22 import eu.etaxonomy.cdm.api.service.DeleteResult;
23 import eu.etaxonomy.cdm.api.service.ITaxonNodeService;
24 import eu.etaxonomy.cdm.api.service.UpdateResult;
25 import eu.etaxonomy.cdm.api.service.config.TaxonDeletionConfigurator;
26 import eu.etaxonomy.cdm.hibernate.HibernateProxyHelper;
27 import eu.etaxonomy.cdm.model.taxon.ITaxonTreeNode;
28 import eu.etaxonomy.cdm.model.taxon.Taxon;
29 import eu.etaxonomy.cdm.model.taxon.TaxonNode;
30 import eu.etaxonomy.taxeditor.model.MessagingUtils;
31 import eu.etaxonomy.taxeditor.navigation.internal.TaxeditorNavigationPlugin;
32 import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
33 import eu.etaxonomy.taxeditor.session.ICdmEntitySessionEnabled;
34 import eu.etaxonomy.taxeditor.store.CdmStore;
35
36 /**
37 * <p>ChangeAcceptedTaxonToSynonymOperation class.</p>
38 *
39 * @author n.hoffmann
40 * @created Jan 4, 2010
41 * @version 1.0
42 */
43 public class ChangeAcceptedTaxonToSynonymOperation extends
44 DeleteOperation {
45
46 private final TaxonNode newAcceptedTaxonNode;
47 private final ICdmEntitySessionEnabled cdmEntitySessionEnabled;
48
49
50 //private TaxonNode oldTaxonNode;
51
52 /**
53 * <p>Constructor for ChangeAcceptedTaxonToSynonymOperation.</p>
54 *
55 * @param label a {@link java.lang.String} object.
56 * @param undoContext a {@link org.eclipse.core.commands.operations.IUndoContext} object.
57 * @param postOperationEnabled a {@link eu.etaxonomy.taxeditor.operation.IPostOperationEnabled} object.
58 * @param oldTaxonNode a {@link eu.etaxonomy.cdm.model.taxon.TaxonNode} object.
59 * @param newAcceptedTaxonNode a {@link eu.etaxonomy.cdm.model.taxon.TaxonNode} object.
60 * @param conversationEnabled a {@link eu.etaxonomy.cdm.api.conversation.IConversationEnabled} object.
61 */
62 public ChangeAcceptedTaxonToSynonymOperation(String label,
63 IUndoContext undoContext,
64 ITaxonTreeNode oldTaxonNode,
65 TaxonNode newAcceptedTaxonNode,
66 IPostOperationEnabled postOperationEnabled,
67 IConversationEnabled conversationEnabled,
68 ICdmEntitySessionEnabled cdmEntitySessionEnabled) {
69 super(label, undoContext, oldTaxonNode, new TaxonDeletionConfigurator(),postOperationEnabled, conversationEnabled, cdmEntitySessionEnabled);
70 this.newAcceptedTaxonNode = newAcceptedTaxonNode;
71 this.cdmEntitySessionEnabled = cdmEntitySessionEnabled;
72 }
73
74
75 /* (non-Javadoc)
76 * @see org.eclipse.core.commands.operations.AbstractOperation#execute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
77 */
78 /** {@inheritDoc} */
79 @Override
80 public IStatus execute(IProgressMonitor monitor, IAdaptable info)
81 throws ExecutionException {
82
83 monitor.worked(20);
84 bind();
85
86 Taxon oldTaxon = (Taxon) HibernateProxyHelper.deproxy(((TaxonNode) taxonNode).getTaxon());
87 try {
88
89 UpdateResult result = CdmStore.getService(ITaxonNodeService.class).makeTaxonNodeASynonymOfAnotherTaxonNode(taxonNode.getUuid(), newAcceptedTaxonNode.getUuid(), null, null, null);
90
91 if (!result.getExceptions().isEmpty() && result.isOk()){
92 String separator = ", ";
93 String exceptionString = "";
94 for (Exception exception : result.getExceptions()) {
95 exceptionString += exception.getLocalizedMessage()+separator;
96 }
97
98 MessagingUtils.informationDialog("Synonym created but taxon is not deleted.", exceptionString);
99 } else if (result.isAbort() || result.isError()){
100 MessagingUtils.errorDialog("Synonym could not created", null, result.toString(), TaxeditorNavigationPlugin.PLUGIN_ID, null, true);
101 }
102 } catch (IllegalArgumentException e) {
103 MessagingUtils.errorDialog("Operation failed", this, e.getMessage(), TaxeditorNavigationPlugin.PLUGIN_ID, e, false);
104 return Status.CANCEL_STATUS;
105 }
106
107 monitor.worked(40);
108
109 return postExecute(oldTaxon);
110 }
111
112 /* (non-Javadoc)
113 * @see org.eclipse.core.commands.operations.AbstractOperation#redo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
114 */
115 /** {@inheritDoc} */
116 @Override
117 public IStatus redo(IProgressMonitor monitor, IAdaptable info)
118 throws ExecutionException {
119 // TODO Auto-generated method stub
120 return null;
121 }
122
123 /* (non-Javadoc)
124 * @see org.eclipse.core.commands.operations.AbstractOperation#undo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
125 */
126 /** {@inheritDoc} */
127 @Override
128 public IStatus undo(IProgressMonitor monitor, IAdaptable info)
129 throws ExecutionException {
130 // TODO Auto-generated method stub
131 return null;
132 }
133 }