fix #5692: adapt delete algorithm to annotatedLineEditor mechanisms
[taxeditor.git] / eu.etaxonomy.taxeditor.bulkeditor / src / main / java / eu / etaxonomy / taxeditor / bulkeditor / handler / DeleteHandler.java
index f42174ba757a1968b76a5bed6f369d32a8315885..b9f3346775afad83bb3f5399721c1b632217c2a7 100644 (file)
 package eu.etaxonomy.taxeditor.bulkeditor.handler;
 
 import java.util.ArrayList;
+import java.util.Iterator;
 import java.util.List;
 
 import org.eclipse.core.commands.AbstractHandler;
 import org.eclipse.core.commands.ExecutionEvent;
 import org.eclipse.core.commands.ExecutionException;
+import org.eclipse.core.commands.common.NotDefinedException;
+import org.eclipse.core.runtime.IStatus;
 import org.eclipse.core.runtime.Status;
 import org.eclipse.jface.dialogs.MessageDialog;
+import org.eclipse.jface.text.TextSelection;
 import org.eclipse.jface.viewers.ISelection;
 import org.eclipse.jface.viewers.IStructuredSelection;
 import org.eclipse.ui.IEditorInput;
@@ -30,14 +34,15 @@ import eu.etaxonomy.cdm.api.service.DeleteResult;
 import eu.etaxonomy.cdm.api.service.IAgentService;
 import eu.etaxonomy.cdm.api.service.IGroupService;
 import eu.etaxonomy.cdm.api.service.IMediaService;
-import eu.etaxonomy.cdm.api.service.INameService;
 import eu.etaxonomy.cdm.api.service.IOccurrenceService;
 import eu.etaxonomy.cdm.api.service.IReferenceService;
-import eu.etaxonomy.cdm.api.service.ITaxonService;
 import eu.etaxonomy.cdm.api.service.IUserService;
+import eu.etaxonomy.cdm.api.service.config.DeleteConfiguratorBase;
+import eu.etaxonomy.cdm.api.service.config.MediaDeletionConfigurator;
 import eu.etaxonomy.cdm.api.service.config.NameDeletionConfigurator;
 import eu.etaxonomy.cdm.api.service.config.SynonymDeletionConfigurator;
 import eu.etaxonomy.cdm.api.service.config.TaxonDeletionConfigurator;
+import eu.etaxonomy.cdm.hibernate.HibernateProxyHelper;
 import eu.etaxonomy.cdm.model.agent.TeamOrPersonBase;
 import eu.etaxonomy.cdm.model.common.Group;
 import eu.etaxonomy.cdm.model.common.User;
@@ -52,9 +57,17 @@ import eu.etaxonomy.taxeditor.annotatedlineeditor.IEntityPersistenceService;
 import eu.etaxonomy.taxeditor.annotatedlineeditor.LineAnnotation;
 import eu.etaxonomy.taxeditor.annotatedlineeditor.LineAnnotationModel;
 import eu.etaxonomy.taxeditor.bulkeditor.BulkEditor;
+import eu.etaxonomy.taxeditor.bulkeditor.BulkEditorQuery;
+import eu.etaxonomy.taxeditor.bulkeditor.IBulkEditorConstants;
 import eu.etaxonomy.taxeditor.bulkeditor.internal.TaxeditorBulkeditorPlugin;
+import eu.etaxonomy.taxeditor.bulkeditor.operation.DeleteTaxonBaseOperation;
+import eu.etaxonomy.taxeditor.bulkeditor.operation.DeleteTaxonNameOperation;
+import eu.etaxonomy.taxeditor.model.AbstractUtility;
 import eu.etaxonomy.taxeditor.model.DeleteResultMessagingUtils;
 import eu.etaxonomy.taxeditor.model.MessagingUtils;
+import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
+import eu.etaxonomy.taxeditor.operation.CdmDeleteOperation;
+import eu.etaxonomy.taxeditor.operation.RemotingCdmHandler;
 import eu.etaxonomy.taxeditor.store.CdmStore;
 import eu.etaxonomy.taxeditor.ui.dialog.deleteConfigurator.DeleteConfiguratorDialog;
 
@@ -66,14 +79,16 @@ import eu.etaxonomy.taxeditor.ui.dialog.deleteConfigurator.DeleteConfiguratorDia
  */
 public class DeleteHandler extends AbstractHandler {
 
+       
+       
        /* (non-Javadoc)
         * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
         */
        @Override
        public Object execute(ExecutionEvent event) throws ExecutionException {
 
-               ISelection selection = HandlerUtil.getCurrentSelection(event);
-
+               
+               TextSelection selection = (TextSelection) HandlerUtil.getCurrentSelection(event);
                IEditorPart editor = HandlerUtil.getActiveEditor(event);
 
                IEditorInput input = editor.getEditorInput();
@@ -89,8 +104,7 @@ public class DeleteHandler extends AbstractHandler {
                        IStructuredSelection structuredSelection = (IStructuredSelection) selection;
 
                        IEntityPersistenceService persistenceService = (IEntityPersistenceService) input;
-
-
+                       
                        for(Object object : structuredSelection.toList()){
 
                                LineAnnotation annotation = (LineAnnotation) model.getAnnotation(object);
@@ -104,82 +118,247 @@ public class DeleteHandler extends AbstractHandler {
                                        if (object instanceof SpecimenOrObservationBase){
                                                IOccurrenceService service = controller.getOccurrenceService();
                                                if (object != null){
-                                                       result = service.delete(((SpecimenOrObservationBase) object).getUuid());
+                                                       result = service.isDeletable(((SpecimenOrObservationBase) object), null);
                                                        errorMessage = "The specimen or observation ";
+                                                       if (model != null) {
+                                                               Iterator iter = model.getAnnotationIterator(selection.getOffset(), selection.getLength(), true, true);
+                                                               while (iter.hasNext()) {
+                                                                       Object next = iter.next();
+                                                                       if (next instanceof LineAnnotation) {
+                                                                               if (result.isOk()){
+                                                                                       ((LineAnnotation)next).markAsDeleted(null);
+                                                                               }
+                                                                               
+                                                                       }
+                                                               }
+                                                       }
                                                }
                                        } else if (object instanceof Reference){
                                                IReferenceService service = controller.getReferenceService();
                                                if (object != null){
-                                                       result = service.delete(((Reference) object).getUuid());
+                                                       result = service.isDeletable((Reference)object, null);
                                                        errorMessage = "The reference ";
                                                }
+                                               if (model != null) {
+                                                       Iterator iter = model.getAnnotationIterator(selection.getOffset(), selection.getLength(), true, true);
+                                                       while (iter.hasNext()) {
+                                                               Object next = iter.next();
+                                                               if (next instanceof LineAnnotation) {
+                                                                       if (result.isOk()){
+                                                                               ((LineAnnotation)next).markAsDeleted(null);
+                                                                       }
+                                                                       
+                                                               }
+                                                       }
+                                               }
 
                                        } else if (object instanceof Group){
-                                               IGroupService service = controller.getGroupService();
-                                               if (object != null){
-                                                       result = service.delete(((Group) object).getUuid());
-                                                       errorMessage = "The group ";
+                                               if (model != null) {
+                                                       Iterator iter = model.getAnnotationIterator(selection.getOffset(), selection.getLength(), true, true);
+                                                       while (iter.hasNext()) {
+                                                               Object next = iter.next();
+                                                               if (next instanceof LineAnnotation) {
+                                                                       if (result.isOk()){
+                                                                               ((LineAnnotation)next).markAsDeleted(null);
+                                                                       }
+                                                                       
+                                                               }
+                                                       }
                                                }
+                                               
+//                                             IGroupService service = controller.getGroupService();
+//                                             if (object != null){
+//                                                     result = service.delete(((Group) object).getUuid());
+//                                                     errorMessage = "The group ";
+//                                             }
                                        }else if (object instanceof User){
-                                               IUserService service = controller.getUserService();
-                                               if (object != null){
-                                                       result = service.delete(((User) object).getUuid());
-                                                       errorMessage = "The user ";
+                                               if (model != null) {
+                                                       Iterator iter = model.getAnnotationIterator(selection.getOffset(), selection.getLength(), true, true);
+                                                       while (iter.hasNext()) {
+                                                               Object next = iter.next();
+                                                               if (next instanceof LineAnnotation) {
+                                                                       if (result.isOk()){
+                                                                               ((LineAnnotation)next).markAsDeleted(null);
+                                                                       }
+                                                                       
+                                                               }
+                                                       }
                                                }
+                                               
+//                                             IUserService service = controller.getUserService();
+//                                             if (object != null){
+//                                                     result = service.delete(((User) object).getUuid());
+//                                                     errorMessage = "The user ";
+//                                             }
                                        } else if (object instanceof TaxonNameBase){
-                                               INameService service = controller.getNameService();
+                                               TaxonNameBase name = HibernateProxyHelper.deproxy(object, TaxonNameBase.class);
+                                               
+                                               
                                                if (object != null){
                                                        NameDeletionConfigurator config = new NameDeletionConfigurator();
 
-                                                       DeleteConfiguratorDialog dialog = new DeleteConfiguratorDialog(config, HandlerUtil.getActiveShell(event), "Confirm Deletion",  null,  "Do you really want to delete the name?", MessageDialog.WARNING, new String[] { "Delete", "Skip" }, 0);
+                                                       DeleteConfiguratorDialog dialog = new DeleteConfiguratorDialog(config, HandlerUtil.getActiveShell(event), "Confirm Deletion",  null,  "Do you really want to delete the name?\nThis operation is irreversible!", MessageDialog.WARNING, new String[] { "Delete", "Skip" }, 0);
                                                        int result_dialog= dialog.open();
                                                        if (result_dialog != Status.OK){
                                                                return null;
                                                        }
-                                                       result = service.delete(((TaxonNameBase) object).getUuid(), config);
+                                                       
+                                                       //operation = new DeleteTaxonNameOperation(commandName,((BulkEditor) editor).getUndoContext() , name, config, (BulkEditor)editor);
                                                        errorMessage = "The name ";
+                                                       
+                                                       if (model != null) {
+                                                               Iterator iter = model.getAnnotationIterator(selection.getOffset(), selection.getLength(), true, true);
+                                                               while (iter.hasNext()) {
+                                                                       Object next = iter.next();
+                                                                       if (next instanceof LineAnnotation) {
+                                                                               result = controller.getNameService().isDeletable(name, config);
+                                                                               if (result.isOk()){
+                                                                                       ((LineAnnotation)next).markAsDeleted(config);
+                                                                               }
+                                                                               
+                                                                       }
+                                                               }
+                                                       }
                                                }
                                        } else if (object instanceof TaxonBase){
-                                               ITaxonService service = controller.getTaxonService();
-                                               if (object != null){
-                                                       if (object instanceof Taxon){
-                                                           TaxonDeletionConfigurator config = new TaxonDeletionConfigurator();
-                                                               config.setDeleteInAllClassifications(true);
-                                                               DeleteConfiguratorDialog dialog;
-                                                               if (((Taxon)object).getTaxonNodes().isEmpty()){
-                                                                   dialog = new DeleteConfiguratorDialog(config, HandlerUtil.getActiveShell(event), "Confirm Deletion",  null,  "Do you really want to delete the taxon?", MessageDialog.WARNING, new String[] { "Delete", "Skip" }, 0);
-                                                                   int result_dialog= dialog.open();
-                                       if (result_dialog != Status.OK){
-                                           return null;
-                                       }
-                                       result = service.deleteTaxon(((TaxonBase) object).getUuid(), config, null);
-                                       errorMessage = "The taxon ";
-                                                               } else{
-                                                                   MessagingUtils.messageDialog("Delete not possible", getClass(), "The taxon can not be deleted in bulk editor. It is used in a classification.", null);
-                                                                   return null;
+                                               
+                                               // synonym
+                                               if(object instanceof Synonym){
+                                                       Synonym synonym = HibernateProxyHelper.deproxy(object, Synonym.class);
+                                                       SynonymDeletionConfigurator config = new SynonymDeletionConfigurator();
+                                                       errorMessage = "The synonym ";
+                                                       DeleteConfiguratorDialog dialog = new DeleteConfiguratorDialog(config, HandlerUtil.getActiveShell(event), "Confirm Deletion",  null,  "Do you really want to delete the synonym?", MessageDialog.WARNING, new String[] { "Delete", "Skip" }, 0);
+                            int result_dialog= dialog.open();
+                            if (result_dialog != Status.OK){
+                                 return null;
+                            }
+                                                       //operation = new DeleteTaxonBaseOperation(commandName,((BulkEditor) editor).getUndoContext() , synonym, config, (BulkEditor)editor);
+                                                       if (model != null) {
+                                                               Iterator iter = model.getAnnotationIterator(selection.getOffset(), selection.getLength(), true, true);
+                                                               while (iter.hasNext()) {
+                                                                       Object next = iter.next();
+                                                                       if (next instanceof LineAnnotation) {
+                                                                               result = controller.getTaxonService().isDeletable(synonym, config);
+                                                                               if (result.isOk()){
+                                                                                       ((LineAnnotation)next).markAsDeleted(config);
+                                                                               }
+                                                                               
+                                                                       }
+                                                               }
+                                                       }
+                                               }
+                                               
+                                               else if(object instanceof Taxon ){
+                                                       Taxon  taxon = HibernateProxyHelper.deproxy(object, Taxon.class);
+                                                       if (((Taxon)object).getTaxonNodes().isEmpty()){
+                                                          
+                                errorMessage = "The taxon ";
+                                                       } else{
+                                                           MessagingUtils.messageDialog("Delete not possible", getClass(), "The taxon can not be deleted in bulk editor. It is used in a classification.", null);
+                                                           return null;
+                                                       }
+                                                       TaxonDeletionConfigurator config = new TaxonDeletionConfigurator();
+                                                       config.setDeleteInAllClassifications(true);
+                                                       DeleteConfiguratorDialog dialog;
+                                                   dialog = new DeleteConfiguratorDialog(config, HandlerUtil.getActiveShell(event), "Confirm Deletion",  null,  "Do you really want to delete the taxon?", MessageDialog.WARNING, new String[] { "Delete", "Skip" }, 0);
+                                                       int result_dialog= dialog.open();
+                            if (result_dialog != Status.OK){
+                                 return null;
+                            }
+                            //operation = new DeleteTaxonBaseOperation(commandName, ((BulkEditor) editor).getUndoContext(), taxon, config, (BulkEditor)editor);
+                            if (model != null) {
+                                                               Iterator iter = model.getAnnotationIterator(selection.getOffset(), selection.getLength(), true, true);
+                                                               while (iter.hasNext()) {
+                                                                       Object next = iter.next();
+                                                                       if (next instanceof LineAnnotation) {
+                                                                               result = controller.getTaxonService().isDeletable(taxon, config);
+                                                                               if (result.isOk()){
+                                                                                       ((LineAnnotation)next).markAsDeleted(config);
+                                                                               }
+                                                                               
+                                                                       }
                                                                }
-
-                                                       }else{
-                                                               SynonymDeletionConfigurator config = new SynonymDeletionConfigurator();
-                                                               DeleteConfiguratorDialog dialog = new DeleteConfiguratorDialog(config, HandlerUtil.getActiveShell(event), "Confirm Deletion",  null,  "Do you really want to delete the synonym?", MessageDialog.WARNING, new String[] { "Delete", "Skip" }, 0);
-                                int result_dialog= dialog.open();
-                                if (result_dialog != Status.OK){
-                                     return null;
-                                }
-                                                               result = service.deleteSynonym(((Synonym)object).getUuid(), config);
-                                                               errorMessage = "The synonym ";
                                                        }
                                                }
+                                                       
+                                               
+//                                             ITaxonService service = controller.getTaxonService();
+//                                             if (object != null){
+//                                                     if (object instanceof Taxon){
+//                                                         TaxonDeletionConfigurator config = new TaxonDeletionConfigurator();
+//                                                             config.setDeleteInAllClassifications(true);
+//                                                             DeleteConfiguratorDialog dialog;
+//                                                             if (((Taxon)object).getTaxonNodes().isEmpty()){
+//                                                                 dialog = new DeleteConfiguratorDialog(config, HandlerUtil.getActiveShell(event), "Confirm Deletion",  null,  "Do you really want to delete the taxon?", MessageDialog.WARNING, new String[] { "Delete", "Skip" }, 0);
+//                                                                 int result_dialog= dialog.open();
+//                                     if (result_dialog != Status.OK){
+//                                         return null;
+//                                     }
+//                                     result = service.deleteTaxon(((TaxonBase) object).getUuid(), config, null);
+//                                     errorMessage = "The taxon ";
+//                                                             } else{
+//                                                                 MessagingUtils.messageDialog("Delete not possible", getClass(), "The taxon can not be deleted in bulk editor. It is used in a classification.", null);
+//                                                                 return null;
+//                                                             }
+//
+//                                                     }else{
+//                                                             SynonymDeletionConfigurator config = new SynonymDeletionConfigurator();
+//                                                             DeleteConfiguratorDialog dialog = new DeleteConfiguratorDialog(config, HandlerUtil.getActiveShell(event), "Confirm Deletion",  null,  "Do you really want to delete the synonym?", MessageDialog.WARNING, new String[] { "Delete", "Skip" }, 0);
+//                                int result_dialog= dialog.open();
+//                                if (result_dialog != Status.OK){
+//                                     return null;
+//                                }
+//                                                             result = service.deleteSynonym(((Synonym)object).getUuid(), config);
+//                                                             errorMessage = "The synonym ";
+//                                                     }
+//                                             }
                                        } else if (object instanceof TeamOrPersonBase){
-                                               IAgentService service = controller.getAgentService();
+                                               
+                                                 if (model != null) {
+                                                               Iterator iter = model.getAnnotationIterator(selection.getOffset(), selection.getLength(), true, true);
+                                                               while (iter.hasNext()) {
+                                                                       Object next = iter.next();
+                                                                       if (next instanceof LineAnnotation) {
+                                                                               
+                                                                               result = controller.getAgentService().isDeletable((TeamOrPersonBase) object, null);
+                                                                               if (result.isOk()){
+                                                                                       ((LineAnnotation)next).markAsDeleted(null);
+                                                                               }
+                                                                               
+                                                                       }
+                                                               }
+                                                       }
+                                               //IAgentService service = controller.getAgentService();
                                                //TeamOrPersonBase teamOrPerson = (TeamOrPersonBase)service.load(((TeamOrPersonBase) object).getUuid());
-                                               result = service.delete(((TeamOrPersonBase)object).getUuid());
+                                       //result = service.delete(((TeamOrPersonBase)object).getUuid());
                                                errorMessage = "The team or person ";
                                        } else if (object instanceof Media){
+                                               MediaDeletionConfigurator config = new MediaDeletionConfigurator();
+                                               
+                                               DeleteConfiguratorDialog dialog;
+                                           dialog = new DeleteConfiguratorDialog(config, HandlerUtil.getActiveShell(event), "Confirm Deletion",  null,  "Do you really want to delete the media?", MessageDialog.WARNING, new String[] { "Delete", "Skip" }, 0);
+                                               int result_dialog= dialog.open();
+                        if (result_dialog != Status.OK){
+                             return null;
+                        }
                         IMediaService service = controller.getMediaService();
                         //TeamOrPersonBase teamOrPerson = (TeamOrPersonBase)service.load(((TeamOrPersonBase) object).getUuid());
-                        result = service.delete(((Media)object).getUuid(), null);
+                       
                         errorMessage = "The media ";
+                        
+                        if (model != null) {
+                                                       Iterator iter = model.getAnnotationIterator(selection.getOffset(), selection.getLength(), true, true);
+                                                       while (iter.hasNext()) {
+                                                               Object next = iter.next();
+                                                               if (next instanceof LineAnnotation) {
+                                                                        result = service.isDeletable(((Media)object), config);
+                                                                       if (result.isOk()){
+                                                                               ((LineAnnotation)next).markAsDeleted(null);
+                                                                       }
+                                                                       
+                                                               }
+                                                       }
+                                               }
                     }
 
                                } catch (Exception e){
@@ -199,15 +378,19 @@ public class DeleteHandler extends AbstractHandler {
                                                MessagingUtils.messageDialog("Delete not possible", getClass(), "The object could not be deleted. An exception occured.", null);
                                        }
                                }
+                               
+                               
                                if (result.isOk() ){
+                                       
                                        ((BulkEditor) editor).removeAnnotatedLine(annotation);
+                                                                       
                                        if(result.getUpdatedObjects().size() != 0 || !result.getExceptions().isEmpty()){
                                            List<String> messages = new ArrayList<String>();
                         int i = result.getExceptions().size();
                         for (Exception e:result.getExceptions()){
                             messages.add(e.getMessage());
                         }
-                                           errorMessage += "was deleted but related object(s) could not be deleted. ";
+                                           errorMessage += "can be deleted but related object(s) could not be deleted. ";
                                            //MessagingUtils.errorDialog("test", getClass(), "message", TaxeditorBulkeditorPlugin.PLUGIN_ID, result.getExceptions().iterator().next(),true);
                                            DeleteResultMessagingUtils.messageDialogWithDetails(result, errorMessage, TaxeditorBulkeditorPlugin.PLUGIN_ID);
                                        }
@@ -221,4 +404,5 @@ public class DeleteHandler extends AbstractHandler {
                return null;
        }
 
+       
 }