com.aspectran.demo.monitoring.log.LogtailEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aspectran-demo Show documentation
Show all versions of aspectran-demo Show documentation
Aspectran module showcasing a demo application
/*
* Copyright (c) 2008-2025 The Aspectran Project
*
* 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 com.aspectran.demo.monitoring.log;
import com.aspectran.core.activity.InstantActivitySupport;
import com.aspectran.core.component.bean.annotation.AvoidAdvice;
import com.aspectran.core.component.bean.annotation.Component;
import com.aspectran.utils.StringUtils;
import com.aspectran.utils.annotation.jsr305.NonNull;
import com.aspectran.utils.logging.Logger;
import com.aspectran.utils.logging.LoggerFactory;
import com.aspectran.web.websocket.jsr356.AspectranConfigurator;
import jakarta.websocket.CloseReason;
import jakarta.websocket.OnClose;
import jakarta.websocket.OnError;
import jakarta.websocket.OnMessage;
import jakarta.websocket.OnOpen;
import jakarta.websocket.Session;
import jakarta.websocket.server.ServerEndpoint;
import java.io.IOException;
import java.io.UncheckedIOException;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
@Component
@ServerEndpoint(
value = "/monitoring/logtail",
configurator = AspectranConfigurator.class
)
@AvoidAdvice
public class LogtailEndpoint extends InstantActivitySupport {
private static final Logger logger = LoggerFactory.getLogger(LogtailEndpoint.class);
private static final String COMMAND_JOIN = "JOIN:";
private static final String COMMAND_LEAVE = "LEAVE";
private static final String HEARTBEAT_PING_MSG = "--ping--";
private static final String HEARTBEAT_PONG_MSG = "--pong--";
private static final Set sessions = Collections.synchronizedSet(new HashSet<>());
private LogTailerManager logTailerManager;
public void setLogTailerManager(LogTailerManager logTailerManager) {
this.logTailerManager = logTailerManager;
}
@OnOpen
public void onOpen(Session session) {
if (logger.isDebugEnabled()) {
logger.debug("WebSocket connection established with session: " + session.getId());
}
}
@OnMessage
public void onMessage(Session session, String message) {
if (HEARTBEAT_PING_MSG.equals(message)) {
session.getAsyncRemote().sendText(HEARTBEAT_PONG_MSG);
return;
}
if (message != null && message.startsWith(COMMAND_JOIN)) {
addSession(session, message);
} else if (COMMAND_LEAVE.equals(message)) {
removeSession(session);
}
}
@OnClose
public void onClose(Session session, CloseReason reason) {
if (logger.isDebugEnabled()) {
logger.debug("Websocket session " + session.getId() + " has been closed. Reason: " + reason);
}
removeSession(session);
}
@OnError
public void onError(@NonNull Session session, Throwable error) {
logger.error("Error in websocket session: " + session.getId(), error);
try {
removeSession(session);
session.close(new CloseReason(CloseReason.CloseCodes.UNEXPECTED_CONDITION, null));
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
protected void broadcast(String message) {
synchronized (sessions) {
for (Session session : sessions) {
if (session.isOpen()) {
session.getAsyncRemote().sendText(message);
}
}
}
}
private void addSession(Session session, String message) {
if (sessions.add(session)) {
String[] names = StringUtils.splitCommaDelimitedString(message.substring(COMMAND_JOIN.length()));
logTailerManager.join(session, names);
}
}
private void removeSession(Session session) {
if (sessions.remove(session)) {
logTailerManager.release(session);
}
}
Set getSessions() {
return sessions;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy