blob: 9b4279f64f40e8b531c3194e96333af359a9c811 [file] [log] [blame]
/**
* Copyright (c) Rushan Gilmulin
* 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:
* Florian Pirchner - Copied from Vaaclipse
*/
package org.eclipse.osbp.vaaclipse.addons.common.event.impl;
import java.util.Collection;
import java.util.Dictionary;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.Map;
import javax.annotation.PreDestroy;
import javax.inject.Inject;
import org.eclipse.e4.core.di.annotations.Optional;
import org.eclipse.e4.core.services.events.IEventBroker;
import org.eclipse.e4.core.services.log.Logger;
import org.eclipse.e4.ui.di.UISynchronize;
import org.eclipse.e4.ui.internal.services.Activator;
import org.eclipse.e4.ui.internal.services.ServiceMessages;
import org.eclipse.e4.ui.services.internal.events.EventBroker;
import org.eclipse.e4.ui.services.internal.events.UIEventHandler;
import org.eclipse.osgi.util.NLS;
import org.eclipse.osbp.vaaclipse.addons.common.event.EventTopicNormalizer;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.BundleException;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.event.Event;
import org.osgi.service.event.EventAdmin;
import org.osgi.service.event.EventConstants;
import org.osgi.service.event.EventHandler;
/**
* The Class SeparatedEventBroker.
*/
@SuppressWarnings({ "restriction", "rawtypes" })
public class SeparatedEventBroker extends EventBroker implements IEventBroker {
// TBD synchronization
/** The registrations. */
private Map<EventHandler, ServiceRegistration> registrations = new HashMap<EventHandler, ServiceRegistration>();
/** The logger. */
@Inject
Logger logger;
/** The ui sync. */
@Inject
@Optional
UISynchronize uiSync;
/** The normalizer. */
@Inject
private EventTopicNormalizer normalizer;
// This is a temporary code to ensure that bundle containing
// EventAdmin implementation is started. This code it to be removed once
// the proper method to start EventAdmin is added.
static {
EventAdmin eventAdmin = Activator.getDefault().getEventAdmin();
if (eventAdmin == null) {
Bundle[] bundles = Activator.getDefault().getBundleContext()
.getBundles();
for (Bundle bundle : bundles) {
if (!"org.eclipse.equinox.event".equals(bundle
.getSymbolicName()))
continue;
try {
bundle.start(Bundle.START_TRANSIENT);
} catch (BundleException e) {
e.printStackTrace();
}
break;
}
}
}
/**
* Instantiates a new separated event broker.
*/
public SeparatedEventBroker() {
}
/* (non-Javadoc)
* @see org.eclipse.e4.ui.services.internal.events.EventBroker#send(java.lang.String, java.lang.Object)
*/
public boolean send(String topic, Object data) {
Event event = constructEvent(topic, data);
EventAdmin eventAdmin = Activator.getDefault().getEventAdmin();
if (eventAdmin == null) {
logger.error(NLS.bind(ServiceMessages.NO_EVENT_ADMIN,
event.toString()));
return false;
}
eventAdmin.sendEvent(event);
return true;
}
/* (non-Javadoc)
* @see org.eclipse.e4.ui.services.internal.events.EventBroker#post(java.lang.String, java.lang.Object)
*/
public boolean post(String topic, Object data) {
Event event = constructEvent(topic, data);
EventAdmin eventAdmin = Activator.getDefault().getEventAdmin();
if (eventAdmin == null) {
logger.error(NLS.bind(ServiceMessages.NO_EVENT_ADMIN,
event.toString()));
return false;
}
eventAdmin.postEvent(event);
return true;
}
/**
* Construct event.
*
* @param topic
* the topic
* @param data
* the data
* @return the event
*/
@SuppressWarnings("unchecked")
private Event constructEvent(String topic, Object data) {
Event event;
topic = normalizer.wrapTopic(topic);
if (data instanceof Dictionary<?, ?>) {
event = new Event(topic, (Dictionary<String, ?>) data);
} else if (data instanceof Map<?, ?>) {
event = new Event(topic, (Map<String, ?>) data);
} else {
Dictionary<String, Object> d = new Hashtable<String, Object>(2);
d.put(EventConstants.EVENT_TOPIC, topic);
if (data != null)
d.put(IEventBroker.DATA, data);
event = new Event(topic, d);
}
return event;
}
/* (non-Javadoc)
* @see org.eclipse.e4.ui.services.internal.events.EventBroker#subscribe(java.lang.String, org.osgi.service.event.EventHandler)
*/
public boolean subscribe(String topic, EventHandler eventHandler) {
return subscribe(topic, null, eventHandler, false);
}
/* (non-Javadoc)
* @see org.eclipse.e4.ui.services.internal.events.EventBroker#subscribe(java.lang.String, java.lang.String, org.osgi.service.event.EventHandler, boolean)
*/
public boolean subscribe(String topic, String filter,
EventHandler eventHandler, boolean headless) {
BundleContext bundleContext = Activator.getDefault().getBundleContext();
if (bundleContext == null) {
logger.error(NLS.bind(ServiceMessages.NO_BUNDLE_CONTEXT, topic));
return false;
}
String[] topics = new String[] { normalizer.wrapTopic(topic) };
Dictionary<String, Object> d = new Hashtable<String, Object>();
d.put(EventConstants.EVENT_TOPIC, topics);
if (filter != null)
d.put(EventConstants.EVENT_FILTER, filter);
EventHandler wrappedHandler = new UIEventHandler(eventHandler,
headless ? null : uiSync);
ServiceRegistration registration = bundleContext.registerService(
EventHandler.class.getName(), wrappedHandler, d);
registrations.put(eventHandler, registration);
return true;
}
/* (non-Javadoc)
* @see org.eclipse.e4.ui.services.internal.events.EventBroker#unsubscribe(org.osgi.service.event.EventHandler)
*/
public boolean unsubscribe(EventHandler eventHandler) {
ServiceRegistration registration = (ServiceRegistration) registrations
.remove(eventHandler);
if (registration == null)
return false;
registration.unregister();
return true;
}
/**
* Dodispose.
*/
@PreDestroy
public void dodispose() {
Collection<ServiceRegistration> values = registrations.values();
ServiceRegistration[] array = values
.toArray(new ServiceRegistration[values.size()]);
registrations.clear();
for (int i = 0; i < array.length; i++) {
// System.out.println("SeparatedEventBroker dispose:" + array[i] +
// ")");
array[i].unregister();
}
}
}