LoggingWebSocketHandlerDecorator.java 2.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Copyright 2002-2013 the original author or authors.
 *
 * 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.
 */

R
Rossen Stoyanchev 已提交
17
package org.springframework.web.socket.support;
18 19 20

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
R
Rossen Stoyanchev 已提交
21 22 23 24
import org.springframework.web.socket.CloseStatus;
import org.springframework.web.socket.WebSocketHandler;
import org.springframework.web.socket.WebSocketMessage;
import org.springframework.web.socket.WebSocketSession;
25 26

/**
R
Rossen Stoyanchev 已提交
27 28
 * A {@link WebSocketHandlerDecorator} that adds logging to WebSocket lifecycle events.
 *
29 30 31 32 33
 * @author Rossen Stoyanchev
 * @since 4.0
 */
public class LoggingWebSocketHandlerDecorator extends WebSocketHandlerDecorator {

P
Phillip Webb 已提交
34
	private final Log logger = LogFactory.getLog(LoggingWebSocketHandlerDecorator.class);
35 36 37 38 39 40 41 42


	public LoggingWebSocketHandlerDecorator(WebSocketHandler delegate) {
		super(delegate);
	}


	@Override
R
Rossen Stoyanchev 已提交
43
	public void afterConnectionEstablished(WebSocketSession session) throws Exception {
44
		if (logger.isDebugEnabled()) {
45
			logger.debug("Connection established, "	+ session + ", uri=" + session.getUri());
46 47 48 49 50
		}
		super.afterConnectionEstablished(session);
	}

	@Override
R
Rossen Stoyanchev 已提交
51
	public void handleMessage(WebSocketSession session, WebSocketMessage<?> message) throws Exception {
52
		if (logger.isDebugEnabled()) {
53
			logger.debug(message + ", " + session);
54 55 56 57 58
		}
		super.handleMessage(session, message);
	}

	@Override
R
Rossen Stoyanchev 已提交
59
	public void handleTransportError(WebSocketSession session, Throwable exception) throws Exception {
60
		if (logger.isDebugEnabled()) {
61 62 63
			logger.debug("Transport error for " + session + ": " + exception);
		}
		else if (logger.isTraceEnabled()) {
64 65 66 67 68 69
			logger.debug("Transport error for " + session, exception);
		}
		super.handleTransportError(session, exception);
	}

	@Override
R
Rossen Stoyanchev 已提交
70
	public void afterConnectionClosed(WebSocketSession session, CloseStatus closeStatus) throws Exception {
71 72 73 74 75 76 77
		if (logger.isDebugEnabled()) {
			logger.debug("Connection closed for " + session + ", " + closeStatus);
		}
		super.afterConnectionClosed(session, closeStatus);
	}

}