aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/test_bundles/my-bundle-activator/src/main/java/com/yahoo/jdisc/bundle/my_act/MyBundleActivator.java
blob: 6ff09550cadf74785553f3b1ac4d055a643005eb (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.bundle.my_act;

import com.yahoo.jdisc.service.CurrentContainer;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.framework.ServiceRegistration;

/**
 * @author Simon Thoresen Hult
 */
public class MyBundleActivator implements BundleActivator {

    private ServiceRegistration<?> registration;

    @Override
    public void start(BundleContext ctx) throws Exception {
        ServiceReference<?> seviceRef = ctx.getServiceReference(CurrentContainer.class.getName());
        if (seviceRef == null) {
            throw new IllegalStateException("Service reference '" + CurrentContainer.class.getName() + "' not found.");
        }
        Object service = ctx.getService(seviceRef);
        if (service == null) {
            throw new IllegalStateException("Service '" + CurrentContainer.class.getName() + "' not found.");
        }
        if (!(service instanceof CurrentContainer)) {
            throw new IllegalStateException("Expected " + CurrentContainer.class + ", got " + service.getClass() + ".");
        }
        registration = ctx.registerService(MyService.class.getName(), new MyService(), null);
    }

    @Override
    public void stop(BundleContext ctx) throws Exception {
        if (registration != null) {
            registration.unregister();
        }
    }
}