/* * Jitsi, the OpenSource Java VoIP and Instant Messaging client. * * Distributable under LGPL license. * See terms of license at gnu.org. */ package net.java.sip.communicator.plugin.phonenumbercontactsource; import java.util.*; import net.java.sip.communicator.service.contactsource.*; import net.java.sip.communicator.service.protocol.*; import net.java.sip.communicator.util.*; import org.jitsi.service.resources.*; import org.osgi.framework.*; /** * The activator for the phone number contact source bundle. * * @author Yana Stamcheva */ public class PNContactSourceActivator implements BundleActivator { /** * The Logger used by the * PNContactSourceActivator class for logging output. */ private static final Logger logger = Logger.getLogger(PNContactSourceActivator.class); /** * The bundle context. */ static BundleContext bundleContext = null; /** * Providers of contact info. */ private static List phoneProviders; /** * The contact source. */ private static final PhoneNumberContactSource phoneNumberContactSource = new PhoneNumberContactSource(); /** * The resource service. */ private static ResourceManagementService resources = null; /** * Starts this bundle. * * @param context the bundle context where we register and obtain services. */ public void start(BundleContext context) throws Exception { bundleContext = context; bundleContext.registerService( ContactSourceService.class.getName(), phoneNumberContactSource, null); } public void stop(BundleContext context) throws Exception { } /** * Returns a reference to the ResourceManagementService implementation * currently registered in the bundle context or null if no such * implementation was found. * * @return a reference to a ResourceManagementService implementation * currently registered in the bundle context or null if no such * implementation was found. */ public static ResourceManagementService getResources() { if (resources == null) { resources = ServiceUtils.getService( bundleContext, ResourceManagementService.class); } return resources; } /** * Returns a list of all currently registered server stored contact info * providers. * * @return a list of all currently registered server stored contact info * providers */ public static List getPhoneNumberProviders() { if (phoneProviders != null) return phoneProviders; phoneProviders = new LinkedList(); bundleContext.addServiceListener(new ProtocolProviderRegListener()); ServiceReference[] serRefs = null; try { // get all registered provider factories serRefs = bundleContext.getServiceReferences( ProtocolProviderFactory.class.getName(), null); } catch (InvalidSyntaxException e) { logger.error("LoginManager : " + e); } if (serRefs != null) { for (ServiceReference serRef : serRefs) { ProtocolProviderFactory providerFactory = (ProtocolProviderFactory) bundleContext.getService(serRef); ProtocolProviderService protocolProvider; for (AccountID accountID : providerFactory.getRegisteredAccounts()) { serRef = providerFactory.getProviderForAccount(accountID); protocolProvider = (ProtocolProviderService) bundleContext .getService(serRef); handleProviderAdded(protocolProvider); } } } return phoneProviders; } /** * Listens for ProtocolProviderService registrations. */ private static class ProtocolProviderRegListener implements ServiceListener { public void serviceChanged(ServiceEvent event) { ServiceReference serviceRef = event.getServiceReference(); // if the event is caused by a bundle being stopped, we don't want to // know if (serviceRef.getBundle().getState() == Bundle.STOPPING) { return; } Object service = bundleContext.getService(serviceRef); // we don't care if the source service is not a protocol provider if (!(service instanceof ProtocolProviderService)) { return; } switch (event.getType()) { case ServiceEvent.REGISTERED: handleProviderAdded((ProtocolProviderService) service); break; case ServiceEvent.UNREGISTERING: handleProviderRemoved((ProtocolProviderService) service); break; } } } /** * Handles the registration of a new ProtocolProviderService. Adds * the given protocolProvider to the list of queried providers. * * @param protocolProvider the ProtocolProviderService to add */ private static void handleProviderAdded( ProtocolProviderService protocolProvider) { if (protocolProvider.getOperationSet( OperationSetServerStoredContactInfo.class) != null && protocolProvider.isRegistered() && !phoneProviders.contains(protocolProvider)) { phoneProviders.add(protocolProvider); } } /** * Handles the un-registration of a ProtocolProviderService. * Removes the given protocolProvider from the list of queried * providers. * * @param protocolProvider the ProtocolProviderService to remove */ private static void handleProviderRemoved( ProtocolProviderService protocolProvider) { if (phoneProviders.contains(protocolProvider)) phoneProviders.remove(protocolProvider); } }