blob: 3d07c3b1cc627df50ab183011159bd76b017c78f [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.mina;
import java.io.IOException;
import org.apache.mina.core.service.IoHandler;
import org.apache.mina.core.session.IdleStatus;
import org.apache.mina.core.session.IoSession;
import org.apache.mina.core.write.WriteToClosedSessionException;
import org.apache.mina.filter.ssl.SslFilter;
import org.apache.vysper.xml.fragment.XMLText;
import org.apache.vysper.xmpp.protocol.SessionStateHolder;
import org.apache.vysper.xmpp.protocol.StreamErrorCondition;
import org.apache.vysper.xmpp.server.ServerRuntimeContext;
import org.apache.vysper.xmpp.server.SessionContext;
import org.apache.vysper.xmpp.server.SessionContext.SessionTerminationCause;
import org.apache.vysper.xmpp.server.response.ServerErrorResponses;
import org.apache.vysper.xmpp.stanza.Stanza;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.xml.sax.SAXParseException;
/**
* handler for client-to-server sessions
* @author The Apache MINA Project (dev@mina.apache.org)
*/
public class XmppIoHandlerAdapter implements IoHandler {
public static final String ATTRIBUTE_VYSPER_SESSION = "vysperSession";
public static final String ATTRIBUTE_VYSPER_SESSIONSTATEHOLDER = "vysperSessionStateHolder";
public static final String ATTRIBUTE_VYSPER_TERMINATE_REASON = "vysperTerminateReason";
final Logger logger = LoggerFactory.getLogger(XmppIoHandlerAdapter.class);
private ServerRuntimeContext serverRuntimeContext;
public void setServerRuntimeContext(ServerRuntimeContext serverRuntimeContext) {
this.serverRuntimeContext = serverRuntimeContext;
}
public void messageReceived(IoSession ioSession, Object message) throws Exception {
if (!(message instanceof Stanza)) {
if (message instanceof XMLText) {
String text = ((XMLText) message).getText();
// tolerate reasonable amount of whitespaces for stanza separation
if (text.length() < 40 && text.trim().length() == 0)
return;
}
messageReceivedNoStanza(ioSession, message);
return;
}
Stanza stanza = (Stanza) message;
SessionContext session = extractSession(ioSession);
SessionStateHolder stateHolder = (SessionStateHolder) ioSession
.getAttribute(ATTRIBUTE_VYSPER_SESSIONSTATEHOLDER);
serverRuntimeContext.getStanzaProcessor().processStanza(serverRuntimeContext, session, stanza, stateHolder);
}
private void messageReceivedNoStanza(IoSession ioSession, Object message) {
if (message == SslFilter.SESSION_SECURED) {
SessionContext session = extractSession(ioSession);
SessionStateHolder stateHolder = (SessionStateHolder) ioSession
.getAttribute(ATTRIBUTE_VYSPER_SESSIONSTATEHOLDER);
serverRuntimeContext.getStanzaProcessor().processTLSEstablished(session, stateHolder);
return;
} else if (message == SslFilter.SESSION_UNSECURED) {
// TODO
return;
// throw new IllegalStateException("server must close session!");
}
throw new IllegalArgumentException("xmpp handler only accepts Stanza-typed messages, but received type "
+ message.getClass());
}
private SessionContext extractSession(IoSession ioSession) {
return (SessionContext) ioSession.getAttribute(ATTRIBUTE_VYSPER_SESSION);
}
public void messageSent(IoSession ioSession, Object o) throws Exception {
// TODO implement
}
@Override
public void inputClosed(IoSession ioSession) throws Exception {
ioSession.closeNow();
}
public void sessionCreated(IoSession ioSession) throws Exception {
SessionStateHolder stateHolder = new SessionStateHolder();
SessionContext sessionContext = new MinaBackedSessionContext(serverRuntimeContext, stateHolder, ioSession);
ioSession.setAttribute(ATTRIBUTE_VYSPER_SESSION, sessionContext);
ioSession.setAttribute(ATTRIBUTE_VYSPER_SESSIONSTATEHOLDER, stateHolder);
ioSession.setAttribute(ATTRIBUTE_VYSPER_TERMINATE_REASON, SessionTerminationCause.CLIENT_BYEBYE);
}
public void sessionOpened(IoSession ioSession) throws Exception {
logger.info("new session from {} has been opened", ioSession.getRemoteAddress());
}
public void sessionClosed(IoSession ioSession) throws Exception {
SessionContext sessionContext = extractSession(ioSession);
SessionTerminationCause cause = (SessionTerminationCause) ioSession.getAttribute(ATTRIBUTE_VYSPER_TERMINATE_REASON);
String sessionId = "UNKNOWN";
if (sessionContext != null) {
sessionId = sessionContext.getSessionId();
sessionContext.endSession(cause);
}
logger.info("session {} has been closed", sessionId);
}
public void sessionIdle(IoSession ioSession, IdleStatus idleStatus) throws Exception {
logger.debug("session {} is idle", ((SessionContext) ioSession.getAttribute(ATTRIBUTE_VYSPER_SESSION))
.getSessionId());
}
public void exceptionCaught(IoSession ioSession, Throwable throwable) throws Exception {
SessionContext sessionContext = extractSession(ioSession);
// Assume that the connection was aborted for now. Might be different depending on
// cause of exception determined below.
ioSession.setAttribute(ATTRIBUTE_VYSPER_TERMINATE_REASON, SessionTerminationCause.CONNECTION_ABORT);
Stanza errorStanza;
if(throwable.getCause() != null && throwable.getCause() instanceof SAXParseException) {
logger.info("Client sent not well-formed XML, closing session", throwable);
errorStanza = ServerErrorResponses.getStreamError(StreamErrorCondition.XML_NOT_WELL_FORMED,
sessionContext.getXMLLang(), "Stanza not well-formed", null);
ioSession.setAttribute(ATTRIBUTE_VYSPER_TERMINATE_REASON, SessionTerminationCause.STREAM_ERROR);
} else if(throwable instanceof WriteToClosedSessionException) {
// ignore
return;
} else if(throwable instanceof IOException) {
logger.info("error caught on transportation layer", throwable);
return;
} else {
logger.warn("error caught on transportation layer", throwable);
errorStanza = ServerErrorResponses.getStreamError(StreamErrorCondition.UNDEFINED_CONDITION,
sessionContext.getXMLLang(), "Unknown error", null);
ioSession.setAttribute(ATTRIBUTE_VYSPER_TERMINATE_REASON, SessionTerminationCause.STREAM_ERROR);
}
sessionContext.getResponseWriter().write(errorStanza);
}
}