I assume that select() should unblock with undefined only when the selected channel is closed
However, it may unblock undefined even when the channel is not closed. This happens when read() runs after write(), before continuation of select():
import { channel, select } from '@thi.ng/csp'
void main()
async function main() {
const ch = channel<number>(1)
const s = select(ch)
queueMicrotask(async () => {
const x = await ch.read()
console.log('Did read', x)
})
ch.write(42)
const [v, _] = await s
console.log('Did select', v)
}
Expected output:
Did read 42
<select remains blocked>
Actual output:
Did read 42
Did select undefined
This requires write() to happen within the same call that schedules callback doing read(), so might never happen in real world code. Still, it might a tricky bug
One way to handle this is to do poll() after race(), and re-run the race if the selected channel is empty and not closed
Shameless plug: I've implemented similar library before finding the great @thi.ng, and decided to publish it anyway. Here's select implementation that handles the case
I assume that
select()should unblock withundefinedonly when the selected channel is closedHowever, it may unblock
undefinedeven when the channel is not closed. This happens whenread()runs afterwrite(), before continuation ofselect():Expected output:
Actual output:
This requires write() to happen within the same call that schedules callback doing
read(), so might never happen in real world code. Still, it might a tricky bugOne way to handle this is to do
poll()afterrace(), and re-run the race if the selected channel is empty and not closedShameless plug: I've implemented similar library before finding the great
@thi.ng, and decided to publish it anyway. Here's select implementation that handles the case