Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / view / CdmViewerContextMenu.java
index db59d464d01ba40ddfd6c14b3a10fdb4a4b783d1..13591957a9a668dfe9d63e7c16aae24fe1843f9f 100644 (file)
@@ -20,11 +20,18 @@ import org.eclipse.swt.widgets.MenuItem;
 import org.eclipse.ui.IWorkbenchWindow;
 import org.eclipse.ui.PlatformUI;
 import org.eclipse.ui.actions.CompoundContributionItem;
-import org.eclipse.ui.commands.ICommandService;
 import org.eclipse.ui.handlers.IHandlerService;
 
+import eu.etaxonomy.cdm.api.service.IOccurrenceService;
+import eu.etaxonomy.cdm.api.service.ITaxonService;
 import eu.etaxonomy.cdm.model.common.ICdmBase;
+import eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationBase;
+import eu.etaxonomy.cdm.model.taxon.Synonym;
+import eu.etaxonomy.cdm.model.taxon.Taxon;
+import eu.etaxonomy.cdm.persistence.dto.UuidAndTitleCache;
+import eu.etaxonomy.taxeditor.Messages;
 import eu.etaxonomy.taxeditor.model.MessagingUtils;
+import eu.etaxonomy.taxeditor.store.CdmStore;
 
 /**
  * Generic context menu for opening elements in the taxeditor.
@@ -42,8 +49,7 @@ public class CdmViewerContextMenu extends CompoundContributionItem {
                         final ISelection selection = window.getActivePage().getSelection();
                         if(selection instanceof IStructuredSelection){
                             Object firstElement = ((IStructuredSelection) selection).getFirstElement();
-                            Map<String, String> availableViewers = CdmViewerUtil.getAvailableViewers(firstElement);
-                            Map<Command, String> enabledCommands = getEnabledCommands(availableViewers);
+                            Map<Command, String> enabledCommands = CdmViewerUtil.getAvailableViewers(firstElement);
 
                             //check if only one or multiple viewers/commands are available
                             if(enabledCommands.size()==1){
@@ -52,12 +58,12 @@ public class CdmViewerContextMenu extends CompoundContributionItem {
                                 String viewerName = entry.getValue();
 
                                 MenuItem addItem = new MenuItem(menu, SWT.CASCADE);
-                                addItem.setText(String.format("Open (%s)", viewerName));
+                                addItem.setText(String.format(Messages.CdmViewerContextMenu_OPEN, viewerName));
                                 addItem.addSelectionListener(new CommandInvoker(command, firstElement)) ;
                             }
                             else if(enabledCommands.size()>1){
                                 MenuItem addItem = new MenuItem(menu, SWT.CASCADE);
-                                addItem.setText("Open in...");
+                                addItem.setText(Messages.CdmViewerContextMenu_OPEN_IN);
                                 Menu addMenu = new Menu(menu);
                                 addItem.setMenu(addMenu);
                                 for(Entry<Command, String> entry:enabledCommands.entrySet()){
@@ -77,22 +83,9 @@ public class CdmViewerContextMenu extends CompoundContributionItem {
         return contributionItems;
     }
 
-    private Map<Command, String> getEnabledCommands(Map<String, String> availableViewers) {
-        Map<Command, String> enabledCommands = new HashMap<Command, String>();
-        for(Entry<String, String> entry:availableViewers.entrySet()){
-            final String commandId = entry.getKey();
-            ICommandService commandService = (ICommandService)PlatformUI.getWorkbench().getService(ICommandService.class);
-            Command command = commandService.getCommand(commandId);
-            if(command.isEnabled()){
-                enabledCommands.put(command, entry.getValue());
-            }
-        }
-        return enabledCommands;
-    }
-
     private final class CommandInvoker extends SelectionAdapter {
         private final Command command;
-        private final Object selectedObject;
+        private Object selectedObject;
 
         private CommandInvoker(Command command, Object selectedObject) {
             this.command = command;
@@ -103,8 +96,19 @@ public class CdmViewerContextMenu extends CompoundContributionItem {
         public void widgetSelected(SelectionEvent e) {
             IHandlerService handlerService = (IHandlerService)PlatformUI.getWorkbench().getService(IHandlerService.class);
             Map<String, UUID> params = new HashMap<String, UUID>();
+            //for generic UuidAndTitleCache objects try to load the object
+            if (selectedObject instanceof UuidAndTitleCache){
+                UuidAndTitleCache uuidAndTitleCache = (UuidAndTitleCache)selectedObject;
+                Class type = uuidAndTitleCache.getType();
+                if(type == Taxon.class || type == Synonym.class){
+                    selectedObject = CdmStore.getService(ITaxonService.class).load(uuidAndTitleCache.getUuid());
+                }
+                else if(SpecimenOrObservationBase.class.isAssignableFrom(type)){
+                    selectedObject = CdmStore.getService(IOccurrenceService.class).load(uuidAndTitleCache.getUuid());
+                }
+            }
             if(selectedObject instanceof ICdmBase){
-                params.put(command.getId()+".uuid", ((ICdmBase) selectedObject).getUuid());
+                params.put(command.getId()+".uuid", ((ICdmBase) selectedObject).getUuid()); //$NON-NLS-1$
             }
             ParameterizedCommand parameterizedCommand = ParameterizedCommand.generateCommand(command, params);
             try {
@@ -115,9 +119,9 @@ public class CdmViewerContextMenu extends CompoundContributionItem {
                     handlerService.executeCommand(command.getId(), null);
                 }
             } catch (NotDefinedException nde) {
-                throw new RuntimeException("Could not find open command: " + command.getId());
+                throw new RuntimeException("Could not find open command: " + command.getId()); //$NON-NLS-1$
             } catch (Exception exception) {
-                MessagingUtils.error(getClass(), "An exception occured while trying execute "+command.getId(), exception);
+                MessagingUtils.error(getClass(), "An exception occured while trying execute "+command.getId(), exception); //$NON-NLS-1$
             }
             PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getSelection();
         }