2003-01-13 17:58:47 +01:00
|
|
|
/**
|
|
|
|
* $RCSfile$
|
|
|
|
* $Revision$
|
|
|
|
* $Date$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002-2003 Jive Software. All rights reserved.
|
|
|
|
* ====================================================================
|
|
|
|
* The Jive Software License (based on Apache Software License, Version 1.1)
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* 3. The end-user documentation included with the redistribution,
|
|
|
|
* if any, must include the following acknowledgment:
|
|
|
|
* "This product includes software developed by
|
|
|
|
* Jive Software (http://www.jivesoftware.com)."
|
|
|
|
* Alternately, this acknowledgment may appear in the software itself,
|
|
|
|
* if and wherever such third-party acknowledgments normally appear.
|
|
|
|
*
|
|
|
|
* 4. The names "Smack" and "Jive Software" must not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* prior written permission. For written permission, please
|
2003-01-17 21:34:50 +01:00
|
|
|
* contact webmaster@jivesoftware.com.
|
2003-01-13 17:58:47 +01:00
|
|
|
*
|
|
|
|
* 5. Products derived from this software may not be called "Smack",
|
|
|
|
* nor may "Smack" appear in their name, without prior written
|
|
|
|
* permission of Jive Software.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL JIVE SOFTWARE OR
|
|
|
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
|
|
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
* ====================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
package org.jivesoftware.smack;
|
|
|
|
|
2003-11-15 20:24:00 +01:00
|
|
|
import java.util.*;
|
2003-01-13 17:58:47 +01:00
|
|
|
import java.io.*;
|
|
|
|
|
2003-11-18 18:06:47 +01:00
|
|
|
import org.jivesoftware.smack.filter.PacketFilter;
|
2003-01-13 17:58:47 +01:00
|
|
|
import org.jivesoftware.smack.packet.Packet;
|
|
|
|
|
|
|
|
/**
|
2003-01-17 08:11:33 +01:00
|
|
|
* Writes packets to a XMPP server.
|
2003-01-13 17:58:47 +01:00
|
|
|
*
|
|
|
|
* @author Matt Tucker
|
|
|
|
*/
|
2003-01-17 08:11:33 +01:00
|
|
|
class PacketWriter {
|
2003-01-13 17:58:47 +01:00
|
|
|
|
2003-01-15 16:01:01 +01:00
|
|
|
private Thread writerThread;
|
2003-01-13 17:58:47 +01:00
|
|
|
private Writer writer;
|
|
|
|
private XMPPConnection connection;
|
|
|
|
private LinkedList queue;
|
|
|
|
private boolean done = false;
|
2003-11-15 20:24:00 +01:00
|
|
|
|
|
|
|
private List listeners = new ArrayList();
|
|
|
|
private Thread listenerThread;
|
|
|
|
private LinkedList sentPackets = new LinkedList();
|
2003-01-13 17:58:47 +01:00
|
|
|
|
2003-01-15 16:01:01 +01:00
|
|
|
/**
|
|
|
|
* Creates a new packet writer with the specified connection.
|
|
|
|
*
|
|
|
|
* @param connection the connection.
|
|
|
|
*/
|
2003-01-13 17:58:47 +01:00
|
|
|
protected PacketWriter(XMPPConnection connection) {
|
|
|
|
this.connection = connection;
|
|
|
|
this.writer = connection.writer;
|
|
|
|
this.queue = new LinkedList();
|
2003-01-15 16:01:01 +01:00
|
|
|
|
|
|
|
writerThread = new Thread() {
|
|
|
|
public void run() {
|
|
|
|
writePackets();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
writerThread.setName("Smack Packet Writer");
|
|
|
|
writerThread.setDaemon(true);
|
2003-11-15 20:24:00 +01:00
|
|
|
|
|
|
|
listenerThread = new Thread() {
|
|
|
|
public void run() {
|
|
|
|
processListeners();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
listenerThread.setName("Smack Writer Listener Processor");
|
|
|
|
listenerThread.setDaemon(true);
|
2003-01-13 17:58:47 +01:00
|
|
|
}
|
|
|
|
|
2003-01-15 16:01:01 +01:00
|
|
|
/**
|
|
|
|
* Sends the specified packet to the server.
|
|
|
|
*
|
|
|
|
* @param packet the packet to send.
|
|
|
|
*/
|
2003-01-13 17:58:47 +01:00
|
|
|
public void sendPacket(Packet packet) {
|
2003-01-15 16:01:01 +01:00
|
|
|
if (!done) {
|
|
|
|
synchronized(queue) {
|
|
|
|
queue.addFirst(packet);
|
|
|
|
queue.notify();
|
|
|
|
}
|
2003-11-15 20:24:00 +01:00
|
|
|
// Add the sent packet to the list of sent packets
|
|
|
|
// The PacketWriterListeners will be notified of the new packet
|
|
|
|
synchronized(sentPackets) {
|
|
|
|
sentPackets.addFirst(packet);
|
|
|
|
sentPackets.notify();
|
|
|
|
}
|
2003-01-13 17:58:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-21 19:39:18 +02:00
|
|
|
/**
|
2003-11-18 18:06:47 +01:00
|
|
|
* Registers a packet listener with this writer. The listener will be
|
|
|
|
* notified of every packet that this writer sends. A packet filter determines
|
|
|
|
* which packets will be delivered to the listener.
|
2003-10-21 19:39:18 +02:00
|
|
|
*
|
2003-11-18 18:06:47 +01:00
|
|
|
* @param packetListener the packet listener to notify of sent packets.
|
|
|
|
* @param packetFilter the packet filter to use.
|
2003-10-21 19:39:18 +02:00
|
|
|
*/
|
2003-11-18 18:06:47 +01:00
|
|
|
public void addPacketListener(PacketListener packetListener, PacketFilter packetFilter) {
|
2003-11-15 20:24:00 +01:00
|
|
|
synchronized (listeners) {
|
2003-11-18 18:06:47 +01:00
|
|
|
listeners.add(new ListenerWrapper(packetListener, packetFilter));
|
2003-11-15 20:24:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2003-11-18 18:06:47 +01:00
|
|
|
* Removes a packet listener.
|
2003-11-15 20:24:00 +01:00
|
|
|
*
|
2003-11-18 18:06:47 +01:00
|
|
|
* @param packetListener the packet listener to remove.
|
2003-11-15 20:24:00 +01:00
|
|
|
*/
|
2003-11-18 18:06:47 +01:00
|
|
|
public void removePacketListener(PacketListener packetListener) {
|
2003-11-15 20:24:00 +01:00
|
|
|
synchronized (listeners) {
|
2003-11-18 18:06:47 +01:00
|
|
|
listeners.remove(packetListener);
|
2003-11-15 20:24:00 +01:00
|
|
|
}
|
2003-10-21 19:39:18 +02:00
|
|
|
}
|
|
|
|
|
2003-01-15 16:01:01 +01:00
|
|
|
/**
|
|
|
|
* Starts the packet writer thread and opens a connection to the server. The
|
|
|
|
* packet writer will continue writing packets until {@link #shutdown} or an
|
|
|
|
* error occurs.
|
|
|
|
*/
|
|
|
|
public void startup() {
|
|
|
|
writerThread.start();
|
2003-11-15 20:24:00 +01:00
|
|
|
listenerThread.start();
|
2003-01-15 16:01:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shuts down the packet writer. Once this method has been called, no further
|
|
|
|
* packets will be written to the server.
|
|
|
|
*/
|
|
|
|
public void shutdown() {
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
|
2003-01-13 17:58:47 +01:00
|
|
|
/**
|
|
|
|
* Returns the next available packet from the queue for writing.
|
|
|
|
*
|
|
|
|
* @return the next packet for writing.
|
|
|
|
*/
|
|
|
|
private Packet nextPacket() {
|
|
|
|
synchronized(queue) {
|
|
|
|
while (queue.size() == 0) {
|
|
|
|
try {
|
|
|
|
queue.wait();
|
|
|
|
}
|
|
|
|
catch (InterruptedException ie) { }
|
|
|
|
}
|
|
|
|
return (Packet)queue.removeLast();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-15 16:01:01 +01:00
|
|
|
private void writePackets() {
|
2003-01-13 17:58:47 +01:00
|
|
|
try {
|
|
|
|
// Open the stream.
|
|
|
|
StringBuffer stream = new StringBuffer();
|
2003-01-15 16:01:01 +01:00
|
|
|
stream.append("<stream:stream");
|
|
|
|
stream.append(" to=\"" + connection.getHost() + "\"");
|
|
|
|
stream.append(" xmlns=\"jabber:client\"");
|
|
|
|
stream.append(" xmlns:stream=\"http://etherx.jabber.org/streams\">");
|
2003-01-13 17:58:47 +01:00
|
|
|
writer.write(stream.toString());
|
|
|
|
writer.flush();
|
2003-01-27 16:56:21 +01:00
|
|
|
stream = null;
|
2003-01-13 17:58:47 +01:00
|
|
|
// Write out packets from the queue.
|
|
|
|
while (!done) {
|
|
|
|
Packet packet = nextPacket();
|
|
|
|
writer.write(packet.toXML());
|
|
|
|
writer.flush();
|
|
|
|
}
|
|
|
|
// Close the stream.
|
|
|
|
try {
|
2003-05-16 17:42:41 +02:00
|
|
|
writer.write("</stream:stream>");
|
2003-01-13 17:58:47 +01:00
|
|
|
writer.flush();
|
|
|
|
}
|
|
|
|
catch (Exception e) { }
|
|
|
|
finally {
|
|
|
|
try {
|
|
|
|
writer.close();
|
|
|
|
}
|
|
|
|
catch (Exception e) { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (IOException ioe){
|
2003-01-27 16:56:21 +01:00
|
|
|
if (!done) {
|
2003-09-19 00:35:42 +02:00
|
|
|
done = true;
|
|
|
|
connection.packetReader.notifyConnectionError(ioe);
|
2003-01-27 16:56:21 +01:00
|
|
|
}
|
2003-01-13 17:58:47 +01:00
|
|
|
}
|
|
|
|
}
|
2003-11-15 20:24:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Process listeners.
|
|
|
|
*/
|
|
|
|
private void processListeners() {
|
|
|
|
while (!done) {
|
|
|
|
Packet sentPacket;
|
|
|
|
// Wait until a new packet has been sent
|
|
|
|
synchronized(sentPackets) {
|
|
|
|
while (sentPackets.size() == 0) {
|
|
|
|
try {
|
|
|
|
sentPackets.wait();
|
|
|
|
}
|
|
|
|
catch (InterruptedException ie) { }
|
|
|
|
}
|
|
|
|
sentPacket = (Packet)sentPackets.removeLast();
|
|
|
|
}
|
|
|
|
// Notify the listeners of the new sent packet
|
|
|
|
int size = listeners.size();
|
|
|
|
for (int i=0; i<size; i++) {
|
2003-11-18 18:06:47 +01:00
|
|
|
ListenerWrapper listenerWrapper = (ListenerWrapper)listeners.get(i);
|
|
|
|
if (listenerWrapper != null) {
|
|
|
|
listenerWrapper.notifyListener(sentPacket);
|
2003-11-15 20:24:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-11-18 18:06:47 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A wrapper class to associate a packet filter with a listener.
|
|
|
|
*/
|
|
|
|
private static class ListenerWrapper {
|
|
|
|
|
|
|
|
private PacketListener packetListener;
|
|
|
|
private PacketFilter packetFilter;
|
|
|
|
|
|
|
|
public ListenerWrapper(PacketListener packetListener,
|
|
|
|
PacketFilter packetFilter)
|
|
|
|
{
|
|
|
|
this.packetListener = packetListener;
|
|
|
|
this.packetFilter = packetFilter;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean equals(Object object) {
|
|
|
|
if (object == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (object instanceof ListenerWrapper) {
|
|
|
|
return ((ListenerWrapper)object).packetListener.equals(this.packetListener);
|
|
|
|
}
|
|
|
|
else if (object instanceof PacketListener) {
|
|
|
|
return object.equals(this.packetListener);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void notifyListener(Packet packet) {
|
|
|
|
if (packetFilter == null || packetFilter.accept(packet)) {
|
|
|
|
packetListener.processPacket(packet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-05-16 17:42:41 +02:00
|
|
|
}
|