blob: d9615a70e1de2c25d3e62c4c708f7e54130cccf9 [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.component.dsl.internal;
import org.apache.aries.component.dsl.OSGi;
import org.apache.aries.component.dsl.OSGiResult;
import org.apache.aries.component.dsl.OSGiRunnable.ExecutionContext;
import org.apache.aries.component.dsl.Publisher;
import java.io.Closeable;
import java.util.function.Function;
import static org.apache.aries.component.dsl.OSGi.NOOP;
/**
* @author Carlos Sierra Andrés
*/
public class Pad<T, S> implements Publisher<T>, Closeable {
public Pad(
ExecutionContext bundleContext,
Function<OSGi<T>, OSGi<S>> fun,
Publisher<? super S> continuation) {
ProbeImpl<T> probe = new ProbeImpl<>();
OSGi<S> next = fun.apply(probe);
_result = next.run(bundleContext, continuation);
_publisher = continuation.pipe(
probe.getPublisher() != null ?
probe.getPublisher()::publish :
__ -> NOOP
);
}
@Override
public void close() {
_result.close();
}
@Override
public OSGiResult publish(T t) {
return _publisher.publish(t);
}
@Override
public <E extends Exception> OSGiResult error(T t, Exception e) throws E {
return _publisher.error(t, e);
}
private final OSGiResult _result;
private final Publisher<? super T> _publisher;
}