Merge branch 'feature/ws-client' into 'main'
Feature/ws-client See merge request cse1105/2025-2026/teams/csep-team-76!25
This commit is contained in:
commit
60efdc3a78
12 changed files with 244 additions and 2 deletions
|
|
@ -19,6 +19,8 @@ import client.scenes.FoodpalApplicationCtrl;
|
|||
import client.scenes.recipe.IngredientListCtrl;
|
||||
import client.scenes.recipe.RecipeStepListCtrl;
|
||||
import client.utils.LocaleManager;
|
||||
import client.utils.ServerUtils;
|
||||
import client.utils.WebSocketUtils;
|
||||
import com.google.inject.Binder;
|
||||
import com.google.inject.Module;
|
||||
import com.google.inject.Scopes;
|
||||
|
|
@ -33,6 +35,9 @@ public class MyModule implements Module {
|
|||
binder.bind(FoodpalApplicationCtrl.class).in(Scopes.SINGLETON);
|
||||
binder.bind(IngredientListCtrl.class).in(Scopes.SINGLETON);
|
||||
binder.bind(RecipeStepListCtrl.class).in(Scopes.SINGLETON);
|
||||
|
||||
binder.bind(LocaleManager.class).in(Scopes.SINGLETON);
|
||||
binder.bind(ServerUtils.class).in(Scopes.SINGLETON);
|
||||
binder.bind(WebSocketUtils.class).in(Scopes.SINGLETON);
|
||||
}
|
||||
}
|
||||
|
|
@ -13,10 +13,14 @@ import client.utils.DefaultRecipeFactory;
|
|||
import client.utils.LocaleAware;
|
||||
import client.utils.LocaleManager;
|
||||
import client.utils.ServerUtils;
|
||||
import client.utils.WebSocketUtils;
|
||||
|
||||
import commons.Recipe;
|
||||
|
||||
import commons.ws.Topics;
|
||||
import commons.ws.messages.Message;
|
||||
import jakarta.inject.Inject;
|
||||
import javafx.application.Platform;
|
||||
import javafx.event.ActionEvent;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.scene.control.Alert;
|
||||
|
|
@ -32,6 +36,7 @@ import javafx.scene.text.Font;
|
|||
|
||||
public class FoodpalApplicationCtrl implements LocaleAware {
|
||||
private final ServerUtils server;
|
||||
private final WebSocketUtils webSocketUtils;
|
||||
private final LocaleManager localeManager;
|
||||
private final IngredientListCtrl ingredientListCtrl;
|
||||
private final RecipeStepListCtrl stepListCtrl;
|
||||
|
|
@ -81,15 +86,42 @@ public class FoodpalApplicationCtrl implements LocaleAware {
|
|||
@Inject
|
||||
public FoodpalApplicationCtrl(
|
||||
ServerUtils server,
|
||||
WebSocketUtils webSocketUtils,
|
||||
LocaleManager localeManager,
|
||||
IngredientListCtrl ingredientListCtrl,
|
||||
RecipeStepListCtrl stepListCtrl
|
||||
) {
|
||||
this.server = server;
|
||||
this.webSocketUtils = webSocketUtils;
|
||||
this.localeManager = localeManager;
|
||||
this.ingredientListCtrl = ingredientListCtrl;
|
||||
this.stepListCtrl = stepListCtrl;
|
||||
|
||||
initializeWebSocket();
|
||||
}
|
||||
|
||||
private void initializeWebSocket() {
|
||||
webSocketUtils.connect(() -> {
|
||||
webSocketUtils.subscribe(Topics.RECIPES, (Message _) -> {
|
||||
Platform.runLater(() -> {
|
||||
Recipe selectedRecipe = recipeList.getSelectionModel().getSelectedItem();
|
||||
refresh(); // refresh the left list
|
||||
if (selectedRecipe == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
// select last selected recipe if it still exists, first otherwise (done by refresh())
|
||||
Recipe recipeInList = recipeList.getItems().stream()
|
||||
.filter(r -> r.getId().equals(selectedRecipe.getId()))
|
||||
.findFirst()
|
||||
.orElse(null);
|
||||
|
||||
showRecipeDetails(recipeInList);
|
||||
}); // runLater as it's on another non-FX thread.
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void initializeComponents() {
|
||||
// TODO Reduce code duplication??
|
||||
|
|
@ -146,6 +178,7 @@ public class FoodpalApplicationCtrl implements LocaleAware {
|
|||
|
||||
refresh();
|
||||
}
|
||||
|
||||
private void showName(String name) {
|
||||
final int NAME_FONT_SIZE = 20;
|
||||
editableTitleArea.getChildren().clear();
|
||||
|
|
@ -153,6 +186,7 @@ public class FoodpalApplicationCtrl implements LocaleAware {
|
|||
nameLabel.setFont(new Font("System Bold", NAME_FONT_SIZE));
|
||||
editableTitleArea.getChildren().add(nameLabel);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateText() {
|
||||
addRecipeButton.setText(getLocaleString("menu.button.add.recipe"));
|
||||
|
|
@ -206,11 +240,13 @@ public class FoodpalApplicationCtrl implements LocaleAware {
|
|||
}
|
||||
detailsScreen.visibleProperty().set(!recipes.isEmpty());
|
||||
}
|
||||
|
||||
private void printError(String msg) {
|
||||
Alert alert = new Alert(Alert.AlertType.ERROR);
|
||||
alert.setContentText(msg);
|
||||
alert.showAndWait();
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a recipe, by providing a default name "Untitled recipe (n)".
|
||||
* The UX flow is now:
|
||||
|
|
@ -283,7 +319,7 @@ public class FoodpalApplicationCtrl implements LocaleAware {
|
|||
try {
|
||||
server.updateRecipe(selected);
|
||||
refresh();
|
||||
recipeList.getSelectionModel().select(selected);
|
||||
//recipeList.getSelectionModel().select(selected);
|
||||
} catch (IOException | InterruptedException e) {
|
||||
// throw a nice blanket UpdateException
|
||||
throw new UpdateException("Error occurred when updating recipe name!");
|
||||
|
|
@ -294,7 +330,6 @@ public class FoodpalApplicationCtrl implements LocaleAware {
|
|||
edit.requestFocus();
|
||||
}
|
||||
|
||||
|
||||
// Language buttons
|
||||
@FXML
|
||||
private void switchLocale(ActionEvent event) {
|
||||
|
|
|
|||
111
client/src/main/java/client/utils/WebSocketUtils.java
Normal file
111
client/src/main/java/client/utils/WebSocketUtils.java
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
package client.utils;
|
||||
|
||||
import commons.ws.messages.Message;
|
||||
import org.springframework.messaging.converter.MappingJackson2MessageConverter;
|
||||
import org.springframework.messaging.simp.stomp.StompSession;
|
||||
import org.springframework.messaging.simp.stomp.StompHeaders;
|
||||
import org.springframework.messaging.simp.stomp.StompCommand;
|
||||
import org.springframework.messaging.simp.stomp.StompFrameHandler;
|
||||
import org.springframework.messaging.simp.stomp.StompSessionHandlerAdapter;
|
||||
import org.springframework.web.socket.client.standard.StandardWebSocketClient;
|
||||
import org.springframework.web.socket.messaging.WebSocketStompClient;
|
||||
|
||||
import java.lang.reflect.Type;
|
||||
import java.util.function.Consumer;
|
||||
import javax.annotation.Nullable;
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
|
||||
public class WebSocketUtils {
|
||||
private static final String WS_URL = "ws://localhost:8080/updates";
|
||||
private WebSocketStompClient stompClient;
|
||||
private StompSession stompSession;
|
||||
|
||||
/**
|
||||
* Connect to the websocket server.
|
||||
* @param onConnected OnConnected callback
|
||||
*/
|
||||
public void connect(@Nullable Runnable onConnected) {
|
||||
StandardWebSocketClient webSocketClient = new StandardWebSocketClient(); // Create WS Client
|
||||
|
||||
stompClient = new WebSocketStompClient(webSocketClient);
|
||||
stompClient.setMessageConverter(new MappingJackson2MessageConverter()); // Use jackson
|
||||
|
||||
CompletableFuture<StompSession> sessionFuture = stompClient.connectAsync(
|
||||
WS_URL,
|
||||
new StompSessionHandlerAdapter() {
|
||||
@Override
|
||||
public void afterConnected(StompSession session, StompHeaders connectedHeaders) {
|
||||
stompSession = session;
|
||||
System.out.println("WebSocket connected: " + session.getSessionId());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void handleException(StompSession session, @Nullable StompCommand command,
|
||||
StompHeaders headers, byte[] payload,
|
||||
Throwable exception) {
|
||||
System.err.println("STOMP error: " + exception.getMessage());
|
||||
exception.printStackTrace();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void handleTransportError(StompSession session, Throwable exception) {
|
||||
System.err.println("STOMP transport error: " + exception.getMessage());
|
||||
exception.printStackTrace();
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
sessionFuture.thenAccept(session -> {
|
||||
stompSession = session;
|
||||
System.out.println("Connection successful, session ready");
|
||||
if (onConnected != null) {
|
||||
onConnected.run();
|
||||
}
|
||||
}).exceptionally(throwable -> {
|
||||
System.err.println("Failed to connect: " + throwable.getMessage());
|
||||
throwable.printStackTrace();
|
||||
return null;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Subscribe to a topic.
|
||||
* @param destination Destination to subscribe to, for example: /subscribe/recipe
|
||||
* @param messageHandler Handler for received messages
|
||||
*/
|
||||
public void subscribe(String destination, Consumer<Message> messageHandler) {
|
||||
if (stompSession == null || !stompSession.isConnected()) {
|
||||
System.err.println("Cannot subscribe - not connected");
|
||||
return;
|
||||
}
|
||||
|
||||
stompSession.subscribe(destination, new StompFrameHandler() {
|
||||
@Override
|
||||
public Type getPayloadType(StompHeaders headers) {
|
||||
return Message.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void handleFrame(StompHeaders headers, @Nullable Object payload) {
|
||||
Message message = (Message) payload;
|
||||
messageHandler.accept(message);
|
||||
}
|
||||
});
|
||||
System.out.println("Subscribed to: " + destination);
|
||||
}
|
||||
|
||||
public void disconnect() {
|
||||
if (stompSession != null && stompSession.isConnected()) {
|
||||
stompSession.disconnect();
|
||||
}
|
||||
|
||||
if (stompClient != null) {
|
||||
stompClient.stop();
|
||||
}
|
||||
}
|
||||
|
||||
public boolean isConnected() {
|
||||
return stompSession != null && stompSession.isConnected();
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue