blob: 23848f4e4a82b66f3964376ecddabc13e0821a99 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Eugen Neufeld - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.diffmerge.swt;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.emf.ecp.view.spi.util.swt.ImageRegistryService;
import org.eclipse.emfforms.spi.core.services.label.EMFFormsLabelProvider;
import org.eclipse.swt.graphics.Image;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
/**
* Activator for this plugin.
*
* @author Eugen Neufeld
*
*/
public class Activator extends Plugin {
private static Activator instance;
// BEGIN SUPRESS CATCH EXCEPTION
@Override
public void start(BundleContext bundleContext) throws Exception {
instance = this;
super.start(bundleContext);
}
@Override
public void stop(BundleContext bundleContext) throws Exception {
if (imageRegistryServiceReference != null) {
bundleContext.ungetService(imageRegistryServiceReference);
}
if (emfformsLabelProviderserviceReference != null) {
bundleContext.ungetService(emfformsLabelProviderserviceReference);
}
instance = null;
super.stop(bundleContext);
}
// END SUPRESS CATCH EXCEPTION
/**
* Returns the shared instance.
*
* @return the shared instance
*/
public static Activator getInstance() {
return instance;
}
/**
* Finds and returns an image for the provided path.
*
* @param path the path to get the image from
* @return the image or null if nothing could be found
*/
public static Image getImage(String path) {
final Image image = instance.getImageRegistryService().getImage(instance.getBundle(), path);
instance.getBundle().getBundleContext().ungetService(instance.imageRegistryServiceReference);
return image;
}
private ServiceReference<ImageRegistryService> imageRegistryServiceReference;
private ServiceReference<EMFFormsLabelProvider> emfformsLabelProviderserviceReference;
private ImageRegistryService getImageRegistryService() {
if (imageRegistryServiceReference == null) {
imageRegistryServiceReference = getBundle().getBundleContext()
.getServiceReference(ImageRegistryService.class);
}
return getBundle().getBundleContext().getService(imageRegistryServiceReference);
}
/**
* Returns the {@link EMFFormsLabelProvider} service.
*
* @return The {@link EMFFormsLabelProvider}
*/
public EMFFormsLabelProvider getEMFFormsLabelProvider() {
if (emfformsLabelProviderserviceReference == null) {
emfformsLabelProviderserviceReference = getBundle().getBundleContext()
.getServiceReference(EMFFormsLabelProvider.class);
}
return getBundle().getBundleContext().getService(emfformsLabelProviderserviceReference);
}
}