-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reactive-stream/Flow Interop #896
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,5 @@ jmh-result.json | |
*.jfr | ||
*.json | ||
*.gpg | ||
test-output | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
kyo-reactive-streams/shared/src/main/scala/kyo/interop/flow/StreamPublisher.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
package kyo.interop.flow | ||
|
||
import java.util.concurrent.Flow.* | ||
import kyo.* | ||
import kyo.interop.flow.StreamSubscription.StreamFinishState | ||
import kyo.kernel.Boundary | ||
import scala.annotation.nowarn | ||
|
||
abstract private[kyo] class StreamPublisher[V, Ctx]( | ||
stream: Stream[V, Ctx] | ||
) extends Publisher[V]: | ||
|
||
protected def bind(subscriber: Subscriber[? >: V]): Unit | ||
|
||
override def subscribe(subscriber: Subscriber[? >: V]): Unit = | ||
if isNull(subscriber) then | ||
throw new NullPointerException("Subscriber must not be null.") | ||
else | ||
bind(subscriber) | ||
end subscribe | ||
|
||
end StreamPublisher | ||
|
||
object StreamPublisher: | ||
|
||
def apply[V, Ctx]( | ||
stream: Stream[V, Ctx], | ||
capacity: Int = Int.MaxValue | ||
)( | ||
using | ||
Boundary[Ctx, IO], | ||
Frame, | ||
Tag[Emit[Chunk[V]]], | ||
Tag[Poll[Chunk[V]]] | ||
): StreamPublisher[V, Ctx] < (Resource & IO & Ctx) = | ||
def discardSubscriber(subscriber: Subscriber[? >: V]): Unit = | ||
subscriber.onSubscribe(new Subscription: | ||
override def request(n: Long): Unit = () | ||
override def cancel(): Unit = () | ||
) | ||
subscriber.onComplete() | ||
end discardSubscriber | ||
|
||
def consumeChannel( | ||
channel: Channel[Subscriber[? >: V]], | ||
supervisor: Fiber.Promise[Nothing, Unit] | ||
): Unit < (Async & Ctx) = | ||
Abort.recover[Closed](_ => supervisor.interrupt.unit)( | ||
channel.stream().runForeach: subscriber => | ||
for | ||
subscription <- IO.Unsafe(new StreamSubscription[V, Ctx](stream, subscriber)) | ||
fiber <- subscription.subscribe.andThen(subscription.consume) | ||
_ <- supervisor.onInterrupt(_ => fiber.interrupt(Result.Panic(Interrupt())).unit) | ||
yield () | ||
) | ||
|
||
for | ||
channel <- | ||
Resource.acquireRelease(Channel.init[Subscriber[? >: V]](capacity))( | ||
_.close.map(_.foreach(_.foreach(discardSubscriber(_)))) | ||
) | ||
publisher <- IO.Unsafe { | ||
new StreamPublisher[V, Ctx](stream): | ||
override protected def bind( | ||
subscriber: Subscriber[? >: V] | ||
): Unit = | ||
channel.unsafe.offer(subscriber) match | ||
case Result.Success(true) => () | ||
case _ => discardSubscriber(subscriber) | ||
} | ||
supervisor <- Resource.acquireRelease(Fiber.Promise.init[Nothing, Unit])(_.interrupt.unit) | ||
_ <- Resource.acquireRelease(Async._run(consumeChannel(channel, supervisor)))(_.interrupt.unit) | ||
yield publisher | ||
end for | ||
end apply | ||
|
||
object Unsafe: | ||
@nowarn("msg=anonymous") | ||
inline def apply[V, Ctx]( | ||
stream: Stream[V, Ctx], | ||
subscribeCallback: (Fiber[Nothing, StreamFinishState] < (IO & Ctx)) => Unit | ||
)( | ||
using | ||
AllowUnsafe, | ||
Frame, | ||
Tag[Emit[Chunk[V]]], | ||
Tag[Poll[Chunk[V]]] | ||
): StreamPublisher[V, Ctx] = | ||
new StreamPublisher[V, Ctx](stream): | ||
override protected def bind( | ||
subscriber: Subscriber[? >: V] | ||
): Unit = | ||
discard(StreamSubscription.Unsafe._subscribe( | ||
stream, | ||
subscriber | ||
)( | ||
subscribeCallback | ||
)) | ||
end Unsafe | ||
end StreamPublisher |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this required to reuse the tck tests? Would it be possible to use scalatest like the other modules?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'll need to reimplement those tests in scalatest though.