Skip to content
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

Can't convert stream of byte arrays to seq of byte arrays #36

Open
aengelberg opened this issue Jun 3, 2018 · 1 comment
Open

Can't convert stream of byte arrays to seq of byte arrays #36

aengelberg opened this issue Jun 3, 2018 · 1 comment
Assignees

Comments

@aengelberg
Copy link

When I try to convert a stream of byte arrays to a seq of byte arrays, it just returns back the original stream without doing any conversion.

user=> (require '[manifold.stream :as ms])
user=> (require '[byte-streams :as bs])
user=> (def content (doto (ms/stream) (ms/put! (byte-array 5)) (ms/close!)))
#'user/content
user=> (bs/convert content (bs/seq-of bytes))  ; doesn't work
#<manifold.stream.default.Stream@942027b>
user=> (bs/convert content (bs/seq-of String)) ; also doesn't work
#<manifold.stream.default.Stream@942027b>
user=> (bs/convert content (bs/seq-of java.nio.ByteBuffer)) ; this works
(#<java.nio.HeapByteBuffer@5ff2cd23 java.nio.HeapByteBuffer[pos=0 lim=5 cap=5]>)
@KingMob
Copy link
Collaborator

KingMob commented Jan 16, 2021

First, given there's no conversion of the wrapped byte type, you should probably reach for Manifold's stream->seq fn instead of convert.

I think the docstring for convert could be a bit clearer on this, but it does mention that if the input is a stream, the stream contents must be specified.

What's missing in the docstring is the option key to accomplish this. FWIW, the option is :source-type, e.g., (convert content (seq-of bytes) {:source-type (stream-of bytes)}).

I also think returning the original input unchanged instead of throwing an IllegalArgumentException (like it says in the docstring) is a bug, but I need to make sure any fix doesn't break identity transformations. I'll have a PR soon.

@KingMob KingMob self-assigned this Feb 7, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants