Merge branch 'develop' into termSearch
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / view / CdmViewerUtil.java
1 /**
2 * Copyright (C) 2015 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 package eu.etaxonomy.taxeditor.view;
10
11 import java.util.HashMap;
12 import java.util.Map;
13
14 import org.eclipse.core.commands.Command;
15 import org.eclipse.core.runtime.IConfigurationElement;
16 import org.eclipse.core.runtime.IExtensionRegistry;
17 import org.eclipse.core.runtime.Platform;
18 import org.eclipse.jface.viewers.TreeNode;
19 import org.eclipse.ui.PlatformUI;
20 import org.eclipse.ui.commands.ICommandService;
21
22 import eu.etaxonomy.cdm.persistence.dto.UuidAndTitleCache;
23 import eu.etaxonomy.taxeditor.model.MessagingUtils;
24 import eu.etaxonomy.taxeditor.store.CdmStore;
25
26 /**
27 * Scans eu.etaxonomy.taxeditor.store.cdmViewer extension point.
28 * @author pplitzner
29 * @date Jul 7, 2015
30 *
31 */
32 public class CdmViewerUtil {
33
34 /**
35 * Returns a map of available commands to open the given input.
36 * Keys are the command IDs and values are their string representations.
37 *
38 * @param input
39 * the object which should be handled by the available commands
40 * @return a key-value map of available commands and their string
41 * representation
42 */
43 public static Map<Command, String> getAvailableViewers(Object input){
44 Map<Command, String> commandViewerNameMap = new HashMap<Command, String>();
45
46 if(input!=null){
47 //for generic UuidAndTitleCache objects try to load the object
48 if (input instanceof UuidAndTitleCache){
49 UuidAndTitleCache uuidAndTitleCache = (UuidAndTitleCache)input;
50 input = CdmStore.getCommonService().find(uuidAndTitleCache.getType(), uuidAndTitleCache.getUuid());
51 }
52 //for tree nodes get the value resp. the object of the node
53 else if (input instanceof TreeNode){
54 TreeNode treeNode = (TreeNode)input;
55 input = treeNode.getValue();
56 }
57 if(input==null){
58 return commandViewerNameMap;
59 }
60 IExtensionRegistry reg = Platform.getExtensionRegistry();
61 IConfigurationElement[] extensions = reg
62 .getConfigurationElementsFor("eu.etaxonomy.taxeditor.store.cdmViewer"); //$NON-NLS-1$
63 for (IConfigurationElement configElement : extensions) {
64 if(configElement.getName().equals("viewCommandMapping")){ //$NON-NLS-1$
65 try {
66 String commandId = configElement.getAttribute("commandId"); //$NON-NLS-1$
67 String viewerName = configElement.getAttribute("viewerName"); //$NON-NLS-1$
68 Class<?> selectionClass = Class.forName(configElement.getAttribute("selection")); //$NON-NLS-1$
69 if(selectionClass.isAssignableFrom(input.getClass())){
70 ICommandService commandService = PlatformUI.getWorkbench().getService(ICommandService.class);
71 Command command = commandService.getCommand(commandId);
72 if(command.isEnabled()){
73 commandViewerNameMap.put(command, viewerName);
74 }
75 }
76 } catch (ClassNotFoundException e) {
77 MessagingUtils.error(CdmViewerChooser.class, "Could not initalize selection class element of cdmViewer extension", e); //$NON-NLS-1$
78 }
79 }
80 }
81 }
82 return commandViewerNameMap;
83 }
84
85 }