mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Packet reader and writer are now hidden.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1799 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
982a01a7b8
commit
5e4d91c269
3 changed files with 41 additions and 22 deletions
|
@ -64,12 +64,13 @@ import org.jivesoftware.smack.util.StringUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Listens for XML traffic from the XMPP server, and parses it into packet objects.
|
* Listens for XML traffic from the XMPP server, and parses it into packet objects.
|
||||||
|
* The packet reader also manages all packet listeners and collectors.
|
||||||
*
|
*
|
||||||
* @see XMPPConnection#getPacketReader()
|
|
||||||
* @see PacketCollector
|
* @see PacketCollector
|
||||||
|
* @see PacketListener
|
||||||
* @author Matt Tucker
|
* @author Matt Tucker
|
||||||
*/
|
*/
|
||||||
public class PacketReader {
|
class PacketReader {
|
||||||
|
|
||||||
private static final String PROPERTIES_NAMESPACE =
|
private static final String PROPERTIES_NAMESPACE =
|
||||||
"http://www.jivesoftware.com/xmlns/xmpp/properties";
|
"http://www.jivesoftware.com/xmlns/xmpp/properties";
|
||||||
|
|
|
@ -58,12 +58,11 @@ import java.io.*;
|
||||||
import org.jivesoftware.smack.packet.Packet;
|
import org.jivesoftware.smack.packet.Packet;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Writes packets to an XMPP server.
|
* Writes packets to a XMPP server.
|
||||||
*
|
*
|
||||||
* @see XMPPConnection#getPacketWriter()
|
|
||||||
* @author Matt Tucker
|
* @author Matt Tucker
|
||||||
*/
|
*/
|
||||||
public class PacketWriter {
|
class PacketWriter {
|
||||||
|
|
||||||
private Thread writerThread;
|
private Thread writerThread;
|
||||||
private Writer writer;
|
private Writer writer;
|
||||||
|
|
|
@ -55,6 +55,7 @@ package org.jivesoftware.smack;
|
||||||
import org.jivesoftware.smack.packet.*;
|
import org.jivesoftware.smack.packet.*;
|
||||||
import org.jivesoftware.smack.packet.Error;
|
import org.jivesoftware.smack.packet.Error;
|
||||||
import org.jivesoftware.smack.filter.PacketIDFilter;
|
import org.jivesoftware.smack.filter.PacketIDFilter;
|
||||||
|
import org.jivesoftware.smack.filter.PacketFilter;
|
||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import java.net.*;
|
import java.net.*;
|
||||||
|
@ -182,7 +183,7 @@ public class XMPPConnection {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Login to the server using the strongest authentication mode supported by
|
* Logs in to the server using the strongest authentication mode supported by
|
||||||
* the server, then set our presence to available. If more than five seconds
|
* the server, then set our presence to available. If more than five seconds
|
||||||
* elapses in each step of the authentication process without a response from
|
* elapses in each step of the authentication process without a response from
|
||||||
* the server, or if an error occurs, a XMPPException will be thrown.
|
* the server, or if an error occurs, a XMPPException will be thrown.
|
||||||
|
@ -196,7 +197,7 @@ public class XMPPConnection {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Login to the server using the strongest authentication mode supported by
|
* Logs in to the server using the strongest authentication mode supported by
|
||||||
* the server, then set our presence to available. If more than five seconds
|
* the server, then set our presence to available. If more than five seconds
|
||||||
* elapses in each step of the authentication process without a response from
|
* elapses in each step of the authentication process without a response from
|
||||||
* the server, or if an error occurs, a XMPPException will be thrown.
|
* the server, or if an error occurs, a XMPPException will be thrown.
|
||||||
|
@ -314,8 +315,8 @@ public class XMPPConnection {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set presence to unavailable then and closes the connection to the Jabber server.
|
* Closes the connection by setting presence to unavailable then closing the stream to
|
||||||
* Once a connection has been closed, it cannot be re-opened.
|
* the XMPP server. Once a connection has been closed, it cannot be re-opened.
|
||||||
*/
|
*/
|
||||||
public void close() {
|
public void close() {
|
||||||
// Set presence to offline.
|
// Set presence to offline.
|
||||||
|
@ -330,31 +331,49 @@ public class XMPPConnection {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the packet writer for this connection. This exposes the ability to directly
|
* Sends the specified packet to the server.
|
||||||
* write Packet objects to the Jabber server. In general, this is only required for
|
|
||||||
* advanced uses of the API.
|
|
||||||
*
|
*
|
||||||
* @return the packet writer for the connection.
|
* @param packet the packet to send.
|
||||||
*/
|
*/
|
||||||
public PacketWriter getPacketWriter() {
|
public void sendPacket(Packet packet) {
|
||||||
if (!isConnected()) {
|
if (!isConnected()) {
|
||||||
throw new IllegalStateException("Not connected to server.");
|
throw new IllegalStateException("Not connected to server.");
|
||||||
}
|
}
|
||||||
return packetWriter;
|
packetWriter.sendPacket(packet);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the packet reader for this connection. This exposes the ability to register
|
* Registers a packet listener with this connection. A packet filter determines
|
||||||
* listeners for incoming Packet objects. In general, this is only required for advanced
|
* which packets will be delivered to the listener.
|
||||||
* uses of the API.
|
|
||||||
*
|
*
|
||||||
* @return the packet reader for the connection.
|
* @param packetListener the packet listener to notify of new packets.
|
||||||
|
* @param packetFilter the packet filter to use.
|
||||||
*/
|
*/
|
||||||
public PacketReader getPacketReader() {
|
public void addPacketListener(PacketListener packetListener, PacketFilter packetFilter) {
|
||||||
if (!isConnected()) {
|
if (!isConnected()) {
|
||||||
throw new IllegalStateException("Not connected to server.");
|
throw new IllegalStateException("Not connected to server.");
|
||||||
}
|
}
|
||||||
return packetReader;
|
packetReader.addPacketListener(packetListener, packetFilter);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes a packet listener from this connection.
|
||||||
|
*
|
||||||
|
* @param packetListener the packet listener to remove.
|
||||||
|
*/
|
||||||
|
public void removePacketListener(PacketListener packetListener) {
|
||||||
|
packetReader.removePacketListener(packetListener);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new packet collector for this connection. A packet filter determines
|
||||||
|
* which packets will be accumulated by the collector.
|
||||||
|
*
|
||||||
|
* @param packetFilter
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public PacketCollector createPacketCollector(PacketFilter packetFilter) {
|
||||||
|
return packetReader.createPacketCollector(packetFilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -363,7 +382,7 @@ public class XMPPConnection {
|
||||||
*
|
*
|
||||||
* @throws XMPPException if establishing a connection to the server fails.
|
* @throws XMPPException if establishing a connection to the server fails.
|
||||||
*/
|
*/
|
||||||
protected void init() throws XMPPException {
|
void init() throws XMPPException {
|
||||||
try {
|
try {
|
||||||
reader = new InputStreamReader(socket.getInputStream(), "UTF-8");
|
reader = new InputStreamReader(socket.getInputStream(), "UTF-8");
|
||||||
writer = new OutputStreamWriter(socket.getOutputStream(), "UTF-8");
|
writer = new OutputStreamWriter(socket.getOutputStream(), "UTF-8");
|
||||||
|
|
Loading…
Reference in a new issue