blob: 2a6f9374ca0c214daf9e13c502635c3a8ccfd595 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2015 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
* Lars.Vogel <Lars.Vogel@vogella.com> - Bug 472654
*******************************************************************************/
package org.eclipse.e4.core.di.internal.extensions.util;
import java.util.Dictionary;
import java.util.Hashtable;
import java.util.Map;
import org.osgi.service.event.Event;
import org.osgi.service.event.EventAdmin;
import org.osgi.service.event.EventConstants;
/**
* DOC: no instantiate, no extend
*
*/
final public class EventUtils {
// Same as IEventBroker.DATA
final static public String DATA = "org.eclipse.e4.data"; //$NON-NLS-1$
private EventUtils() {
// prevents instantiation
}
static public boolean send(EventAdmin eventAdmin, String topic, Object data) {
Event event = constructEvent(topic, data);
eventAdmin.sendEvent(event);
return true;
}
static public boolean post(EventAdmin eventAdmin, String topic, Object data) {
Event event = constructEvent(topic, data);
eventAdmin.postEvent(event);
return true;
}
@SuppressWarnings("unchecked")
static public Event constructEvent(String topic, Object data) {
Event event;
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<>(2);
d.put(EventConstants.EVENT_TOPIC, topic);
if (data != null)
d.put(DATA, data);
event = new Event(topic, d);
}
return event;
}
}