
io.datakernel.csp.net.MessagingWithBinaryStreaming Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datakernel-csp Show documentation
Show all versions of datakernel-csp Show documentation
Communicating sequential process via channels, similar to Golang's channels.
A channel could be imagine as a pipe which connects some processes.
The newest version!
/*
* Copyright (C) 2015-2018 SoftIndex LLC.
*
* 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 io.datakernel.csp.net;
import io.datakernel.bytebuf.ByteBuf;
import io.datakernel.bytebuf.ByteBufQueue;
import io.datakernel.csp.ChannelConsumer;
import io.datakernel.csp.ChannelSupplier;
import io.datakernel.csp.ChannelSuppliers;
import io.datakernel.csp.binary.BinaryChannelSupplier;
import io.datakernel.csp.binary.ByteBufSerializer;
import io.datakernel.net.AsyncTcpSocket;
import io.datakernel.promise.Promise;
import org.jetbrains.annotations.NotNull;
import static io.datakernel.csp.binary.BinaryChannelSupplier.UNEXPECTED_END_OF_STREAM_EXCEPTION;
/**
* Represents a simple binary protocol over for communication a TCP connection.
*/
public final class MessagingWithBinaryStreaming implements Messaging {
private final AsyncTcpSocket socket;
private final ByteBufSerializer serializer;
private final ByteBufQueue bufs = new ByteBufQueue();
private final BinaryChannelSupplier bufsSupplier;
private Throwable closedException;
private boolean readDone;
private boolean writeDone;
// region creators
private MessagingWithBinaryStreaming(AsyncTcpSocket socket, ByteBufSerializer serializer) {
this.socket = socket;
this.serializer = serializer;
this.bufsSupplier = BinaryChannelSupplier.ofProvidedQueue(bufs,
() -> this.socket.read()
.then(buf -> {
if (buf != null) {
bufs.add(buf);
return Promise.complete();
} else {
return Promise.ofException(UNEXPECTED_END_OF_STREAM_EXCEPTION);
}
})
.whenException(this::close),
Promise::complete,
this);
}
public static MessagingWithBinaryStreaming create(AsyncTcpSocket socket,
ByteBufSerializer serializer) {
MessagingWithBinaryStreaming messaging = new MessagingWithBinaryStreaming<>(socket, serializer);
messaging.prefetch();
return messaging;
}
// endregion
private void prefetch() {
if (bufs.isEmpty()) {
socket.read()
.whenResult(buf -> {
if (buf != null) {
bufs.add(buf);
} else {
readDone = true;
closeIfDone();
}
})
.whenException(this::close);
}
}
@Override
public Promise receive() {
return bufsSupplier.parse(serializer)
.whenResult($ -> prefetch())
.whenException(this::close);
}
@Override
public Promise send(O msg) {
return socket.write(serializer.serialize(msg));
}
@Override
public Promise sendEndOfStream() {
return socket.write(null)
.whenResult($ -> {
writeDone = true;
closeIfDone();
})
.whenException(this::close);
}
@Override
public ChannelConsumer sendBinaryStream() {
return ChannelConsumer.ofSocket(socket)
.withAcknowledgement(ack -> ack
.whenResult($ -> {
writeDone = true;
closeIfDone();
}));
}
@Override
public ChannelSupplier receiveBinaryStream() {
return ChannelSuppliers.concat(ChannelSupplier.ofIterator(bufs.asIterator()), ChannelSupplier.ofSocket(socket))
.withEndOfStream(eos -> eos
.whenResult($ -> {
readDone = true;
closeIfDone();
}));
}
@Override
public void close(@NotNull Throwable e) {
if (isClosed()) return;
closedException = e;
socket.close(e);
bufs.recycle();
}
private void closeIfDone() {
if (readDone && writeDone) {
close();
}
}
public boolean isClosed() {
return closedException != null;
}
@Override
public String toString() {
return "MessagingWithBinaryStreaming{socket=" + socket + "}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy