monix.reactive.internal.operators.GroupByOperator.scala Maven / Gradle / Ivy
/*
* Copyright (c) 2014-2016 by its authors. Some rights reserved.
* See the project homepage at: https://monix.io
*
* 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 monix.reactive.internal.operators
import monix.execution.Ack.{Stop, Continue}
import monix.execution.{Ack, Cancelable, Scheduler}
import monix.reactive.observables.{ObservableLike, GroupedObservable}
import ObservableLike.Operator
import monix.reactive.exceptions.CompositeException
import monix.reactive.observables.GroupedObservable
import monix.reactive.observers.{BufferedSubscriber, Subscriber}
import monix.reactive.{Observer, OverflowStrategy}
import monix.execution.atomic.Atomic
import scala.annotation.tailrec
import scala.concurrent.Future
import scala.util.control.NonFatal
private[reactive] final class GroupByOperator[A,K](
os: OverflowStrategy.Synchronous[GroupedObservable[K, A]],
keyFn: A => K)
extends Operator[A,GroupedObservable[K,A]] {
def apply(subscriber: Subscriber[GroupedObservable[K, A]]): Subscriber[A] =
new Subscriber[A] { self =>
implicit val scheduler: Scheduler = subscriber.scheduler
private[this] var isDone = false
private[this] val downstream = BufferedSubscriber(subscriber, os)
private[this] val cacheRef = Atomic(Map.empty[K, Observer[A]])
@tailrec
private[this] def recycleKey(key: K): Unit = {
val current = cacheRef.get
if (!cacheRef.compareAndSet(current, current - key))
recycleKey(key)
}
private def retryOnNext(elem: A): Future[Ack] =
onNext(elem)
@tailrec def onNext(elem: A): Future[Ack] =
if (isDone) Stop else {
val cache = cacheRef.get
var streamError = true
val result = try {
val key = keyFn(elem)
streamError = false
if (cache.contains(key)) {
// If downstream cancels, it only canceled the current group,
// so we should recreate the group. The call is concurrent with
// `recycleKey`, so we'll keep retrying until either the downstream
// returns `Continue` or the cache no longer has our key.
cache(key).onNext(elem).syncFlatMap {
case Continue => Continue
case Stop => retryOnNext(elem)
}
} else {
val onCancel = Cancelable(() => recycleKey(key))
val (observer, observable) =
GroupedObservable.broadcast[K,A](key, onCancel)
if (cacheRef.compareAndSet(cache, cache.updated(key, observer)))
downstream.onNext(observable).syncFlatMap {
case Continue =>
// pushing the first element
observer.onNext(elem).syncMap(_ => Continue)
case Stop =>
val errors = completeAll()
if (errors.nonEmpty)
self.onError(CompositeException(errors))
Stop
}
else
null // this will trigger a tailrec retry
}
} catch {
case NonFatal(ex) if streamError =>
self.onError(ex)
Stop
}
if (result == null)
onNext(elem)
else
result
}
private[this] def completeAll(): Seq[Throwable] = {
val cache = cacheRef.get
if (!cacheRef.compareAndSet(cache, Map.empty))
completeAll()
else
cache.values.foldLeft(Vector.empty[Throwable]) { (acc, o) =>
try {
o.onComplete()
acc
}
catch {
case NonFatal(ex) =>
acc :+ ex
}
}
}
def onError(ex: Throwable): Unit = {
if (!isDone) {
isDone = true
val errors = completeAll()
if (errors.nonEmpty)
downstream.onError(CompositeException(ex +: errors))
else
downstream.onError(ex)
}
}
def onComplete(): Unit = {
if (!isDone) {
isDone = true
val errors = completeAll()
if (errors.nonEmpty)
downstream.onError(CompositeException(errors))
else
downstream.onComplete()
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy