Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f8f8e031c85ceb5e184a46487efa105637464b26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*********************************************************************
 * Copyright (c) 2004, 2007 Boeing
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Boeing - initial API and implementation
 **********************************************************************/

package org.eclipse.osee.framework.ui.plugin.xnavigate;

import java.lang.reflect.Method;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.logging.Level;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.Platform;
import org.eclipse.osee.framework.jdk.core.util.Conditions;
import org.eclipse.osee.framework.jdk.core.util.Strings;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.plugin.core.OseeActivator;
import org.eclipse.osee.framework.plugin.core.util.ExtensionPoints;
import org.eclipse.osee.framework.ui.plugin.internal.UiPluginConstants;
import org.osgi.framework.Bundle;

/**
 * @author Roberto E. Escobar
 */
public final class XNavigateContributionManager {

   private XNavigateContributionManager() {
      //Utility Class
   }

   public static Set<XNavigateExtensionPointData> getNavigateItems(String viewIdToMatch) {
      Conditions.checkNotNull(viewIdToMatch, "viewIdToMatch");
      Set<XNavigateExtensionPointData> toReturn = new HashSet<>();
      List<IConfigurationElement> elements =
         ExtensionPoints.getExtensionElements(UiPluginConstants.PLUGIN_ID + ".XNavigateItem", "XNavigateItem");
      for (IConfigurationElement element : elements) {
         String viewId = element.getAttribute("viewId");
         if (viewIdToMatch.equals(viewId)) {
            String className = element.getAttribute("classname");
            String bundleName = element.getContributor().getName();
            if (Strings.isValid(bundleName) && Strings.isValid(className)) {
               IXNavigateContainer navigateContainer = createXNavigateContainer(className, bundleName);
               if (navigateContainer != null) {
                  String category = element.getAttribute("category");
                  XNavigateExtensionPointData data = createXNavigateData(viewId, category, navigateContainer);
                  toReturn.add(data);
               }
            }
         }
      }
      return toReturn;
   }

   private static XNavigateExtensionPointData createXNavigateData(String viewId, String category, IXNavigateContainer navigateContainer) {
      String categoryToSet = category != null ? category : "";
      return new XNavigateExtensionPointData(viewId, categoryToSet, navigateContainer);
   }

   private static IXNavigateContainer createXNavigateContainer(String className, String bundleName) {
      IXNavigateContainer toReturn = null;
      Bundle bundle = Platform.getBundle(bundleName);
      try {
         Class<?> taskClass = bundle.loadClass(className);
         try {
            Method getInstance = taskClass.getMethod("getInstance", new Class[] {});
            toReturn = (IXNavigateContainer) getInstance.invoke(null, new Object[] {});
         } catch (Exception ex) {
            toReturn = (IXNavigateContainer) taskClass.newInstance();
         }
      } catch (Exception ex) {
         OseeLog.logf(OseeActivator.class, Level.SEVERE, ex, "Unable to Load: [%s - %s]", bundleName, className);
      } catch (LinkageError error) {
         OseeLog.logf(OseeActivator.class, Level.SEVERE, error, "Unable to Load: [%s - %s]", bundleName, className);
      }
      return toReturn;
   }
}

Back to the top