adding a taxon bulk editor and changes because the delete methods does not throw...
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / editor / definedterm / operation / DeleteTermBaseOperation.java
1 // $Id$
2 /**
3 * Copyright (C) 2009 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 package eu.etaxonomy.taxeditor.editor.definedterm.operation;
11
12 import org.eclipse.core.commands.ExecutionException;
13 import org.eclipse.core.commands.operations.IUndoContext;
14 import org.eclipse.core.runtime.IAdaptable;
15 import org.eclipse.core.runtime.IProgressMonitor;
16 import org.eclipse.core.runtime.IStatus;
17 import org.eclipse.core.runtime.Status;
18
19 import eu.etaxonomy.cdm.api.service.ITermService;
20 import eu.etaxonomy.cdm.api.service.IVocabularyService;
21 import eu.etaxonomy.cdm.api.service.exception.DataChangeNoRollbackException;
22 import eu.etaxonomy.cdm.model.common.DefinedTerm;
23 import eu.etaxonomy.cdm.model.common.DefinedTermBase;
24 import eu.etaxonomy.cdm.model.common.TermBase;
25 import eu.etaxonomy.cdm.model.common.TermVocabulary;
26 import eu.etaxonomy.taxeditor.editor.definedterm.DefinedTermEditor;
27 import eu.etaxonomy.taxeditor.editor.definedterm.input.TermEditorInput;
28 import eu.etaxonomy.taxeditor.operation.AbstractPostTaxonOperation;
29 import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
30 import eu.etaxonomy.taxeditor.store.CdmStore;
31 import eu.etaxonomy.taxeditor.store.StoreUtil;
32
33 /**
34 * @author l.morris
35 * @date 22 Dec 2011
36 *
37 */
38 public class DeleteTermBaseOperation extends AbstractPostTaxonOperation {
39
40 private TermEditorInput definedEditorInput;
41 private TermBase termBase;
42 private DefinedTermEditor definedTermEditor;
43 /**
44 * @param label
45 * @param undoContext
46 * @param postOperationEnabled
47 */
48 public DeleteTermBaseOperation(String label,
49 IUndoContext undoContext,
50 TermBase termBase,
51 TermEditorInput definedEditorInput,
52 IPostOperationEnabled postOperationEnabled) {
53 super(label, undoContext, postOperationEnabled);
54 this.termBase = termBase;
55 this.definedEditorInput = definedEditorInput;
56 }
57
58 /* (non-Javadoc)
59 * @see org.eclipse.core.commands.operations.AbstractOperation#execute(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
60 */
61 @Override
62 public IStatus execute(IProgressMonitor monitor, IAdaptable info)
63 throws ExecutionException {
64
65
66
67 if (termBase instanceof TermVocabulary) {
68 if (((TermVocabulary)termBase).getCreatedBy() == null) {
69 IStatus status = new Status(IStatus.CANCEL, StoreUtil.getPluginId(), "This is a CDM system vocabulary");
70 StoreUtil.warningDialog("Cannot delete vocabulary", termBase, status);
71 return status;
72 }
73
74 if (!((TermVocabulary)termBase).getTerms().isEmpty()) {
75 IStatus status = new Status(IStatus.CANCEL, StoreUtil.getPluginId(), "Delete all terms from this vocaulary before deleting the vocabulary.");
76 StoreUtil.warningDialog("Vocabulary not empty", termBase, status);
77 return status;
78 }
79
80 definedEditorInput.getVocabularies().remove((TermVocabulary)termBase);
81
82 String result = CdmStore.getService(IVocabularyService.class).delete((TermVocabulary)termBase);
83
84
85 } else if (termBase instanceof DefinedTermBase) {
86
87
88 DefinedTermBase definedTermBase = (DefinedTermBase) termBase;
89
90 if (((DefinedTermBase)termBase).getCreatedBy() == null) {
91 IStatus status = new Status(IStatus.CANCEL, StoreUtil.getPluginId(), "This is a CDM system defined term");
92 StoreUtil.warningDialog("Cannot delete defined term", termBase, status);
93 return status;
94 }
95 if(!definedTermBase.getIncludes().isEmpty()){
96 IStatus status = new Status(IStatus.CANCEL, StoreUtil.getPluginId(), "This term includes other terms. Please delete the included terms before deleting this term.");
97 StoreUtil.warningDialog("Term has included terms", termBase, status);
98 return status;
99 }
100
101
102 DefinedTermBase partOf = definedTermBase.getPartOf();
103 if(partOf != null){
104 partOf.removeIncludes(definedTermBase);
105 }
106
107 DefinedTermBase kindOf = definedTermBase.getKindOf();
108 if(kindOf != null){
109 definedTermBase.removeGeneralization(kindOf);
110 }
111
112 TermVocabulary vocabulary = definedTermBase.getVocabulary();
113 if(vocabulary != null){
114 vocabulary.removeTerm(definedTermBase);
115 }
116
117 String result = CdmStore.getService(ITermService.class).delete((DefinedTermBase)termBase);
118
119 }
120
121 return postExecute(termBase);
122 }
123
124 /* (non-Javadoc)
125 * @see org.eclipse.core.commands.operations.AbstractOperation#redo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
126 */
127 @Override
128 public IStatus redo(IProgressMonitor monitor, IAdaptable info)
129 throws ExecutionException {
130 // TODO Auto-generated method stub
131 return null;
132 }
133
134 /* (non-Javadoc)
135 * @see org.eclipse.core.commands.operations.AbstractOperation#undo(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.core.runtime.IAdaptable)
136 */
137 @Override
138 public IStatus undo(IProgressMonitor monitor, IAdaptable info)
139 throws ExecutionException {
140 // TODO Auto-generated method stub
141 return null;
142 }
143
144 }