LoggingWebSocketHandlerDecorator.java 2.3 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41


/**
 * @author Rossen Stoyanchev
 * @since 4.0
 */
public class LoggingWebSocketHandlerDecorator extends WebSocketHandlerDecorator {

	private Log logger = LogFactory.getLog(LoggingWebSocketHandlerDecorator.class);


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


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

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

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

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

}