blob: d3892004928033220c99f3c2267f4adb7dd9dd96 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2018 IBM Corporation.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.event.mapper;
import java.util.HashMap;
import java.util.Map;
import org.osgi.framework.Bundle;
import org.osgi.framework.FrameworkEvent;
import org.osgi.service.event.Event;
import org.osgi.service.event.EventAdmin;
/**
* @version $Revision: 1.3 $
*/
public class FrameworkEventAdapter extends EventAdapter {
// constants for Event topic substring
public static final String HEADER = "org/osgi/framework/FrameworkEvent"; //$NON-NLS-1$
public static final String STARTLEVEL_CHANGED = "STARTLEVEL_CHANGED"; //$NON-NLS-1$
public static final String STARTED = "STARTED"; //$NON-NLS-1$
public static final String PACKAGES_REFRESHED = "PACKAGES_REFRESHED"; //$NON-NLS-1$
public static final String ERROR = "ERROR"; //$NON-NLS-1$
protected FrameworkEvent event;
public FrameworkEventAdapter(FrameworkEvent event, EventAdmin eventAdmin) {
super(eventAdmin);
this.event = event;
}
@Override
public Event convert() {
String typename = null;
switch (event.getType()) {
case FrameworkEvent.ERROR :
typename = ERROR;
break;
case FrameworkEvent.PACKAGES_REFRESHED :
typename = PACKAGES_REFRESHED;
break;
case FrameworkEvent.STARTED :
typename = STARTED;
break;
case FrameworkEvent.STARTLEVEL_CHANGED :
typename = STARTLEVEL_CHANGED;
break;
default :
return null;
}
String topic = HEADER + Constants.TOPIC_SEPARATOR + typename;
Map<String, Object> properties = new HashMap<>();
Bundle bundle = event.getBundle();
if (bundle != null) {
putBundleProperties(properties, bundle);
}
Throwable t = event.getThrowable();
if (t != null) {
putExceptionProperties(properties, t);
}
properties.put(Constants.EVENT, event);
Event converted = new Event(topic, properties);
return converted;
}
}