All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ratpack.stream.internal.FlatMapPublisher Maven / Gradle / Ivy

There is a newer version: 2.0.0-rc-1
Show newest version
/*
 * Copyright 2014 the original author or authors.
 *
 * Licensed 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 ratpack.stream.internal;

import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
import org.reactivestreams.Subscription;
import ratpack.exec.Operation;
import ratpack.exec.Promise;
import ratpack.func.Function;
import ratpack.stream.TransformablePublisher;

import java.util.concurrent.atomic.AtomicBoolean;

public class FlatMapPublisher implements TransformablePublisher {

  private final Publisher input;
  private final Function> function;

  public FlatMapPublisher(Publisher input, Function> function) {
    this.input = input;
    this.function = function;
  }

  @Override
  public void subscribe(final Subscriber outSubscriber) {
    input.subscribe(new Subscriber() {

      private Subscription subscription;
      private final AtomicBoolean done = new AtomicBoolean();

      @Override
      public void onSubscribe(Subscription subscription) {
        this.subscription = new Subscription() {
          @Override
          public void request(long n) {
            subscription.request(n);
          }

          @Override
          public void cancel() {
            subscription.cancel();
          }
        };
        outSubscriber.onSubscribe(this.subscription);
      }

      @Override
      public void onNext(I in) {
        if (done.get()) {
          return;
        }
        Promise out;
        try {
          out = function.apply(in);
        } catch (Throwable throwable) {
          subscription.cancel();
          innerOnError(throwable);
          return;
        }

        out.onError(e -> {
          subscription.cancel();
          innerOnError(e);
        }).then(v -> {
          if (!done.get()) {
            outSubscriber.onNext(v);
          }
        });
      }

      @Override
      public void onError(Throwable t) {
        Promise.value(t).then(this::innerOnError);
      }

      public void innerOnError(Throwable t) {
        if (done.compareAndSet(false, true)) {
          outSubscriber.onError(t);
        }
      }

      @Override
      public void onComplete() {
        Operation.noop().then(() -> {
          if (done.compareAndSet(false, true)) {
            outSubscriber.onComplete();
          }
        });
      }
    });
  }
}