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

rx.internal.operators.OperatorMapPair Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2014 Netflix, Inc.
 *
 * 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 rx.internal.operators;

import rx.*;
import rx.Observable.Operator;
import rx.exceptions.*;
import rx.functions.*;
import rx.plugins.RxJavaHooks;

/**
 * An {@link Operator} that pairs up items emitted by a source {@link Observable} with the sequence of items
 * emitted by the {@code Observable} that is derived from each item by means of a selector, and emits the
 * results of this pairing.
 *
 * @param 
 *            the type of items emitted by the source {@code Observable}
 * @param 
 *            the type of items emitted by the derived {@code Observable}s
 * @param 
 *            the type of items to be emitted by this {@code Operator}
 */
public final class OperatorMapPair implements Operator, T> {
    final Func1> collectionSelector;
    final Func2 resultSelector;

    /**
     * Creates the function that generates a {@code Observable} based on an item emitted by another {@code Observable}.
     *
     * @param  the input value type
     * @param  the value type of the generated Observable
     * @param selector
     *            a function that accepts an item and returns an {@code Iterable} of corresponding items
     * @return a function that converts an item emitted by the source {@code Observable} into an {@code Observable} that emits the items generated by {@code selector} operating on that item
     */
    public static  Func1> convertSelector(final Func1> selector) {
        return new Func1>() {
            @SuppressWarnings("cast")
            @Override
            public Observable call(T t1) {
                return (Observable)Observable.from(selector.call(t1));
            }
        };
    }

    public OperatorMapPair(final Func1> collectionSelector, final Func2 resultSelector) {
        this.collectionSelector = collectionSelector;
        this.resultSelector = resultSelector;
    }

    @Override
    public Subscriber call(final Subscriber> o) {
        MapPairSubscriber parent = new MapPairSubscriber(o, collectionSelector, resultSelector);
        o.add(parent);
        return parent;
    }

    static final class MapPairSubscriber extends Subscriber {

        final Subscriber> actual;

        final Func1> collectionSelector;
        final Func2 resultSelector;

        boolean done;

        public MapPairSubscriber(Subscriber> actual,
                Func1> collectionSelector,
                        Func2 resultSelector) {
            this.actual = actual;
            this.collectionSelector = collectionSelector;
            this.resultSelector = resultSelector;
        }

        @Override
        public void onNext(T outer) {

            Observable intermediate;

            try {
                intermediate = collectionSelector.call(outer);
            } catch (Throwable ex) {
                Exceptions.throwIfFatal(ex);
                unsubscribe();
                onError(OnErrorThrowable.addValueAsLastCause(ex, outer));
                return;
            }

            actual.onNext(intermediate.map(new OuterInnerMapper(outer, resultSelector)));
        }

        @Override
        public void onError(Throwable e) {
            if (done) {
                RxJavaHooks.onError(e);
                return;
            }
            done = true;

            actual.onError(e);
        }


        @Override
        public void onCompleted() {
            if (done) {
                return;
            }
            actual.onCompleted();
        }

        @Override
        public void setProducer(Producer p) {
            actual.setProducer(p);
        }
    }

    static final class OuterInnerMapper implements Func1 {
        final T outer;
        final Func2 resultSelector;

        public OuterInnerMapper(T outer, Func2 resultSelector) {
            this.outer = outer;
            this.resultSelector = resultSelector;
        }

        @Override
        public R call(U inner) {
            return resultSelector.call(outer, inner);
        }

    }
}