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

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

There is a newer version: 1.3.8
Show 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.HashMap;
import java.util.Map;

import rx.Observable.Operator;
import rx.Subscriber;
import rx.functions.Func0;
import rx.functions.Func1;

/**
 * Maps the elements of the source observable into a java.util.Map instance and
 * emits that once the source observable completes.
 * 
 * @see Issue #96
 */
public final class OperatorToMap implements Operator, T> {

    /**
     * The default map factory.
     */
    public static final class DefaultToMapFactory implements Func0> {
        @Override
        public Map call() {
            return new HashMap();
        }
    }


    private final Func1 keySelector;

    private final Func1 valueSelector;

    private final Func0> mapFactory;


    /**
     * ToMap with key selector, value selector and default HashMap factory.
     */
    public OperatorToMap(
            Func1 keySelector,
            Func1 valueSelector) {
        this(keySelector, valueSelector, new DefaultToMapFactory());
    }


    /**
     * ToMap with key selector, value selector and custom Map factory.
     */
    public OperatorToMap(
            Func1 keySelector,
            Func1 valueSelector,
            Func0> mapFactory) {
        this.keySelector = keySelector;
        this.valueSelector = valueSelector;
        this.mapFactory = mapFactory;

    }

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

            private Map map = mapFactory.call();

            @Override
            public void onStart() {
                request(Long.MAX_VALUE);
            }
            
            @Override
            public void onNext(T v) {
                K key = keySelector.call(v);
                V value = valueSelector.call(v);
                map.put(key, value);
            }

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

            @Override
            public void onCompleted() {
                Map map0 = map;
                map = null;
                subscriber.onNext(map0);
                subscriber.onCompleted();
            }
        };
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy