Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b0a16b304ee6a268fa432d7223f3c7cf60ebce91 (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
/*******************************************************************************
 * Copyright (c) 2014 Raymond Augé 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:
 *     Raymond Augé <raymond.auge@liferay.com> - Bug 436698
 ******************************************************************************/

package org.eclipse.equinox.http.servlet.internal.customizer;

import java.util.EventListener;
import javax.servlet.ServletException;
import org.eclipse.equinox.http.servlet.internal.HttpServiceRuntimeImpl;
import org.eclipse.equinox.http.servlet.internal.context.ContextController;
import org.eclipse.equinox.http.servlet.internal.registration.ListenerRegistration;
import org.osgi.framework.*;
import org.osgi.service.http.whiteboard.HttpWhiteboardConstants;

/**
 * @author Raymond Augé
 */
public class ContextListenerTrackerCustomizer
	extends RegistrationServiceTrackerCustomizer<EventListener, ListenerRegistration> {

	public ContextListenerTrackerCustomizer(
		BundleContext bundleContext, HttpServiceRuntimeImpl httpServiceRuntime,
		ContextController contextController) {

		super(bundleContext, httpServiceRuntime);

		this.contextController = contextController;
	}

	@Override
	public ListenerRegistration addingService(
		ServiceReference<EventListener> serviceReference) {

		if (!httpServiceRuntime.matches(serviceReference)) {
			// TODO no match runtime

			return null;
		}

		String contextSelector = (String)serviceReference.getProperty(
			HttpWhiteboardConstants.HTTP_WHITEBOARD_CONTEXT_SELECT);

		if (!contextController.matches(contextSelector)) {
			return null;
		}

		Long serviceId = (Long)serviceReference.getProperty(
			Constants.SERVICE_ID);
		EventListener eventListener = bundleContext.getService(
			serviceReference);

		try {
			return contextController.addListenerRegistration(
				eventListener, serviceId.longValue());
		}
		catch (ServletException se) {
			httpServiceRuntime.log(se.getMessage(), se);
		}

		return null;
	}

	@Override
	public void
		modifiedService(
			ServiceReference<EventListener> serviceReference,
			ListenerRegistration listenerRegistration) {
	}

	@Override
	public void
		removedService(
			ServiceReference<EventListener> serviceReference,
			ListenerRegistration listenerRegistration) {

		bundleContext.ungetService(serviceReference);

		listenerRegistration.destroy();
	}

	private ContextController contextController;

}

Back to the top