Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d2e91848ab4a1875d57b15370637ad3b07ba1c41 (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
/*******************************************************************************
 * Copyright (c) 2013 Composent, Inc. 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: Scott Lewis - initial API and implementation
 ******************************************************************************/
package com.mycorp.examples.timeservice.host;

import java.util.Dictionary;
import java.util.Hashtable;

import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.remoteserviceadmin.RemoteServiceAdminEvent;
import org.osgi.service.remoteserviceadmin.RemoteServiceAdminListener;

import com.mycorp.examples.timeservice.ITimeService;

public class Activator implements BundleActivator {

	private static final String GENERIC_SERVER_CONFIG = "ecf.generic.server";
	private static final String GENERIC_SERVER_PORTPROP_NAME = GENERIC_SERVER_CONFIG+ ".port";
	private static final String GENERIC_SERVER_PORTPROP_VALUE = "3288";
	private static final String GENERIC_SERVER_HOSTPROP_NAME = GENERIC_SERVER_CONFIG+ ".hostname";
	private static final String GENERIC_SERVER_HOSTPROP_VALUE = "localhost";
	
	private static final String R_OSGI_SERVER_CONFIG = "ecf.r_osgi.peer";

	private static final String REST_SERVER_CONFIG = "com.mycorp.examples.timeservice.rest.host";
	private static final String REST_SERVER_IDPROP_NAME = REST_SERVER_CONFIG + ".id";
	private static final String REST_SERVER_IDPROP_VALUE = "http://localhost:8181";
	
	public void start(BundleContext context) throws Exception {
		// If the verboseRemoteServiceAdmin system property is set
		// then register debug listener
		if (Boolean.getBoolean("verboseRemoteServiceAdmin"))
			registerDebugListener(context);

		// Create remote service properties...see createRemoteServiceProperties above
		Dictionary<String, Object> props = createRemoteServiceProperties();
		// Create MyTimeService impl and register as a remote service
		// register the remote service with the service registry. If ECF remote
		// services/RSA impl is installed and started, it will export this
		// service via the default distribution provider, which is
		// 'ecf.generic.server'
		// To change which provider is used (e.g.) r-OSGi:
		// props.put("service.exported.configs","ecf.r_osgi.peer");
		ServiceRegistration<ITimeService> timeServiceRegistration = context
				.registerService(ITimeService.class, new TimeServiceImpl(),
						props);
		// Print out that ITimeService remote service registration
		System.out.println("MyTimeService host registered with registration="
				+ timeServiceRegistration);
	}

	public void stop(BundleContext context) throws Exception {
		// do nothing
	}

	private Dictionary<String,Object> createRemoteServiceProperties() {
		Dictionary<String, Object> props = new Hashtable<String, Object>();
		// This is the only required service property to trigger remote services
		props.put("service.exported.interfaces", "*");
		// set service.exported.configs
		String serviceExportedConfig = System.getProperty("service.exported.configs",GENERIC_SERVER_CONFIG);
		props.put("service.exported.configs",serviceExportedConfig);
		String propName = null;
		String propValue = null;
		if (GENERIC_SERVER_CONFIG.equals(serviceExportedConfig)) {
			propName = GENERIC_SERVER_PORTPROP_NAME;
			propValue = GENERIC_SERVER_PORTPROP_VALUE;
			props.put(GENERIC_SERVER_HOSTPROP_NAME, GENERIC_SERVER_HOSTPROP_VALUE);
		} else if (REST_SERVER_CONFIG.equals(serviceExportedConfig)) {
			propName = REST_SERVER_IDPROP_NAME;
			propValue = REST_SERVER_IDPROP_VALUE;
		} else if (R_OSGI_SERVER_CONFIG.equals(serviceExportedConfig)) {
			// r-osgi does not require the server to define its endpoint
			return props;
		} else throw new NullPointerException("Unsuppored value for service.exported.config="+serviceExportedConfig);
		
		// Set the propName and idPropValue
		props.put(propName,propValue);
		return props;
	}
	

	// Register a RemoteServiceAdminListener so we can report to sdtout
	// when a remote service has actually been successfully exported by
	// the RSA implementation
	private void registerDebugListener(BundleContext context) {
		RemoteServiceAdminListener rsaListener = new RemoteServiceAdminListener() {
			public void remoteAdminEvent(RemoteServiceAdminEvent event) {
				switch (event.getType()) {
				case RemoteServiceAdminEvent.EXPORT_REGISTRATION:
					System.out
							.println("Service Exported by RemoteServiceAdmin.  EndpointDescription Properties="
									+ event.getExportReference()
											.getExportedEndpoint()
											.getProperties());
				}
			}

		};
		// Register as service, and RemoteServiceAdmin will callback
		context.registerService(RemoteServiceAdminListener.class.getName(),
				rsaListener, null);
	}

}

Back to the top