package io.vertx.ext.stomp.impl;
import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.Vertx;
import io.vertx.core.http.ServerWebSocket;
import io.vertx.core.logging.Logger;
import io.vertx.core.logging.LoggerFactory;
import io.vertx.core.net.NetServer;
import io.vertx.ext.stomp.*;
import java.util.Objects;
public class StompServerImpl implements StompServer {
private static final Logger LOGGER = LoggerFactory.getLogger(StompServerImpl.class);
private final Vertx vertx;
private final StompServerOptions options;
private final NetServer server;
private StompServerHandler handler;
private volatile boolean listening;
private Handler<ServerFrame> writingFrameHandler;
public StompServerImpl(Vertx vertx, NetServer net, StompServerOptions options) {
Objects.requireNonNull(vertx);
Objects.requireNonNull(options);
this.options = options;
this.vertx = vertx;
if (net == null) {
server = vertx.createNetServer(options);
} else {
server = net;
}
}
@Override
public synchronized StompServer handler(StompServerHandler handler) {
Objects.requireNonNull(handler);
this.handler = handler;
return this;
}
@Override
public StompServer listen() {
return listen(null);
}
@Override
public StompServer listen(Handler<AsyncResult<StompServer>> handler) {
return listen(options.getPort(), options.getHost(), handler);
}
@Override
public StompServer listen(int port) {
return listen(port, StompServerOptions.DEFAULT_STOMP_HOST);
}
@Override
public StompServer listen(int port, String host) {
return listen(port, host, null);
}
@Override
public StompServer listen(int port, Handler<AsyncResult<StompServer>> handler) {
return listen(port, StompServerOptions.DEFAULT_STOMP_HOST, handler);
}
@Override
public StompServer listen(int port, String host, Handler<AsyncResult<StompServer>> handler) {
if (port == -1) {
handler.handle(Future.failedFuture("TCP server disabled. The port is set to '-1'."));
return this;
}
StompServerHandler stomp;
synchronized (this) {
stomp = this.handler;
}
Objects.requireNonNull(stomp, "Cannot open STOMP server - no StompServerConnectionHandler attached to the " +
"server.");
server
.connectHandler(socket -> {
StompServerConnection connection = new StompServerTCPConnectionImpl(socket, this, writingFrameHandler);
FrameParser parser = new FrameParser(options);
socket.exceptionHandler((exception) -> {
LOGGER.error("The STOMP server caught a TCP socket error - closing connection", exception);
connection.close();
});
socket.endHandler(v -> connection.close());
parser
.errorHandler((exception) -> {
connection.write(
Frames.createInvalidFrameErrorFrame(exception));
connection.close();
}
)
.handler(frame -> stomp.handle(new ServerFrameImpl(frame, connection)));
socket.handler(parser);
})
.listen(port, host, ar -> {
if (ar.failed()) {
if (handler != null) {
vertx.runOnContext(v -> handler.handle(Future.failedFuture(ar.cause())));
} else {
LOGGER.error(ar.cause());
}
} else {
listening = true;
LOGGER.info("STOMP server listening on " + ar.result().actualPort());
if (handler != null) {
vertx.runOnContext(v -> handler.handle(Future.succeededFuture(this)));
}
}
});
return this;
}
@Override
public void close() {
close(null);
}
@Override
public boolean isListening() {
return listening;
}
@Override
public int actualPort() {
return server.actualPort();
}
@Override
public StompServerOptions options() {
return options;
}
@Override
public Vertx vertx() {
return vertx;
}
@Override
public synchronized StompServerHandler stompHandler() {
return handler;
}
@Override
public void close(Handler<AsyncResult<Void>> done) {
if (!listening) {
if (done != null) {
vertx.runOnContext((v) -> done.handle(Future.succeededFuture()));
}
return;
}
Handler<AsyncResult<Void>> listener = (v) -> {
if (v.succeeded()) {
LOGGER.info("STOMP Server stopped");
} else {
LOGGER.info("STOMP Server failed to stop", v.cause());
}
listening = false;
if (done != null) {
done.handle(v);
}
};
server.close(listener);
}
@Override
public Handler<ServerWebSocket> webSocketHandler() {
if (!options.isWebsocketBridge()) {
return null;
}
StompServerHandler stomp;
synchronized (this) {
stomp = this.handler;
}
return socket -> {
if (!socket.path().equals(options.getWebsocketPath())) {
LOGGER.error("Receiving a web socket connection on an invalid path (" + socket.path() + "), the path is " +
"configured to " + options.getWebsocketPath() + ". Rejecting connection");
socket.reject();
return;
}
StompServerConnection connection = new StompServerWebSocketConnectionImpl(socket, this, writingFrameHandler);
FrameParser parser = new FrameParser(options);
socket.exceptionHandler((exception) -> {
LOGGER.error("The STOMP server caught a WebSocket error - closing connection", exception);
connection.close();
});
socket.endHandler(v -> connection.close());
parser
.errorHandler((exception) -> {
connection.write(
Frames.createInvalidFrameErrorFrame(exception));
connection.close();
}
)
.handler(frame -> stomp.handle(new ServerFrameImpl(frame, connection)));
socket.handler(parser);
};
}
@Override
public StompServer writingFrameHandler(Handler<ServerFrame> handler) {
synchronized (this) {
this.writingFrameHandler = handler;
}
return this;
}
}