blob: a22b432b4592dad4fe7e6782ef8387d487c4082a [file] [log] [blame]
/*
* Copyright (c) 2014, 2015 Eike Stepper (Loehne, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.oomph.util;
import org.eclipse.osgi.util.NLS;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import java.util.IdentityHashMap;
import java.util.Map;
/**
* @author Eike Stepper
*/
public final class ServiceUtil
{
private static Map<Object, ServiceReference<?>> services = new IdentityHashMap<Object, ServiceReference<?>>();
private ServiceUtil()
{
}
public static <T> T getServiceOrNull(BundleContext bundleContext, Class<T> serviceClass)
{
try
{
return getService(bundleContext, serviceClass);
}
catch (MissingServiceException ex)
{
return null;
}
}
public static <T> T getService(BundleContext bundleContext, Class<T> serviceClass) throws MissingServiceException
{
String serviceName = serviceClass.getName();
ServiceReference<?> serviceRef = bundleContext.getServiceReference(serviceName);
if (serviceRef == null)
{
throw new MissingServiceException(NLS.bind(Messages.ServiceUtil_MissingService_exception, serviceName));
}
@SuppressWarnings("unchecked")
T service = (T)bundleContext.getService(serviceRef);
if (service == null)
{
throw new MissingServiceException(NLS.bind(Messages.ServiceUtil_MissingService_exception, serviceName));
}
services.put(service, serviceRef);
return service;
}
public static void ungetService(BundleContext bundleContext, Object service)
{
if (service != null)
{
ServiceReference<?> serviceRef = services.remove(service);
if (serviceRef != null)
{
bundleContext.ungetService(serviceRef);
}
}
}
/**
* @author Eike Stepper
*/
public static class MissingServiceException extends IllegalStateException
{
private static final long serialVersionUID = 1L;
public MissingServiceException(String s)
{
super(s);
}
}
}