Skip to main content
summaryrefslogtreecommitdiffstats
blob: d17d4f93a1c4ad721d59406b7dec5c3c0ad6eba0 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.ui.plugin.internal;

import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.core.exception.OseeExceptions;
import org.eclipse.osee.framework.plugin.core.IActionReportingService;
import org.eclipse.osee.framework.ui.plugin.OseeUiActivator;
import org.osgi.framework.BundleContext;
import org.osgi.util.tracker.ServiceTracker;

/**
 * a The activator class controls the plug-in life cycle
 */
public class OseePluginUiActivator extends OseeUiActivator {

   public static final String PLUGIN_ID = "org.eclipse.osee.framework.ui.plugin";

   private static OseePluginUiActivator plugin;
   private ServiceTracker tracker;

   public OseePluginUiActivator() {
      super(PLUGIN_ID);
      plugin = this;
   }

   @Override
   public void start(BundleContext context) throws Exception {
      super.start(context);

      tracker = new ServiceTracker(context, IActionReportingService.class.getName(), null);
      tracker.open();

      // TODO: This isn't needed anymore
      //      if (PlatformUI.isWorkbenchRunning()) {
      //         IWorkbench workbench = PlatformUI.getWorkbench();
      //         workbench.addWorkbenchListener(new IWorkbenchListener() {
      //
      //            @Override
      //            public void postShutdown(IWorkbench workbench) {
      //            }
      //
      //            @Override
      //            public boolean preShutdown(IWorkbench workbench, boolean forced) {
      //               try {
      //                  if (Lib.isWindows()) {
      //                     String clearCache = OseeInfo.getValue("clear_cache");
      //                     if (Boolean.parseBoolean(clearCache)) {
      //                        Location location = Platform.getInstallLocation();
      //                        URL url = FileLocator.toFileURL(location.getURL());
      //                        File file = new File(url.getFile());
      //                        File cache =
      //                              new File(new File(new File(file, "p2"), "org.eclipse.equinox.p2.metadata.repository"),
      //                                    "cache");
      //                        File[] files = cache.listFiles();
      //                        for (File toDelete : files) {
      //                           toDelete.delete();
      //                        }
      //
      //                        Lib.deleteContents(new File(new File(file, "configuration"), "org.eclipse.osgi"));
      //                     }
      //                  }
      //               } catch (Throwable th) {
      //
      //               }
      //               return true;
      //            }
      //
      //         });
      //      }
   }

   @Override
   public void stop(BundleContext context) throws Exception {
      super.stop(context);
      if (tracker != null) {
         tracker.close();
      }
      tracker = null;
      plugin = null;
      context = null;
   }

   public static OseePluginUiActivator getInstance() {
      return plugin;
   }

   public IActionReportingService getActionReportingService() throws OseeCoreException {
      IActionReportingService service = null;
      try {
         service = (IActionReportingService) tracker.waitForService(3000);
      } catch (InterruptedException ex) {
         OseeExceptions.wrapAndThrow(ex);
      }
      return service;
   }
}

Back to the top