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

rx.internal.operators.OperatorSingle 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 java.util.NoSuchElementException;

import rx.Observable.Operator;
import rx.Subscriber;

/**
 * If the Observable completes after emitting a single item that matches a
 * predicate, return an Observable containing that item. If it emits more than
 * one such item or no item, throw an IllegalArgumentException.
 */
public final class OperatorSingle implements Operator {

    private final boolean hasDefaultValue;
    private final T defaultValue;

    public OperatorSingle() {
        this(false, null);
    }

    public OperatorSingle(T defaultValue) {
        this(true, defaultValue);
    }

    private OperatorSingle(boolean hasDefaultValue, final T defaultValue) {
        this.hasDefaultValue = hasDefaultValue;
        this.defaultValue = defaultValue;
    }

    @Override
    public Subscriber call(final Subscriber subscriber) {
        return new Subscriber(subscriber) {

            private T value;
            private boolean isNonEmpty = false;
            private boolean hasTooManyElements = false;

            @Override
            public void onNext(T value) {
                if (isNonEmpty) {
                    hasTooManyElements = true;
                    subscriber.onError(new IllegalArgumentException("Sequence contains too many elements"));
                    unsubscribe();
                } else {
                    this.value = value;
                    isNonEmpty = true;
                    // Issue: https://github.com/Netflix/RxJava/pull/1527
                    // Because we cache a value and don't emit now, we need to request another one.
                    request(1);
                }
            }

            @Override
            public void onCompleted() {
                if (hasTooManyElements) {
                    // We have already sent an onError message
                } else {
                    if (isNonEmpty) {
                        subscriber.onNext(value);
                        subscriber.onCompleted();
                    } else {
                        if (hasDefaultValue) {
                            subscriber.onNext(defaultValue);
                            subscriber.onCompleted();
                        } else {
                            subscriber.onError(new NoSuchElementException("Sequence contains no elements"));
                        }
                    }
                }
            }

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

        };
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy