blob: bb92b82fe7691b6f2d992d83cf6b736c0fb096f2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.vysper.xmpp.extension.websockets;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import org.apache.catalina.websocket.MessageInbound;
import org.apache.catalina.websocket.WsOutbound;
import org.apache.vysper.xmpp.protocol.StanzaProcessor;
import org.apache.vysper.xmpp.server.ServerRuntimeContext;
import org.apache.vysper.xmpp.server.SessionContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Specialized {@link SessionContext} for Jetty Websocket endpoints.
*
* @author The Apache MINA Project (dev@mina.apache.org)
*/
public class TomcatXmppWebSocket extends MessageInbound implements Outbound {
private final static Logger LOG = LoggerFactory.getLogger(TomcatXmppWebSocket.class);
private WebSocketBackedSessionContext sessionContext;
private WsOutbound outbound;
public TomcatXmppWebSocket(ServerRuntimeContext serverRuntimeContext, StanzaProcessor stanzaProcessor) {
this.sessionContext = new WebSocketBackedSessionContext(serverRuntimeContext, stanzaProcessor, this);
}
/**
* {@inheritDoc}
*/
public void onOpen(WsOutbound outbound) {
LOG.info("WebSocket client connected");
this.outbound = outbound;
sessionContext.onOpen();
}
@Override
protected void onBinaryMessage(ByteBuffer message) throws IOException {
throw new UnsupportedOperationException(
"Binary message not supported.");
}
@Override
protected void onTextMessage(CharBuffer message) throws IOException {
String data = message.toString();
LOG.info("< " + data);
sessionContext.onMessage(data);
}
/**
* {@inheritDoc}
*/
public void onClose(int closeCode, String message) {
LOG.info("WebSocket client disconnected with Code " + closeCode + " with " + message);
sessionContext.onClose();
}
public void write(String xml) throws IOException {
LOG.info("> " + xml);
CharBuffer buffer = CharBuffer.wrap(xml);
outbound.writeTextMessage(buffer);
}
}