/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.karaf.util.tracker; import java.util.Arrays; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicReference; import java.util.function.BiConsumer; import org.osgi.framework.BundleContext; import org.osgi.framework.Constants; import org.osgi.framework.Filter; import org.osgi.framework.InvalidSyntaxException; import org.osgi.framework.ServiceEvent; import org.osgi.framework.ServiceListener; import org.osgi.framework.ServiceReference; //This is from aries util public final class SingleServiceTracker<T> implements ServiceListener { private final BundleContext ctx; private final String className; private final AtomicReference<T> service = new AtomicReference<>(); private final AtomicReference<ServiceReference> ref = new AtomicReference<>(); private final AtomicBoolean open = new AtomicBoolean(false); private final BiConsumer<T, T> serviceListener; private final String filterString; private final Filter filter; public SingleServiceTracker(BundleContext context, Class<T> clazz, BiConsumer<T, T> sl) throws InvalidSyntaxException { this(context, clazz, null, sl); } public SingleServiceTracker(BundleContext context, Class<T> clazz, String filterString, BiConsumer<T, T> sl) throws InvalidSyntaxException { this(context, clazz.getName(), filterString, sl); } public SingleServiceTracker(BundleContext context, String className, String filterString, BiConsumer<T, T> sl) throws InvalidSyntaxException { this.ctx = context; this.className = className; this.serviceListener = sl; if (filterString == null || filterString.isEmpty()) { this.filterString = null; this.filter = null; } else { this.filterString = filterString; this.filter = context.createFilter(filterString); } } public T getService() { return service.get(); } public ServiceReference getServiceReference() { return ref.get(); } public void open() { if (open.compareAndSet(false, true)) { try { String filterString = '(' + Constants.OBJECTCLASS + '=' + className + ')'; if (filter != null) filterString = "(&" + filterString + filter + ')'; ctx.addServiceListener(this, filterString); findMatchingReference(null); } catch (InvalidSyntaxException e) { // this can never happen. (famous last words :) } } } public void serviceChanged(ServiceEvent event) { if (open.get()) { if (event.getType() == ServiceEvent.UNREGISTERING) { ServiceReference deadRef = event.getServiceReference(); if (deadRef.equals(ref.get())) { findMatchingReference(deadRef); } } else if (event.getType() == ServiceEvent.REGISTERED && ref.get() == null) { findMatchingReference(null); } } } private void findMatchingReference(ServiceReference original) { try { boolean clear = true; ServiceReference[] refs = ctx.getServiceReferences(className, filterString); if (refs != null && refs.length > 0) { if (refs.length > 1) { Arrays.sort(refs); } @SuppressWarnings("unchecked") T service = (T) ctx.getService(refs[0]); if (service != null) { clear = false; // We do the unget out of the lock so we don't exit this class while holding a lock. if (!update(original, refs[0], service)) { ctx.ungetService(refs[0]); } } } else if (original == null) { clear = false; } if (clear) { update(original, null, null); } } catch (InvalidSyntaxException e) { // this can never happen. (famous last words :) } } private boolean update(ServiceReference deadRef, ServiceReference newRef, T service) { boolean result = false; T prev = null; // Make sure we don't try to get a lock on null Object lock; // we have to choose our lock. if (newRef != null) lock = newRef; else if (deadRef != null) lock = deadRef; else lock = this; // This lock is here to ensure that no two threads can set the ref and service // at the same time. synchronized (lock) { if (open.get()) { result = this.ref.compareAndSet(deadRef, newRef); if (result) { prev = this.service.getAndSet(service); } } } if (result && serviceListener != null) { serviceListener.accept(prev, service); } return result; } public void close() { if (open.compareAndSet(true, false)) { ctx.removeServiceListener(this); ServiceReference deadRef; T prev; synchronized (this) { deadRef = ref.getAndSet(null); prev = service.getAndSet(null); } if (deadRef != null) { serviceListener.accept(prev, null); ctx.ungetService(deadRef); } } } }