blob: be52aa30fdbfa71b4b9c28992ac52c60fbd6860e [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.camel.component.xmpp;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.impl.DefaultConsumer;
import org.jivesoftware.smack.Chat;
import org.jivesoftware.smack.ChatManager;
import org.jivesoftware.smack.ChatManagerListener;
import org.jivesoftware.smack.MessageListener;
import org.jivesoftware.smack.PacketListener;
import org.jivesoftware.smack.SmackConfiguration;
import org.jivesoftware.smack.XMPPConnection;
import org.jivesoftware.smack.filter.AndFilter;
import org.jivesoftware.smack.filter.PacketTypeFilter;
import org.jivesoftware.smack.filter.ToContainsFilter;
import org.jivesoftware.smack.packet.Message;
import org.jivesoftware.smack.packet.Packet;
import org.jivesoftware.smack.packet.Presence;
import org.jivesoftware.smackx.muc.DiscussionHistory;
import org.jivesoftware.smackx.muc.MultiUserChat;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A {@link org.apache.camel.Consumer Consumer} which listens to XMPP packets
*
* @version
*/
public class XmppConsumer extends DefaultConsumer implements PacketListener, MessageListener, ChatManagerListener {
private static final transient Logger LOG = LoggerFactory.getLogger(XmppConsumer.class);
private final XmppEndpoint endpoint;
private MultiUserChat muc;
private Chat privateChat;
private ChatManager chatManager;
private XMPPConnection connection;
public XmppConsumer(XmppEndpoint endpoint, Processor processor) {
super(endpoint, processor);
this.endpoint = endpoint;
}
@Override
protected void doStart() throws Exception {
connection = endpoint.createConnection();
chatManager = connection.getChatManager();
chatManager.addChatListener(this);
if (endpoint.getRoom() == null) {
privateChat = chatManager.getThreadChat(endpoint.getChatId());
if (privateChat != null) {
LOG.debug("Adding listener to existing chat opened to " + privateChat.getParticipant());
privateChat.addMessageListener(this);
} else {
privateChat = connection.getChatManager().createChat(endpoint.getParticipant(), endpoint.getChatId(), this);
LOG.debug("Opening private chat to " + privateChat.getParticipant());
}
} else {
// add the presence packet listener to the connection so we only get packets that concerns us
// we must add the listener before creating the muc
final ToContainsFilter toFilter = new ToContainsFilter(endpoint.getParticipant());
final AndFilter packetFilter = new AndFilter(new PacketTypeFilter(Presence.class), toFilter);
connection.addPacketListener(this, packetFilter);
muc = new MultiUserChat(connection, endpoint.resolveRoom(connection));
muc.addMessageListener(this);
DiscussionHistory history = new DiscussionHistory();
history.setMaxChars(0); // we do not want any historical messages
muc.join(endpoint.getNickname(), null, history, SmackConfiguration.getPacketReplyTimeout());
if (LOG.isInfoEnabled()) {
LOG.info("Joined room: " + muc.getRoom() + " as: " + endpoint.getNickname());
}
}
super.doStart();
}
@Override
protected void doStop() throws Exception {
super.doStop();
if (muc != null) {
if (LOG.isInfoEnabled()) {
LOG.info("Leaving room: " + muc.getRoom());
}
muc.removeMessageListener(this);
muc.leave();
muc = null;
}
if (connection != null && connection.isConnected()) {
connection.disconnect();
}
}
public void chatCreated(Chat chat, boolean createdLocally) {
if (!createdLocally) {
LOG.debug("Accepting incoming chat session from " + chat.getParticipant());
chat.addMessageListener(this);
}
}
public void processPacket(Packet packet) {
if (packet instanceof Message) {
processMessage(null, (Message)packet);
}
}
public void processMessage(Chat chat, Message message) {
if (LOG.isDebugEnabled()) {
LOG.debug("Received XMPP message for " + endpoint.getUser() + " from " + endpoint.getParticipant() + " : " + message.getBody());
}
Exchange exchange = endpoint.createExchange(message);
try {
getProcessor().process(exchange);
} catch (Exception e) {
exchange.setException(e);
} finally {
// must remove message from muc to avoid messages stacking up and causing OutOfMemoryError
// pollMessage is a non blocking method
// (see http://issues.igniterealtime.org/browse/SMACK-129)
if (muc != null) {
muc.pollMessage();
}
}
}
}