use of org.apache.jackrabbit.oak.spi.whiteboard.Tracker in project jackrabbit-oak by apache.
the class OsgiWhiteboard method track.
/**
* Returns a tracker for services of the given type. The returned tracker
* is optimized for frequent {@link Tracker#getServices()} calls through
* the use of a pre-compiled list of services that's atomically updated
* whenever services are added, modified or removed.
*/
@Override
public <T> Tracker<T> track(final Class<T> type) {
checkNotNull(type);
final AtomicReference<List<T>> list = new AtomicReference<List<T>>(Collections.<T>emptyList());
final ServiceTrackerCustomizer customizer = new ServiceTrackerCustomizer() {
private final Map<ServiceReference, T> services = newHashMap();
@Override
@SuppressWarnings("unchecked")
public synchronized Object addingService(ServiceReference reference) {
Object service = context.getService(reference);
if (type.isInstance(service)) {
services.put(reference, (T) service);
list.set(getServiceList(services));
return service;
} else {
context.ungetService(reference);
return null;
}
}
@Override
@SuppressWarnings("unchecked")
public synchronized void modifiedService(ServiceReference reference, Object service) {
// TODO: Figure out if the old reference instance
// would automatically reflect the updated properties.
// For now we play it safe by replacing the old key
// with the new reference instance passed as argument.
services.remove(reference);
services.put(reference, (T) service);
list.set(getServiceList(services));
}
@Override
public synchronized void removedService(ServiceReference reference, Object service) {
services.remove(reference);
list.set(getServiceList(services));
// TODO: Note that the service might still be in use
// by some client that called getServices() before
// this method was invoked.
context.ungetService(reference);
}
};
final ServiceTracker tracker = new ServiceTracker(context, type.getName(), customizer);
tracker.open();
return new Tracker<T>() {
@Override
public List<T> getServices() {
return list.get();
}
@Override
public void stop() {
tracker.close();
}
};
}
use of org.apache.jackrabbit.oak.spi.whiteboard.Tracker in project jackrabbit-oak by apache.
the class OsgiWhiteboard method track.
private <T> Tracker<T> track(Class<T> type, Filter filter) {
checkNotNull(type);
final AtomicReference<List<T>> list = new AtomicReference<List<T>>(Collections.<T>emptyList());
final ServiceTrackerCustomizer customizer = new ServiceTrackerCustomizer() {
private final Map<ServiceReference, T> services = newHashMap();
@Override
@SuppressWarnings("unchecked")
public synchronized Object addingService(ServiceReference reference) {
Object service = context.getService(reference);
if (type.isInstance(service)) {
services.put(reference, (T) service);
list.set(getServiceList(services));
return service;
} else {
context.ungetService(reference);
return null;
}
}
@Override
@SuppressWarnings("unchecked")
public synchronized void modifiedService(ServiceReference reference, Object service) {
// TODO: Figure out if the old reference instance
// would automatically reflect the updated properties.
// For now we play it safe by replacing the old key
// with the new reference instance passed as argument.
services.remove(reference);
services.put(reference, (T) service);
list.set(getServiceList(services));
}
@Override
public synchronized void removedService(ServiceReference reference, Object service) {
services.remove(reference);
list.set(getServiceList(services));
// TODO: Note that the service might still be in use
// by some client that called getServices() before
// this method was invoked.
context.ungetService(reference);
}
};
final ServiceTracker tracker = new ServiceTracker(context, filter, customizer);
tracker.open();
return new Tracker<T>() {
@Override
public List<T> getServices() {
return list.get();
}
@Override
public void stop() {
tracker.close();
}
};
}
Aggregations