Reformat everything.

First prototype of runnign with untertow.
This commit is contained in:
Manuel Friedli 2023-04-02 10:15:22 +02:00
parent 682e0d0f25
commit 0bc1114aec
Signed by: manuel
GPG key ID: 41D08ABA75634DA1
8 changed files with 281 additions and 270 deletions

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" <settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/SETTINGS/1.1.0" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> xmlns="http://maven.apache.org/SETTINGS/1.1.0">
<servers> <servers>
<server> <server>
<id>repo.gittr.ch</id> <id>repo.gittr.ch</id>

View file

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
@ -67,7 +68,8 @@
<version>3.2.4</version> <version>3.2.4</version>
<configuration> <configuration>
<transformers> <transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>ch.fritteli.labyrinth.server.Main</mainClass> <mainClass>ch.fritteli.labyrinth.server.Main</mainClass>
</transformer> </transformer>
</transformers> </transformers>

View file

@ -119,15 +119,13 @@ public class LabyrinthServer {
} }
responseHeaders.add("Content-type", output.getContentType()); responseHeaders.add("Content-type", output.getContentType());
if (output.isAttachment()) { if (output.isAttachment()) {
responseHeaders.add( responseHeaders.add("Content-disposition", String.format(
"Content-disposition", "attachment; filename=\"labyrinth-%dx%d-%d.%s\"",
String.format("attachment; filename=\"labyrinth-%dx%d-%d.%s\"",
width, width,
height, height,
id, id,
output.getFileExtension() output.getFileExtension()
) ));
);
} }
exchange.sendResponseHeaders(200, 0); exchange.sendResponseHeaders(200, 0);
final OutputStream responseBody = exchange.getResponseBody(); final OutputStream responseBody = exchange.getResponseBody();
@ -254,7 +252,7 @@ public class LabyrinthServer {
} }
} }
private enum OutputType { public enum OutputType {
TEXT_PLAIN("text/plain; charset=UTF-8", TEXT_PLAIN("text/plain; charset=UTF-8",
labyrinth -> TextRenderer.newInstance().render(labyrinth).getBytes(StandardCharsets.UTF_8), labyrinth -> TextRenderer.newInstance().render(labyrinth).getBytes(StandardCharsets.UTF_8),
"txt", "txt",
@ -303,7 +301,7 @@ public class LabyrinthServer {
this.names = List.of(names); this.names = List.of(names);
} }
static Option<OutputType> ofString(@Nullable final String name) { public static Option<OutputType> ofString(@Nullable final String name) {
if (name == null) { if (name == null) {
return Option.none(); return Option.none();
} }
@ -316,7 +314,7 @@ public class LabyrinthServer {
return this.names.last(); return this.names.last();
} }
byte[] render(@NonNull final Labyrinth labyrinth) { public byte[] render(@NonNull final Labyrinth labyrinth) {
return this.render.apply(labyrinth); return this.render.apply(labyrinth);
} }
} }

View file

@ -10,7 +10,6 @@ import org.jetbrains.annotations.Nullable;
import java.net.InetAddress; import java.net.InetAddress;
@AllArgsConstructor(access = AccessLevel.PRIVATE) @AllArgsConstructor(access = AccessLevel.PRIVATE)
@Slf4j @Slf4j
@Value @Value
@ -18,8 +17,7 @@ public class ServerConfig {
public static final String SYSPROP_HOST = "fritteli.labyrinth.server.host"; public static final String SYSPROP_HOST = "fritteli.labyrinth.server.host";
public static final String SYSPROP_PORT = "fritteli.labyrinth.server.port"; public static final String SYSPROP_PORT = "fritteli.labyrinth.server.port";
@NonNull @NonNull InetAddress address;
InetAddress address;
int port; int port;
public ServerConfig(@Nullable final String address, final int port) throws ConfigurationException { public ServerConfig(@Nullable final String address, final int port) throws ConfigurationException {
@ -28,6 +26,19 @@ public class ServerConfig {
log.debug("host={}, port={}", this.address, this.port); log.debug("host={}, port={}", this.address, this.port);
} }
@NonNull
private static InetAddress validateAddress(@Nullable final String address) {
return Try.of(() -> InetAddress.getByName(address))
.getOrElseThrow(cause -> new ConfigurationException("Invalid hostname/address: " + address, cause));
}
private static int validatePort(final int port) {
if (port < 0 || port > 0xFFFF) {
throw new ConfigurationException("Port out of range (0..65535): " + port);
}
return port;
}
@NonNull @NonNull
public static ServerConfig init() throws ConfigurationException { public static ServerConfig init() throws ConfigurationException {
final String host = System.getProperty(SYSPROP_HOST); final String host = System.getProperty(SYSPROP_HOST);
@ -36,12 +47,6 @@ public class ServerConfig {
return new ServerConfig(host, port); return new ServerConfig(host, port);
} }
@NonNull
private static InetAddress validateAddress(@Nullable final String address) {
return Try.of(() -> InetAddress.getByName(address))
.getOrElseThrow(cause -> new ConfigurationException("Invalid hostname/address: " + address, cause));
}
private static int validatePort(@Nullable final String portString) { private static int validatePort(@Nullable final String portString) {
if (portString == null) { if (portString == null) {
log.info("No port configured; using default."); log.info("No port configured; using default.");
@ -49,13 +54,9 @@ public class ServerConfig {
} }
return Try.of(() -> Integer.valueOf(portString)) return Try.of(() -> Integer.valueOf(portString))
.map(ServerConfig::validatePort) .map(ServerConfig::validatePort)
.getOrElseThrow(cause -> new ConfigurationException("Failed to parse port specified in system property '" + SYSPROP_PORT + "': " + portString, cause)); .getOrElseThrow(cause -> new ConfigurationException(
} "Failed to parse port specified in system property '" + SYSPROP_PORT + "': " + portString,
cause
private static int validatePort(final int port) { ));
if (port < 0 || port > 0xFFFF) {
throw new ConfigurationException("Port out of range (0..65535): " + port);
}
return port;
} }
} }

View file

@ -24,43 +24,6 @@ public class StaticResourcesFileHandler implements HttpHandler {
log.debug("Created {}", this.getClass().getSimpleName()); log.debug("Created {}", this.getClass().getSimpleName());
} }
private static void redirect(@NonNull final HttpExchange exchange, @NonNull final String target) throws IOException {
log.debug("Sending redirect to {}", target);
exchange.getResponseHeaders().add("Location", target);
exchange.sendResponseHeaders(302, -1);
}
private static void notFound(@NonNull final HttpExchange exchange, @NonNull final String path) throws IOException {
log.debug("Resource '{}' not found, replying with HTTP 404", path);
exchange.getResponseHeaders().add("Content-type", "text/plain; charset=utf-8");
exchange.sendResponseHeaders(404, 0);
exchange.getResponseBody().write("404 - Not found".getBytes(StandardCharsets.UTF_8));
exchange.getResponseBody().flush();
}
@NonNull
private static byte[] getBytes(@NonNull final String path) throws IOException {
final InputStream stream = StaticResourcesFileHandler.class.getClassLoader().getResourceAsStream(WEBASSETS_DIRECTORY + path);
if (stream == null) {
log.debug("Resource '{}' not found in classpath.", path);
return new byte[0];
}
final byte[] response = IOUtils.toByteArray(stream);
log.debug("Sending reply; {} bytes", response.length);
return response;
}
@Nullable
private static String getMimeType(@NonNull final String path) {
if (path.endsWith(".html")) {
return "text/html";
}
if (path.endsWith(".css")) {
return "text/css";
}
return null;
}
@Override @Override
public void handle(@NonNull final HttpExchange exchange) throws IOException { public void handle(@NonNull final HttpExchange exchange) throws IOException {
this.executorService.submit(() -> { this.executorService.submit(() -> {
@ -86,7 +49,13 @@ public class StaticResourcesFileHandler implements HttpHandler {
notFound(exchange, path); notFound(exchange, path);
return; return;
} }
log.debug("Serving {}{} with mimetype {}: {} bytes", WEBASSETS_DIRECTORY, path, mimeType, responseBytes.length); log.debug(
"Serving {}{} with mimetype {}: {} bytes",
WEBASSETS_DIRECTORY,
path,
mimeType,
responseBytes.length
);
exchange.getResponseHeaders().add("Content-type", mimeType); exchange.getResponseHeaders().add("Content-type", mimeType);
exchange.sendResponseHeaders(200, 0); exchange.sendResponseHeaders(200, 0);
exchange.getResponseBody().write(responseBytes); exchange.getResponseBody().write(responseBytes);
@ -98,4 +67,43 @@ public class StaticResourcesFileHandler implements HttpHandler {
} }
}); });
} }
private static void redirect(@NonNull final HttpExchange exchange, @NonNull final String target) throws
IOException {
log.debug("Sending redirect to {}", target);
exchange.getResponseHeaders().add("Location", target);
exchange.sendResponseHeaders(302, -1);
}
private static void notFound(@NonNull final HttpExchange exchange, @NonNull final String path) throws IOException {
log.debug("Resource '{}' not found, replying with HTTP 404", path);
exchange.getResponseHeaders().add("Content-type", "text/plain; charset=utf-8");
exchange.sendResponseHeaders(404, 0);
exchange.getResponseBody().write("404 - Not found".getBytes(StandardCharsets.UTF_8));
exchange.getResponseBody().flush();
}
@Nullable
private static String getMimeType(@NonNull final String path) {
if (path.endsWith(".html")) {
return "text/html";
}
if (path.endsWith(".css")) {
return "text/css";
}
return null;
}
@NonNull
private static byte[] getBytes(@NonNull final String path) throws IOException {
final InputStream stream = StaticResourcesFileHandler.class.getClassLoader()
.getResourceAsStream(WEBASSETS_DIRECTORY + path);
if (stream == null) {
log.debug("Resource '{}' not found in classpath.", path);
return new byte[0];
}
final byte[] response = IOUtils.toByteArray(stream);
log.debug("Sending reply; {} bytes", response.length);
return response;
}
} }

View file

@ -1,5 +1,7 @@
package ch.fritteli.labyrinth.server.undertow_playground; package ch.fritteli.labyrinth.server.undertow_playground;
import ch.fritteli.labyrinth.generator.model.Labyrinth;
import ch.fritteli.labyrinth.server.LabyrinthServer;
import io.undertow.server.HttpHandler; import io.undertow.server.HttpHandler;
import io.undertow.server.HttpServerExchange; import io.undertow.server.HttpServerExchange;
import io.undertow.server.RoutingHandler; import io.undertow.server.RoutingHandler;
@ -10,13 +12,14 @@ import io.vavr.control.Option;
import lombok.NonNull; import lombok.NonNull;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import java.nio.ByteBuffer;
import java.util.Deque; import java.util.Deque;
import java.util.Map; import java.util.Map;
import java.util.Random;
@Slf4j @Slf4j
public class UndertowPlayground { public class UndertowPlayground {
public static final RoutingHandler r = new RoutingHandler() public static final RoutingHandler r = new RoutingHandler().get("/create/{output}", new HttpHandler() {
.get("/create/{output}", new HttpHandler() {
@Override @Override
public void handleRequest(HttpServerExchange exchange) throws Exception { public void handleRequest(HttpServerExchange exchange) throws Exception {
if (exchange.isInIoThread()) { if (exchange.isInIoThread()) {
@ -33,15 +36,19 @@ public class UndertowPlayground {
log.info("Width: {}", width); log.info("Width: {}", width);
log.info("Height: {}", height); log.info("Height: {}", height);
log.info("Id: {}", id); log.info("Id: {}", id);
exchange.getResponseSender().send( final Integer theId = id.getOrElse(() -> new Random().nextInt());
"Output: " + output + final Labyrinth labyrinth = new Labyrinth(width.get(), height.get(), theId);
", Width: " + width + final LabyrinthServer.OutputType outputType = output.flatMap(LabyrinthServer.OutputType::ofString).get();
", Height: " + height + final byte[] result = outputType.render(labyrinth);
", Id: " + id exchange.getResponseHeaders().put(Headers.CONTENT_TYPE, outputType.getContentType());
); exchange.getResponseHeaders().put(HttpString.tryFromString("X-Labyrinth-ID"), String.valueOf(theId));
exchange.getResponseHeaders()
.put(HttpString.tryFromString("X-Labyrinth-Width"), String.valueOf(width.get()));
exchange.getResponseHeaders()
.put(HttpString.tryFromString("X-Labyrinth-Height"), String.valueOf(height.get()));
exchange.getResponseSender().send(ByteBuffer.wrap(result));
} }
}) }).post("/render", new HttpHandler() {
.post("/render", new HttpHandler() {
@Override @Override
public void handleRequest(final HttpServerExchange exchange) { public void handleRequest(final HttpServerExchange exchange) {
if (exchange.isInIoThread()) { if (exchange.isInIoThread()) {
@ -50,29 +57,24 @@ public class UndertowPlayground {
} }
exchange.getResponseSender().send("TODO: read body, render stuff"); exchange.getResponseSender().send("TODO: read body, render stuff");
} }
}) }).setFallbackHandler(new HttpHandler() {
.setFallbackHandler(new HttpHandler() {
@Override @Override
public void handleRequest(HttpServerExchange exchange) throws Exception { public void handleRequest(HttpServerExchange exchange) throws Exception {
exchange.getResponseSender().send("Request: " + exchange.getRequestURI()); exchange.getResponseSender().send("Request: " + exchange.getRequestURI());
final HeaderValues strings = exchange.getRequestHeaders().get(Headers.ACCEPT); final HeaderValues strings = exchange.getRequestHeaders().get(Headers.ACCEPT);
strings.peekFirst(); strings.peekFirst();
} }
} });
);
@NonNull @NonNull
private static Option<String> getFirstOption(@NonNull final Map<String, Deque<String>> queryParams, @NonNull final String paramName) { private static Option<Integer> getIntOption(@NonNull final Map<String, Deque<String>> queryParams,
return Option.of(queryParams.get(paramName)) @NonNull final String paramName) {
.map(Deque::peek) return getFirstOption(queryParams, paramName).toTry().map(Integer::parseInt).toOption();
.flatMap(Option::of);
} }
@NonNull @NonNull
private static Option<Integer> getIntOption(@NonNull final Map<String, Deque<String>> queryParams, @NonNull final String paramName) { private static Option<String> getFirstOption(@NonNull final Map<String, Deque<String>> queryParams,
return getFirstOption(queryParams, paramName) @NonNull final String paramName) {
.toTry() return Option.of(queryParams.get(paramName)).map(Deque::peek).flatMap(Option::of);
.map(Integer::parseInt)
.toOption();
} }
} }

View file

@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Labyrinth Generator</title> <title>Labyrinth Generator</title>
<link rel="stylesheet" href="style.css"> <link href="style.css" rel="stylesheet">
</head> </head>
<body> <body>
<div class="content"> <div class="content">
@ -11,8 +11,8 @@
<p>Enter some values, click the "Create!" button and see what happens!</p> <p>Enter some values, click the "Create!" button and see what happens!</p>
<form action="/create" method="get"> <form action="/create" method="get">
<div class="inputs-wrapper"> <div class="inputs-wrapper">
<label for="width">Width:</label><input id="width" name="width" type="number" min="1" required> <label for="width">Width:</label><input id="width" min="1" name="width" required type="number">
<label for="height">Height:</label><input id="height" name="height" type="number" min="1" required> <label for="height">Height:</label><input id="height" min="1" name="height" required type="number">
<label for="output">Output format:</label> <label for="output">Output format:</label>
<select id="output" name="output" required> <select id="output" name="output" required>
<option label="HTML Document" value="html"></option> <option label="HTML Document" value="html"></option>
@ -24,7 +24,7 @@
<label for="id">Seed (optional):</label><input id="id" name="id" type="number"> <label for="id">Seed (optional):</label><input id="id" name="id" type="number">
</div> </div>
<div class="controls-wrapper"> <div class="controls-wrapper">
<button type="submit" class="primary">Create!</button> <button class="primary" type="submit">Create!</button>
<button type="reset">Reset form</button> <button type="reset">Reset form</button>
</div> </div>
</form> </form>