/* * Copyright (C) 1999-2009 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 com.jivesoftware.util.cluster; import org.dom4j.Element; import org.dom4j.tree.DefaultElement; import org.jivesoftware.openfire.XMPPServer; import org.jivesoftware.util.cache.ClusterTask; import org.jivesoftware.util.cache.ExternalizableUtil; import org.xmpp.packet.*; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; /** * Task to be executed by remote nodes to deliver the requested packet to the requested * receiver. * * @author Gaston Dombiak */ public class RemotePacketExecution implements ClusterTask<Void> { private JID receipient; private Packet packet; public RemotePacketExecution() { } public RemotePacketExecution(JID receipient, Packet packet) { this.receipient = receipient; this.packet = packet; } public Void getResult() { // Not used since we are using #execute and not #query when using InvocationService return null; } public void run() { // Route packet to entity hosted by this node. If delivery fails then the routing table // will inform the proper router of the failure and the router will handle the error reply logic XMPPServer.getInstance().getRoutingTable().routePacket(receipient, packet, false); } public void writeExternal(ObjectOutput out) throws IOException { ExternalizableUtil.getInstance().writeSafeUTF(out, receipient.toString()); if (packet instanceof IQ) { ExternalizableUtil.getInstance().writeInt(out, 1); } else if (packet instanceof Message) { ExternalizableUtil.getInstance().writeInt(out, 2); } else if (packet instanceof Presence) { ExternalizableUtil.getInstance().writeInt(out, 3); } ExternalizableUtil.getInstance().writeSerializable(out, (DefaultElement) packet.getElement()); } public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { String jid = ExternalizableUtil.getInstance().readSafeUTF(in); // Optimization that was avoiding the need to reparse and validate JIDs but cannot be done due // to a change in the JID API. We need to bring this constructor back //receipient = new JID(jid, true); receipient = new JID(jid); int packetType = ExternalizableUtil.getInstance().readInt(in); Element packetElement = (Element) ExternalizableUtil.getInstance().readSerializable(in); switch (packetType) { case 1: packet = new IQ(packetElement, true); break; case 2: packet = new Message(packetElement, true); break; case 3: packet = new Presence(packetElement, true); break; } } public String toString() { return super.toString() + " receipient: " + receipient + "packet: " + packet; } }