blob: 7237c2d5c05338de4f1cb033c69cceabb12115b9 [file] [log] [blame]
/*
* 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.aries.jax.rs.whiteboard.internal;
import org.apache.aries.component.dsl.CachingServiceReference;
import org.apache.aries.component.dsl.OSGiResult;
import org.apache.aries.component.dsl.Publisher;
import org.osgi.framework.Filter;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.atomic.AtomicBoolean;
public class ServiceReferenceFilteredPublisher implements AutoCloseable {
public ServiceReferenceFilteredPublisher(
Publisher<? super CachingServiceReference<?>> publisher,
Filter filter) {
_publisher = publisher;
_filter = filter;
}
public void close() {
if (_closed.compareAndSet(false, true)) {
_results.forEach((__, resultList) -> resultList.forEach(OSGiResult::close));
_results.clear();
}
}
public void publishIfMatched(CachingServiceReference<?> serviceReference) {
if (_closed.get()) {
return;
}
if (_filter.match(serviceReference.getServiceReference())) {
OSGiResult result = _publisher.publish(serviceReference);
_results.compute(
serviceReference,
(__, results) -> {
if (results == null) {
results = new ArrayList<>();
}
results.add(result);
return results;
});
if (_closed.get()) {
result.close();
}
}
}
public void retractIfMatched(CachingServiceReference<?> serviceReference) {
if (_closed.get()) {
return;
}
if (_filter.match(serviceReference.getServiceReference())) {
List<OSGiResult> resultList = _results.remove(serviceReference);
if (resultList != null) {
resultList.forEach(OSGiResult::close);
}
}
}
private Publisher<? super CachingServiceReference<?>> _publisher;
private Filter _filter;
private AtomicBoolean _closed = new AtomicBoolean(false);
private Map<CachingServiceReference<?>, List<OSGiResult>> _results =
new HashMap<>();
}