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

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

/**
 * 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.Observable;
import rx.Observable.Operator;
import rx.exceptions.*;
import rx.Subscriber;
import rx.functions.Func1;
import rx.functions.Func2;

/**
 * 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> {

    /**
     * Creates the function that generates a {@code Observable} based on an item emitted by another {@code 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>() {
            @Override
            public Observable call(T t1) {
                return Observable.from(selector.call(t1));
            }
        };
    }

    final Func1> collectionSelector;
    final Func2 resultSelector;

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

    @Override
    public Subscriber call(final Subscriber> o) {
        return new Subscriber(o) {

            @Override
            public void onCompleted() {
                o.onCompleted();
            }

            @Override
            public void onError(Throwable e) {
                o.onError(e);
            }

            @Override
            public void onNext(final T outer) {
                try {
                    o.onNext(collectionSelector.call(outer).map(new Func1() {

                        @Override
                        public R call(U inner) {
                            return resultSelector.call(outer, inner);
                        }
                    }));
                } catch (Throwable e) {
                    Exceptions.throwOrReport(e, o, outer);
                }
            }

        };
    }

}