Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d7a6240db52646a9b4f966657f2917690d91e3cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*******************************************************************************
 * Copyright (c) 2005, 2009 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.useradmin;

import java.util.Dictionary;
import java.util.Hashtable;
import org.osgi.framework.*;
import org.osgi.service.event.Event;
import org.osgi.service.event.EventAdmin;
import org.osgi.service.useradmin.Role;
import org.osgi.service.useradmin.UserAdminEvent;
import org.osgi.service.useradmin.UserAdminListener;
import org.osgi.util.tracker.ServiceTracker;

public class UserAdminEventAdapter implements UserAdminListener {
	// constants for Event topic substring
	public static final String TOPIC = "org/osgi/service/useradmin/UserAdmin"; //$NON-NLS-1$
	public static final char TOPIC_SEPARATOR = '/';
	public static final String EVENT = "event"; //$NON-NLS-1$

	public static final String SERVICE = "service"; //$NON-NLS-1$
	public static final String SERVICE_ID = "service.id"; //$NON-NLS-1$
	public static final String SERVICE_OBJECTCLASS = "service.objectClass"; //$NON-NLS-1$
	public static final String SERVICE_PID = "service.pid"; //$NON-NLS-1$

	public static final String ROLE_CREATED = "ROLE_CREATED"; //$NON-NLS-1$
	public static final String ROLE_CHANGED = "ROLE_CHANGED"; //$NON-NLS-1$
	public static final String ROLE_REMOVED = "ROLE_REMOVED"; //$NON-NLS-1$
	// constants for Event properties
	public static final String ROLE = "role"; //$NON-NLS-1$
	public static final String ROLE_NAME = "role.name"; //$NON-NLS-1$
	public static final String ROLE_TYPE = "role.type"; //$NON-NLS-1$

	private BundleContext context;
	private ServiceRegistration userAdminRegistration;
	private volatile ServiceTracker eventAdminTracker;

	public UserAdminEventAdapter(BundleContext context) {
		this.context = context;
	}

	public void start() throws Exception {
		Hashtable<String, ?> props = new Hashtable<>(3);
		userAdminRegistration = context.registerService(UserAdminListener.class, this, props);

		eventAdminTracker = new ServiceTracker<>(context, EventAdmin.class, null);
		eventAdminTracker.open();
	}

	public void stop() throws Exception {
		ServiceTracker currentTracker = eventAdminTracker;
		if (currentTracker != null) {
			currentTracker.close();
			eventAdminTracker = null;
		}
		if (userAdminRegistration != null) {
			userAdminRegistration.unregister();
			userAdminRegistration = null;
		}
		this.context = null;
	}

	@Override
	public void roleChanged(UserAdminEvent event) {
		ServiceTracker currentTracker = eventAdminTracker;
		EventAdmin eventAdmin = currentTracker == null ? null : ((EventAdmin) currentTracker.getService());
		if (eventAdmin != null) {
			String typename = null;
			switch (event.getType()) {
				case UserAdminEvent.ROLE_CREATED :
					typename = ROLE_CREATED;
					break;
				case UserAdminEvent.ROLE_CHANGED :
					typename = ROLE_CHANGED;
					break;
				case UserAdminEvent.ROLE_REMOVED :
					typename = ROLE_REMOVED;
					break;
				default :
					return;
			}
			String topic = TOPIC + TOPIC_SEPARATOR + typename;
			Hashtable<String, Object> properties = new Hashtable<>();
			ServiceReference ref = event.getServiceReference();
			if (ref == null) {
				throw new RuntimeException("UserAdminEvent's getServiceReference() returns null."); //$NON-NLS-1$
			}
			putServiceReferenceProperties(properties, ref);
			Role role = event.getRole();
			if (role == null) {
				throw new RuntimeException("UserAdminEvent's getRole() returns null."); //$NON-NLS-1$
			}
			if (role != null) {
				properties.put(ROLE, role);
				properties.put(ROLE_NAME, role.getName());
				properties.put(ROLE_TYPE, Integer.valueOf(role.getType()));
			}
			properties.put(EVENT, event);
			Event convertedEvent = new Event(topic, (Dictionary<String, ?>) properties);
			eventAdmin.postEvent(convertedEvent);
		}
	}

	public void putServiceReferenceProperties(Hashtable<String, Object> properties, ServiceReference ref) {
		properties.put(SERVICE, ref);
		properties.put(SERVICE_ID, ref.getProperty(org.osgi.framework.Constants.SERVICE_ID));
		Object o = ref.getProperty(org.osgi.framework.Constants.SERVICE_PID);
		if ((o != null) && (o instanceof String)) {
			properties.put(SERVICE_PID, o);
		}
		Object o2 = ref.getProperty(org.osgi.framework.Constants.OBJECTCLASS);
		if ((o2 != null) && (o2 instanceof String[])) {
			properties.put(SERVICE_OBJECTCLASS, o2);
		}
	}

}

Back to the top