blob: a7845a0e77ba6d7124f711798736b4ed550c9306 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 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.ote.ui.message.search.internal;
import java.util.logging.Level;
import org.eclipse.osee.framework.logging.OseeLog;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.FrameworkUtil;
import org.osgi.framework.InvalidSyntaxException;
import org.osgi.framework.ServiceReference;
public class MessageViewServiceUtility {
public static Class<MessageViewServiceUtility> getClazz(){
return MessageViewServiceUtility.class;
}
@SuppressWarnings({ "rawtypes", "unchecked" })
public static <T> T getService(Class<T> clazz){
BundleContext context = getContext();
if(context == null){
OseeLog.log(MessageViewServiceUtility.class, Level.SEVERE, "Unable to get service " + clazz.getName());
return null;
}
ServiceReference serviceReference = context.getServiceReference(clazz.getName());
if(serviceReference == null){
OseeLog.log(MessageViewServiceUtility.class, Level.SEVERE, "Unable to get service " + clazz.getName());
return null;
}
T obj = (T)getContext().getService(serviceReference);
if(obj == null){
OseeLog.log(MessageViewServiceUtility.class, Level.SEVERE, "Unable to get service " + clazz.getName());
}
return obj;
}
@SuppressWarnings({ "rawtypes", "unchecked" })
public static <T> T[] getServices(Class<T> clazz) throws InvalidSyntaxException{
ServiceReference[] serviceReferences = getContext().getServiceReferences(clazz.getName(), null);
T[] data = (T[])new Object[serviceReferences.length];
for(int i = 0; i < serviceReferences.length; i ++){
data[i] = (T)getContext().getService(serviceReferences[i]);
}
return data;
}
public static BundleContext getContext(){
Bundle bundle = FrameworkUtil.getBundle(getClazz());
if(bundle == null){
return null;
}
return bundle.getBundleContext();
}
}