/* * Copyright (c) 2013 Cisco Systems, Inc. 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 */ package org.opendaylight.controller.sal.core.api; import java.util.Collection; import java.util.Collections; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import org.osgi.framework.ServiceReference; import org.osgi.util.tracker.ServiceTracker; import org.osgi.util.tracker.ServiceTrackerCustomizer; public abstract class AbstractConsumer implements Consumer, BundleActivator,ServiceTrackerCustomizer { private BundleContext context; private ServiceTracker tracker; private Broker broker; @Override public final void start(BundleContext context) throws Exception { this.context = context; this.startImpl(context); tracker = new ServiceTracker<>(context, Broker.class, this); tracker.open(); } @Override public final void stop(BundleContext context) throws Exception { stopImpl(context); broker = null; tracker.close(); } protected void startImpl(BundleContext context) { // NOOP } protected void stopImpl(BundleContext context) { // NOOP } @Override public Collection getConsumerFunctionality() { return Collections.emptySet(); } @Override public Broker addingService(ServiceReference reference) { if(broker == null) { broker = context.getService(reference); broker.registerConsumer(this, context); return broker; } return null; } @Override public void modifiedService(ServiceReference reference, Broker service) { // NOOP } @Override public void removedService(ServiceReference reference, Broker service) { stopImpl(context); } }