org.jivesoftware.openfire.net.SocketPacketWriteHandler Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2005-2008 Jive Software. All rights reserved.
*
* 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.
*/
package org.jivesoftware.openfire.net;
import org.jivesoftware.openfire.ChannelHandler;
import org.jivesoftware.openfire.PacketException;
import org.jivesoftware.openfire.PacketRouter;
import org.jivesoftware.openfire.RoutingTable;
import org.jivesoftware.openfire.XMPPServer;
import org.jivesoftware.openfire.auth.UnauthorizedException;
import org.jivesoftware.util.LocaleUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.xmpp.packet.JID;
import org.xmpp.packet.Packet;
import org.xmpp.packet.Presence;
/**
* This ChannelHandler writes packet data to connections.
*
* @author Iain Shigeoka
* @see PacketRouter
*/
public class SocketPacketWriteHandler implements ChannelHandler {
private static final Logger Log = LoggerFactory.getLogger(SocketPacketWriteHandler.class);
private XMPPServer server;
private RoutingTable routingTable;
public SocketPacketWriteHandler(RoutingTable routingTable) {
this.routingTable = routingTable;
this.server = XMPPServer.getInstance();
}
@Override
public void process(Packet packet) throws UnauthorizedException, PacketException {
try {
JID recipient = packet.getTo();
// Check if the target domain belongs to a remote server or a component
if (server.matchesComponent(recipient) || server.isRemote(recipient)) {
routingTable.routePacket(recipient, packet, false);
}
// The target domain belongs to the local server
else if (recipient == null || (recipient.getNode() == null && recipient.getResource() == null)) {
// no TO was found so send back the packet to the sender
routingTable.routePacket(packet.getFrom(), packet, false);
}
else if (recipient.getResource() != null || !(packet instanceof Presence)) {
// JID is of the form
routingTable.routePacket(recipient, packet, false);
}
else {
// JID is of the form
for (JID route : routingTable.getRoutes(recipient, null)) {
routingTable.routePacket(route, packet, false);
}
}
}
catch (Exception e) {
Log.error(LocaleUtils.getLocalizedString("admin.error.deliver") + "\n" + packet.toString(), e);
}
}
}