/* * Copyright (c) 2018 Pantheon Technologies, s.r.o. 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.mdsal.binding.dom.adapter.osgi; import static java.util.Objects.requireNonNull; import java.util.function.Function; import org.opendaylight.mdsal.binding.api.BindingService; import org.opendaylight.mdsal.dom.api.DOMService; import org.osgi.framework.BundleContext; import org.osgi.framework.ServiceReference; import org.osgi.framework.ServiceRegistration; import org.osgi.util.tracker.ServiceTracker; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * A ServiceTracker which adapts a DOMService to a BindingService. * * @param DOMService type * @param BindingService type * @author Robert Varga */ final class AdaptingTracker extends ServiceTracker> { private static final Logger LOG = LoggerFactory.getLogger(AdaptingTracker.class); private final Function bindingFactory; private final Class bindingClass; AdaptingTracker(final BundleContext ctx, final Class domClass, final Class bindingClass, final Function bindingFactory) { super(ctx, domClass, null); this.bindingClass = requireNonNull(bindingClass); this.bindingFactory = requireNonNull(bindingFactory); } @Override public void open(final boolean trackAllServices) { LOG.debug("Starting tracker for {}", bindingClass.getName()); super.open(trackAllServices); LOG.debug("Tracker for {} started", bindingClass.getName()); } @Override public ServiceRegistration addingService(final ServiceReference reference) { if (reference == null) { LOG.debug("Null reference for {}, ignoring it", bindingClass.getName()); return null; } if (reference.getProperty(ServiceProperties.IGNORE_PROP) != null) { LOG.debug("Ignoring reference {} due to {}", reference, ServiceProperties.IGNORE_PROP); return null; } final D dom = context.getService(reference); if (dom == null) { LOG.debug("Could not get {} service from {}, ignoring it", bindingClass.getName(), reference); return null; } final B binding = bindingFactory.apply(dom); final Dict props = Dict.fromReference(reference); final ServiceRegistration reg = context.registerService(bindingClass, binding, props); LOG.debug("Registered {} adapter {} of {} with {} as {}", bindingClass.getName(), binding, dom, props, reg); return reg; } @Override public void modifiedService(final ServiceReference reference, final ServiceRegistration service) { if (service != null && reference != null) { final Dict newProps = Dict.fromReference(reference); LOG.debug("Updating service {} with properties {}", service, newProps); service.setProperties(newProps); } } @Override public void removedService(final ServiceReference reference, final ServiceRegistration service) { if (service != null) { context.ungetService(reference); service.unregister(); LOG.debug("Unregistered service {}", service); } } }