12c26a98564ee35a8594e01edeb58bc4cdcf351a
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / sal / core / api / AbstractConsumer.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.core.api;
9
10 import java.util.Collection;
11 import java.util.Collections;
12 import org.osgi.framework.BundleActivator;
13 import org.osgi.framework.BundleContext;
14 import org.osgi.framework.ServiceReference;
15 import org.osgi.util.tracker.ServiceTracker;
16 import org.osgi.util.tracker.ServiceTrackerCustomizer;
17
18 public abstract class AbstractConsumer implements Consumer, BundleActivator,ServiceTrackerCustomizer<Broker, Broker> {
19
20     private BundleContext context;
21     private ServiceTracker<Broker, Broker> tracker;
22     private Broker broker;
23
24     @Override
25     public final void start(final BundleContext context) throws Exception {
26         this.context = context;
27         this.startImpl(context);
28         tracker = new ServiceTracker<>(context, Broker.class, this);
29         tracker.open();
30     }
31
32
33
34     @Override
35     public final void stop(final BundleContext context) throws Exception {
36         stopImpl(context);
37         broker = null;
38         tracker.close();
39     }
40
41     protected void startImpl(final BundleContext context) {
42         // NOOP
43     }
44     protected void stopImpl(final BundleContext context) {
45         // NOOP
46     }
47
48     @Override
49     public Collection<ConsumerFunctionality> getConsumerFunctionality() {
50         return Collections.emptySet();
51     }
52
53
54     @Override
55     public Broker addingService(final ServiceReference<Broker> reference) {
56         if(broker == null) {
57             broker = context.getService(reference);
58             broker.registerConsumer(this, context);
59             return broker;
60         }
61
62         return null;
63     }
64
65     @Override
66     public void modifiedService(final ServiceReference<Broker> reference, final Broker service) {
67         // NOOP
68     }
69
70     @Override
71     public void removedService(final ServiceReference<Broker> reference, final Broker service) {
72         stopImpl(context);
73     }
74 }