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

rx.internal.operators.OperatorZip 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.concurrent.atomic.AtomicLong;

import rx.*;
import rx.Observable.Operator;
import rx.exceptions.*;
import rx.functions.*;
import rx.internal.util.RxRingBuffer;
import rx.subscriptions.CompositeSubscription;

/**
 * Returns an Observable that emits the results of a function applied to sets of items emitted, in
 * sequence, by two or more other Observables.
 * 

* *

* The zip operation applies this function in strict sequence, so the first item emitted by the new * Observable will be the result of the function applied to the first item emitted by each zipped * Observable; the second item emitted by the new Observable will be the result of the function * applied to the second item emitted by each zipped Observable; and so forth. *

* The resulting Observable returned from zip will invoke onNext as many times as the * number of onNext invocations of the source Observable that emits the fewest items. * * @param * the result type */ public final class OperatorZip implements Operator[]> { /* * Raw types are used so we can use a single implementation for all arities such as zip(t1, t2) and zip(t1, t2, t3) etc. * The types will be cast on the edges so usage will be the type-safe but the internals are not. */ final FuncN zipFunction; public OperatorZip(FuncN f) { this.zipFunction = f; } @SuppressWarnings({ "unchecked", "rawtypes" }) public OperatorZip(Func2 f) { this.zipFunction = Functions.fromFunc(f); } @SuppressWarnings({ "unchecked", "rawtypes" }) public OperatorZip(Func3 f) { this.zipFunction = Functions.fromFunc(f); } @SuppressWarnings({ "unchecked", "rawtypes" }) public OperatorZip(Func4 f) { this.zipFunction = Functions.fromFunc(f); } @SuppressWarnings({ "unchecked", "rawtypes" }) public OperatorZip(Func5 f) { this.zipFunction = Functions.fromFunc(f); } @SuppressWarnings({ "unchecked", "rawtypes" }) public OperatorZip(Func6 f) { this.zipFunction = Functions.fromFunc(f); } @SuppressWarnings({ "unchecked", "rawtypes" }) public OperatorZip(Func7 f) { this.zipFunction = Functions.fromFunc(f); } @SuppressWarnings({ "unchecked", "rawtypes" }) public OperatorZip(Func8 f) { this.zipFunction = Functions.fromFunc(f); } @SuppressWarnings({ "unchecked", "rawtypes" }) public OperatorZip(Func9 f) { this.zipFunction = Functions.fromFunc(f); } @SuppressWarnings("rawtypes") @Override public Subscriber call(final Subscriber child) { final Zip zipper = new Zip(child, zipFunction); final ZipProducer producer = new ZipProducer(zipper); final ZipSubscriber subscriber = new ZipSubscriber(child, zipper, producer); child.add(subscriber); child.setProducer(producer); return subscriber; } @SuppressWarnings("rawtypes") final class ZipSubscriber extends Subscriber { final Subscriber child; final Zip zipper; final ZipProducer producer; boolean started; public ZipSubscriber(Subscriber child, Zip zipper, ZipProducer producer) { this.child = child; this.zipper = zipper; this.producer = producer; } @Override public void onCompleted() { if (!started) { // this means we have not received a valid onNext before termination so we emit the onCompleted child.onCompleted(); } } @Override public void onError(Throwable e) { child.onError(e); } @Override public void onNext(Observable[] observables) { if (observables == null || observables.length == 0) { child.onCompleted(); } else { started = true; zipper.start(observables, producer); } } } static final class ZipProducer extends AtomicLong implements Producer { /** */ private static final long serialVersionUID = -1216676403723546796L; final Zip zipper; public ZipProducer(Zip zipper) { this.zipper = zipper; } @Override public void request(long n) { BackpressureUtils.getAndAddRequest(this, n); // try and claim emission if no other threads are doing so zipper.tick(); } } static final class Zip extends AtomicLong { /** */ private static final long serialVersionUID = 5995274816189928317L; final Observer child; private final FuncN zipFunction; private final CompositeSubscription childSubscription = new CompositeSubscription(); static final int THRESHOLD = (int) (RxRingBuffer.SIZE * 0.7); int emitted; // not volatile/synchronized as accessed inside COUNTER_UPDATER block /* initialized when started in `start` */ private volatile Object[] subscribers; private AtomicLong requested; public Zip(final Subscriber child, FuncN zipFunction) { this.child = child; this.zipFunction = zipFunction; child.add(childSubscription); } @SuppressWarnings("unchecked") public void start(@SuppressWarnings("rawtypes") Observable[] os, AtomicLong requested) { final Object[] subscribers = new Object[os.length]; for (int i = 0; i < os.length; i++) { InnerSubscriber io = new InnerSubscriber(); subscribers[i] = io; childSubscription.add(io); } this.requested = requested; this.subscribers = subscribers; // full memory barrier: release all above for (int i = 0; i < os.length; i++) { os[i].unsafeSubscribe((InnerSubscriber) subscribers[i]); } } /** * check if we have values for each and emit if we do * * This will only allow one thread at a time to do the work, but ensures via `counter` increment/decrement * that there is always once who acts on each `tick`. Same concept as used in OperationObserveOn. * */ @SuppressWarnings("unchecked") void tick() { final Object[] subscribers = this.subscribers; if (subscribers == null) { // nothing yet to do (initial request from Producer) return; } if (getAndIncrement() == 0) { final int length = subscribers.length; final Observer child = this.child; final AtomicLong requested = this.requested; do { while (true) { // peek for a potential onCompleted event final Object[] vs = new Object[length]; boolean allHaveValues = true; for (int i = 0; i < length; i++) { RxRingBuffer buffer = ((InnerSubscriber) subscribers[i]).items; Object n = buffer.peek(); if (n == null) { allHaveValues = false; continue; } if (buffer.isCompleted(n)) { child.onCompleted(); // we need to unsubscribe from all children since children are // independently subscribed childSubscription.unsubscribe(); return; } else { vs[i] = buffer.getValue(n); } } // we only emit if requested > 0 and have all values available if (allHaveValues && requested.get() > 0) { try { // all have something so emit child.onNext(zipFunction.call(vs)); // we emitted so decrement the requested counter requested.decrementAndGet(); emitted++; } catch (Throwable e) { Exceptions.throwOrReport(e, child, vs); return; } // now remove them for (Object obj : subscribers) { RxRingBuffer buffer = ((InnerSubscriber) obj).items; buffer.poll(); // eagerly check if the next item on this queue is an onComplete if (buffer.isCompleted(buffer.peek())) { // it is an onComplete so shut down child.onCompleted(); // we need to unsubscribe from all children since children are independently subscribed childSubscription.unsubscribe(); return; } } if (emitted > THRESHOLD) { for (Object obj : subscribers) { ((InnerSubscriber) obj).requestMore(emitted); } emitted = 0; } } else { break; } } } while (decrementAndGet() > 0); } } // used to observe each Observable we are zipping together // it collects all items in an internal queue @SuppressWarnings("rawtypes") final class InnerSubscriber extends Subscriber { // Concurrent* since we need to read it from across threads final RxRingBuffer items = RxRingBuffer.getSpmcInstance(); @Override public void onStart() { request(RxRingBuffer.SIZE); } public void requestMore(long n) { request(n); } @Override public void onCompleted() { items.onCompleted(); tick(); } @Override public void onError(Throwable e) { // emit error immediately and shut down child.onError(e); } @Override public void onNext(Object t) { try { items.onNext(t); } catch (MissingBackpressureException e) { onError(e); } tick(); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy