2014-02-19 20:06:30 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Copyright 2009 Jive Software.
|
|
|
|
*
|
|
|
|
* 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.smack;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.PipedReader;
|
|
|
|
import java.io.PipedWriter;
|
|
|
|
import java.io.Writer;
|
2014-04-03 22:50:13 +02:00
|
|
|
import java.util.Locale;
|
2014-03-17 19:33:17 +01:00
|
|
|
import java.util.logging.Level;
|
|
|
|
import java.util.logging.Logger;
|
2014-02-19 20:06:30 +01:00
|
|
|
|
2014-03-12 11:50:05 +01:00
|
|
|
import javax.security.sasl.SaslException;
|
|
|
|
|
|
|
|
import org.jivesoftware.smack.SmackException.NotConnectedException;
|
|
|
|
import org.jivesoftware.smack.SmackException.AlreadyLoggedInException;
|
|
|
|
import org.jivesoftware.smack.SmackException.ConnectionException;
|
2014-03-10 09:45:50 +01:00
|
|
|
import org.jivesoftware.smack.XMPPConnection;
|
2014-02-19 20:06:30 +01:00
|
|
|
import org.jivesoftware.smack.ConnectionCreationListener;
|
|
|
|
import org.jivesoftware.smack.ConnectionListener;
|
|
|
|
import org.jivesoftware.smack.Roster;
|
|
|
|
import org.jivesoftware.smack.XMPPException;
|
|
|
|
import org.jivesoftware.smack.packet.Packet;
|
|
|
|
import org.jivesoftware.smack.packet.Presence;
|
|
|
|
import org.jivesoftware.smack.util.StringUtils;
|
|
|
|
import org.igniterealtime.jbosh.BOSHClient;
|
|
|
|
import org.igniterealtime.jbosh.BOSHClientConfig;
|
|
|
|
import org.igniterealtime.jbosh.BOSHClientConnEvent;
|
|
|
|
import org.igniterealtime.jbosh.BOSHClientConnListener;
|
|
|
|
import org.igniterealtime.jbosh.BOSHClientRequestListener;
|
|
|
|
import org.igniterealtime.jbosh.BOSHClientResponseListener;
|
|
|
|
import org.igniterealtime.jbosh.BOSHException;
|
|
|
|
import org.igniterealtime.jbosh.BOSHMessageEvent;
|
|
|
|
import org.igniterealtime.jbosh.BodyQName;
|
|
|
|
import org.igniterealtime.jbosh.ComposableBody;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a connection to a XMPP server via HTTP binding.
|
|
|
|
* This is specified in the XEP-0206: XMPP Over BOSH.
|
|
|
|
*
|
2014-03-10 09:45:50 +01:00
|
|
|
* @see XMPPConnection
|
2014-02-19 20:06:30 +01:00
|
|
|
* @author Guenther Niess
|
|
|
|
*/
|
2014-04-09 12:16:44 +02:00
|
|
|
public class XMPPBOSHConnection extends XMPPConnection {
|
|
|
|
private static final Logger LOGGER = Logger.getLogger(XMPPBOSHConnection.class.getName());
|
2014-02-19 20:06:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The XMPP Over Bosh namespace.
|
|
|
|
*/
|
|
|
|
public static final String XMPP_BOSH_NS = "urn:xmpp:xbosh";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The BOSH namespace from XEP-0124.
|
|
|
|
*/
|
|
|
|
public static final String BOSH_URI = "http://jabber.org/protocol/httpbind";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The used BOSH client from the jbosh library.
|
|
|
|
*/
|
|
|
|
private BOSHClient client;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Holds the initial configuration used while creating the connection.
|
|
|
|
*/
|
|
|
|
private final BOSHConfiguration config;
|
|
|
|
|
|
|
|
// Some flags which provides some info about the current state.
|
|
|
|
private boolean connected = false;
|
|
|
|
private boolean authenticated = false;
|
|
|
|
private boolean anonymous = false;
|
|
|
|
private boolean isFirstInitialization = true;
|
|
|
|
private boolean wasAuthenticated = false;
|
|
|
|
private boolean done = false;
|
|
|
|
|
|
|
|
// The readerPipe and consumer thread are used for the debugger.
|
|
|
|
private PipedWriter readerPipe;
|
|
|
|
private Thread readerConsumer;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The BOSH equivalent of the stream ID which is used for DIGEST authentication.
|
|
|
|
*/
|
|
|
|
protected String authID = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The session ID for the BOSH session with the connection manager.
|
|
|
|
*/
|
|
|
|
protected String sessionID = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The full JID of the authenticated user.
|
|
|
|
*/
|
|
|
|
private String user = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a HTTP Binding connection to a XMPP server.
|
|
|
|
*
|
|
|
|
* @param https true if you want to use SSL
|
|
|
|
* (e.g. false for http://domain.lt:7070/http-bind).
|
|
|
|
* @param host the hostname or IP address of the connection manager
|
|
|
|
* (e.g. domain.lt for http://domain.lt:7070/http-bind).
|
|
|
|
* @param port the port of the connection manager
|
|
|
|
* (e.g. 7070 for http://domain.lt:7070/http-bind).
|
|
|
|
* @param filePath the file which is described by the URL
|
|
|
|
* (e.g. /http-bind for http://domain.lt:7070/http-bind).
|
|
|
|
* @param xmppDomain the XMPP service name
|
|
|
|
* (e.g. domain.lt for the user alice@domain.lt)
|
|
|
|
*/
|
2014-04-09 12:16:44 +02:00
|
|
|
public XMPPBOSHConnection(boolean https, String host, int port, String filePath, String xmppDomain) {
|
2014-02-19 20:06:30 +01:00
|
|
|
super(new BOSHConfiguration(https, host, port, filePath, xmppDomain));
|
|
|
|
this.config = (BOSHConfiguration) getConfiguration();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a HTTP Binding connection to a XMPP server.
|
|
|
|
*
|
|
|
|
* @param config The configuration which is used for this connection.
|
|
|
|
*/
|
2014-04-09 12:16:44 +02:00
|
|
|
public XMPPBOSHConnection(BOSHConfiguration config) {
|
2014-02-19 20:06:30 +01:00
|
|
|
super(config);
|
|
|
|
this.config = config;
|
|
|
|
}
|
|
|
|
|
2014-04-27 12:27:12 +02:00
|
|
|
@Override
|
|
|
|
void connectInternal() throws SmackException {
|
2014-02-19 20:06:30 +01:00
|
|
|
if (connected) {
|
|
|
|
throw new IllegalStateException("Already connected to a server.");
|
|
|
|
}
|
|
|
|
done = false;
|
|
|
|
try {
|
|
|
|
// Ensure a clean starting state
|
|
|
|
if (client != null) {
|
|
|
|
client.close();
|
|
|
|
client = null;
|
|
|
|
}
|
|
|
|
sessionID = null;
|
|
|
|
authID = null;
|
|
|
|
|
|
|
|
// Initialize BOSH client
|
|
|
|
BOSHClientConfig.Builder cfgBuilder = BOSHClientConfig.Builder
|
|
|
|
.create(config.getURI(), config.getServiceName());
|
|
|
|
if (config.isProxyEnabled()) {
|
|
|
|
cfgBuilder.setProxy(config.getProxyAddress(), config.getProxyPort());
|
|
|
|
}
|
|
|
|
client = BOSHClient.create(cfgBuilder.build());
|
|
|
|
|
|
|
|
client.addBOSHClientConnListener(new BOSHConnectionListener(this));
|
|
|
|
client.addBOSHClientResponseListener(new BOSHPacketReader(this));
|
|
|
|
|
|
|
|
// Initialize the debugger
|
|
|
|
if (config.isDebuggerEnabled()) {
|
|
|
|
initDebugger();
|
|
|
|
if (isFirstInitialization) {
|
|
|
|
if (debugger.getReaderListener() != null) {
|
|
|
|
addPacketListener(debugger.getReaderListener(), null);
|
|
|
|
}
|
|
|
|
if (debugger.getWriterListener() != null) {
|
|
|
|
addPacketSendingListener(debugger.getWriterListener(), null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send the session creation request
|
|
|
|
client.send(ComposableBody.builder()
|
|
|
|
.setNamespaceDefinition("xmpp", XMPP_BOSH_NS)
|
|
|
|
.setAttribute(BodyQName.createWithPrefix(XMPP_BOSH_NS, "version", "xmpp"), "1.0")
|
|
|
|
.build());
|
|
|
|
} catch (Exception e) {
|
2014-03-12 11:50:05 +01:00
|
|
|
throw new ConnectionException(e);
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for the response from the server
|
|
|
|
synchronized (this) {
|
|
|
|
if (!connected) {
|
|
|
|
try {
|
2014-04-23 09:49:05 +02:00
|
|
|
wait(getPacketReplyTimeout());
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
catch (InterruptedException e) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is no feedback, throw an remote server timeout error
|
|
|
|
if (!connected && !done) {
|
|
|
|
done = true;
|
|
|
|
String errorMessage = "Timeout reached for the connection to "
|
|
|
|
+ getHost() + ":" + getPort() + ".";
|
2014-03-12 11:50:05 +01:00
|
|
|
throw new SmackException(errorMessage);
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
2014-03-14 01:48:33 +01:00
|
|
|
callConnectionConnectedListener();
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getConnectionID() {
|
|
|
|
if (!connected) {
|
|
|
|
return null;
|
|
|
|
} else if (authID != null) {
|
|
|
|
return authID;
|
|
|
|
} else {
|
|
|
|
return sessionID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getUser() {
|
|
|
|
return user;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isAnonymous() {
|
|
|
|
return anonymous;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isAuthenticated() {
|
|
|
|
return authenticated;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isConnected() {
|
|
|
|
return connected;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isSecureConnection() {
|
|
|
|
// TODO: Implement SSL usage
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isUsingCompression() {
|
|
|
|
// TODO: Implement compression
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void login(String username, String password, String resource)
|
2014-03-12 11:50:05 +01:00
|
|
|
throws XMPPException, SmackException, IOException {
|
2014-02-19 20:06:30 +01:00
|
|
|
if (!isConnected()) {
|
2014-03-12 11:50:05 +01:00
|
|
|
throw new NotConnectedException();
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
if (authenticated) {
|
2014-03-12 11:50:05 +01:00
|
|
|
throw new AlreadyLoggedInException();
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
// Do partial version of nameprep on the username.
|
2014-04-03 22:50:13 +02:00
|
|
|
username = username.toLowerCase(Locale.US).trim();
|
2014-02-19 20:06:30 +01:00
|
|
|
|
2014-02-26 21:57:42 +01:00
|
|
|
if (saslAuthentication.hasNonAnonymousAuthentication()) {
|
2014-02-19 20:06:30 +01:00
|
|
|
// Authenticate using SASL
|
|
|
|
if (password != null) {
|
2014-04-27 12:27:12 +02:00
|
|
|
saslAuthentication.authenticate(username, password, resource);
|
2014-02-19 20:06:30 +01:00
|
|
|
} else {
|
2014-04-27 12:27:12 +02:00
|
|
|
saslAuthentication.authenticate(resource, config.getCallbackHandler());
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
} else {
|
2014-03-12 11:50:05 +01:00
|
|
|
throw new SaslException("No non-anonymous SASL authentication mechanism available");
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
|
2014-04-27 12:27:12 +02:00
|
|
|
String response = bindResourceAndEstablishSession(resource);
|
2014-02-19 20:06:30 +01:00
|
|
|
// Set the user.
|
|
|
|
if (response != null) {
|
|
|
|
this.user = response;
|
|
|
|
// Update the serviceName with the one returned by the server
|
|
|
|
config.setServiceName(StringUtils.parseServer(response));
|
|
|
|
} else {
|
|
|
|
this.user = username + "@" + getServiceName();
|
|
|
|
if (resource != null) {
|
|
|
|
this.user += "/" + resource;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set presence to online.
|
|
|
|
if (config.isSendPresence()) {
|
|
|
|
sendPacket(new Presence(Presence.Type.available));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Indicate that we're now authenticated.
|
|
|
|
authenticated = true;
|
|
|
|
anonymous = false;
|
|
|
|
|
|
|
|
// Stores the autentication for future reconnection
|
|
|
|
config.setLoginInfo(username, password, resource);
|
|
|
|
|
|
|
|
// If debugging is enabled, change the the debug window title to include
|
|
|
|
// the
|
|
|
|
// name we are now logged-in as.l
|
|
|
|
if (config.isDebuggerEnabled() && debugger != null) {
|
|
|
|
debugger.userHasLogged(user);
|
|
|
|
}
|
2014-03-14 01:48:33 +01:00
|
|
|
callConnectionAuthenticatedListener();
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
|
2014-03-12 11:50:05 +01:00
|
|
|
public void loginAnonymously() throws XMPPException, SmackException, IOException {
|
|
|
|
if (!isConnected()) {
|
|
|
|
throw new NotConnectedException();
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
if (authenticated) {
|
2014-03-12 11:50:05 +01:00
|
|
|
throw new AlreadyLoggedInException();
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
|
2014-02-26 21:57:42 +01:00
|
|
|
if (saslAuthentication.hasAnonymousAuthentication()) {
|
2014-04-27 12:27:12 +02:00
|
|
|
saslAuthentication.authenticateAnonymously();
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Authenticate using Non-SASL
|
2014-03-12 11:50:05 +01:00
|
|
|
throw new SaslException("No anonymous SASL authentication mechanism available");
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
|
2014-04-27 12:27:12 +02:00
|
|
|
String response = bindResourceAndEstablishSession(null);
|
2014-02-19 20:06:30 +01:00
|
|
|
// Set the user value.
|
|
|
|
this.user = response;
|
|
|
|
// Update the serviceName with the one returned by the server
|
|
|
|
config.setServiceName(StringUtils.parseServer(response));
|
|
|
|
|
|
|
|
// Set presence to online.
|
|
|
|
if (config.isSendPresence()) {
|
|
|
|
sendPacket(new Presence(Presence.Type.available));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Indicate that we're now authenticated.
|
|
|
|
authenticated = true;
|
|
|
|
anonymous = true;
|
|
|
|
|
|
|
|
// If debugging is enabled, change the the debug window title to include the
|
|
|
|
// name we are now logged-in as.
|
|
|
|
// If DEBUG_ENABLED was set to true AFTER the connection was created the debugger
|
|
|
|
// will be null
|
|
|
|
if (config.isDebuggerEnabled() && debugger != null) {
|
|
|
|
debugger.userHasLogged(user);
|
|
|
|
}
|
2014-03-14 01:48:33 +01:00
|
|
|
callConnectionAuthenticatedListener();
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
|
2014-03-17 19:33:17 +01:00
|
|
|
void sendPacketInternal(Packet packet) {
|
2014-02-19 20:06:30 +01:00
|
|
|
if (!done) {
|
|
|
|
try {
|
2014-03-21 09:51:52 +01:00
|
|
|
send(ComposableBody.builder().setPayloadXML(packet.toXML().toString())
|
2014-02-19 20:06:30 +01:00
|
|
|
.build());
|
|
|
|
} catch (BOSHException e) {
|
2014-03-17 19:33:17 +01:00
|
|
|
LOGGER.log(Level.SEVERE, "BOSHException in sendPacketInternal", e);
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void disconnect(Presence unavailablePresence) {
|
|
|
|
if (!connected) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
shutdown(unavailablePresence);
|
|
|
|
|
|
|
|
// Cleanup
|
|
|
|
// TODO still needed? Smack 4.0.0 BOSH
|
|
|
|
// if (roster != null) {
|
|
|
|
// roster.cleanup();
|
|
|
|
// roster = null;
|
|
|
|
// }
|
|
|
|
sendListeners.clear();
|
|
|
|
recvListeners.clear();
|
|
|
|
collectors.clear();
|
|
|
|
interceptors.clear();
|
|
|
|
|
|
|
|
// Reset the connection flags
|
|
|
|
wasAuthenticated = false;
|
|
|
|
isFirstInitialization = true;
|
|
|
|
|
2014-03-14 01:48:33 +01:00
|
|
|
callConnectionClosedListener();
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closes the connection by setting presence to unavailable and closing the
|
|
|
|
* HTTP client. The shutdown logic will be used during a planned disconnection or when
|
|
|
|
* dealing with an unexpected disconnection. Unlike {@link #disconnect()} the connection's
|
|
|
|
* BOSH packet reader and {@link Roster} will not be removed; thus
|
|
|
|
* connection's state is kept.
|
|
|
|
*
|
|
|
|
* @param unavailablePresence the presence packet to send during shutdown.
|
|
|
|
*/
|
|
|
|
protected void shutdown(Presence unavailablePresence) {
|
|
|
|
setWasAuthenticated(authenticated);
|
|
|
|
authID = null;
|
|
|
|
sessionID = null;
|
|
|
|
done = true;
|
|
|
|
authenticated = false;
|
|
|
|
connected = false;
|
|
|
|
isFirstInitialization = false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
client.disconnect(ComposableBody.builder()
|
|
|
|
.setNamespaceDefinition("xmpp", XMPP_BOSH_NS)
|
2014-03-21 09:51:52 +01:00
|
|
|
.setPayloadXML(unavailablePresence.toXML().toString())
|
2014-02-19 20:06:30 +01:00
|
|
|
.build());
|
|
|
|
// Wait 150 ms for processes to clean-up, then shutdown.
|
|
|
|
Thread.sleep(150);
|
|
|
|
}
|
|
|
|
catch (Exception e) {
|
|
|
|
// Ignore.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close down the readers and writers.
|
|
|
|
if (readerPipe != null) {
|
|
|
|
try {
|
|
|
|
readerPipe.close();
|
|
|
|
}
|
|
|
|
catch (Throwable ignore) { /* ignore */ }
|
|
|
|
reader = null;
|
|
|
|
}
|
|
|
|
if (reader != null) {
|
|
|
|
try {
|
|
|
|
reader.close();
|
|
|
|
}
|
|
|
|
catch (Throwable ignore) { /* ignore */ }
|
|
|
|
reader = null;
|
|
|
|
}
|
|
|
|
if (writer != null) {
|
|
|
|
try {
|
|
|
|
writer.close();
|
|
|
|
}
|
|
|
|
catch (Throwable ignore) { /* ignore */ }
|
|
|
|
writer = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
readerConsumer = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets whether the connection has already logged in the server.
|
|
|
|
*
|
|
|
|
* @param wasAuthenticated true if the connection has already been authenticated.
|
|
|
|
*/
|
|
|
|
private void setWasAuthenticated(boolean wasAuthenticated) {
|
|
|
|
if (!this.wasAuthenticated) {
|
|
|
|
this.wasAuthenticated = wasAuthenticated;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a HTTP request to the connection manager with the provided body element.
|
|
|
|
*
|
|
|
|
* @param body the body which will be sent.
|
|
|
|
*/
|
|
|
|
protected void send(ComposableBody body) throws BOSHException {
|
|
|
|
if (!connected) {
|
|
|
|
throw new IllegalStateException("Not connected to a server!");
|
|
|
|
}
|
|
|
|
if (body == null) {
|
|
|
|
throw new NullPointerException("Body mustn't be null!");
|
|
|
|
}
|
|
|
|
if (sessionID != null) {
|
|
|
|
body = body.rebuild().setAttribute(
|
|
|
|
BodyQName.create(BOSH_URI, "sid"), sessionID).build();
|
|
|
|
}
|
|
|
|
client.send(body);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the SmackDebugger which allows to log and debug XML traffic.
|
|
|
|
*/
|
|
|
|
protected void initDebugger() {
|
|
|
|
// TODO: Maybe we want to extend the SmackDebugger for simplification
|
|
|
|
// and a performance boost.
|
|
|
|
|
|
|
|
// Initialize a empty writer which discards all data.
|
|
|
|
writer = new Writer() {
|
|
|
|
public void write(char[] cbuf, int off, int len) { /* ignore */}
|
|
|
|
public void close() { /* ignore */ }
|
|
|
|
public void flush() { /* ignore */ }
|
|
|
|
};
|
|
|
|
|
|
|
|
// Initialize a pipe for received raw data.
|
|
|
|
try {
|
|
|
|
readerPipe = new PipedWriter();
|
|
|
|
reader = new PipedReader(readerPipe);
|
|
|
|
}
|
|
|
|
catch (IOException e) {
|
|
|
|
// Ignore
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call the method from the parent class which initializes the debugger.
|
|
|
|
super.initDebugger();
|
|
|
|
|
|
|
|
// Add listeners for the received and sent raw data.
|
|
|
|
client.addBOSHClientResponseListener(new BOSHClientResponseListener() {
|
|
|
|
public void responseReceived(BOSHMessageEvent event) {
|
|
|
|
if (event.getBody() != null) {
|
|
|
|
try {
|
|
|
|
readerPipe.write(event.getBody().toXML());
|
|
|
|
readerPipe.flush();
|
|
|
|
} catch (Exception e) {
|
|
|
|
// Ignore
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
client.addBOSHClientRequestListener(new BOSHClientRequestListener() {
|
|
|
|
public void requestSent(BOSHMessageEvent event) {
|
|
|
|
if (event.getBody() != null) {
|
|
|
|
try {
|
|
|
|
writer.write(event.getBody().toXML());
|
|
|
|
} catch (Exception e) {
|
|
|
|
// Ignore
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Create and start a thread which discards all read data.
|
|
|
|
readerConsumer = new Thread() {
|
|
|
|
private Thread thread = this;
|
|
|
|
private int bufferLength = 1024;
|
|
|
|
|
|
|
|
public void run() {
|
|
|
|
try {
|
|
|
|
char[] cbuf = new char[bufferLength];
|
|
|
|
while (readerConsumer == thread && !done) {
|
|
|
|
reader.read(cbuf, 0, bufferLength);
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
// Ignore
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
readerConsumer.setDaemon(true);
|
|
|
|
readerConsumer.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends out a notification that there was an error with the connection
|
|
|
|
* and closes the connection.
|
|
|
|
*
|
|
|
|
* @param e the exception that causes the connection close event.
|
|
|
|
*/
|
|
|
|
protected void notifyConnectionError(Exception e) {
|
|
|
|
// Closes the connection temporary. A reconnection is possible
|
|
|
|
shutdown(new Presence(Presence.Type.unavailable));
|
2014-03-14 01:48:33 +01:00
|
|
|
callConnectionClosedOnErrorListener(e);
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A listener class which listen for a successfully established connection
|
|
|
|
* and connection errors and notifies the BOSHConnection.
|
|
|
|
*
|
|
|
|
* @author Guenther Niess
|
|
|
|
*/
|
|
|
|
private class BOSHConnectionListener implements BOSHClientConnListener {
|
|
|
|
|
2014-04-09 12:16:44 +02:00
|
|
|
private final XMPPBOSHConnection connection;
|
2014-02-19 20:06:30 +01:00
|
|
|
|
2014-04-09 12:16:44 +02:00
|
|
|
public BOSHConnectionListener(XMPPBOSHConnection connection) {
|
2014-02-19 20:06:30 +01:00
|
|
|
this.connection = connection;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify the BOSHConnection about connection state changes.
|
|
|
|
* Process the connection listeners and try to login if the
|
|
|
|
* connection was formerly authenticated and is now reconnected.
|
|
|
|
*/
|
|
|
|
public void connectionEvent(BOSHClientConnEvent connEvent) {
|
|
|
|
try {
|
|
|
|
if (connEvent.isConnected()) {
|
|
|
|
connected = true;
|
|
|
|
if (isFirstInitialization) {
|
|
|
|
isFirstInitialization = false;
|
|
|
|
for (ConnectionCreationListener listener : getConnectionCreationListeners()) {
|
|
|
|
listener.connectionCreated(connection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
try {
|
|
|
|
if (wasAuthenticated) {
|
|
|
|
connection.login(
|
|
|
|
config.getUsername(),
|
|
|
|
config.getPassword(),
|
|
|
|
config.getResource());
|
|
|
|
}
|
|
|
|
for (ConnectionListener listener : getConnectionListeners()) {
|
|
|
|
listener.reconnectionSuccessful();
|
|
|
|
}
|
|
|
|
}
|
2014-03-12 11:50:05 +01:00
|
|
|
catch (Exception e) {
|
2014-02-19 20:06:30 +01:00
|
|
|
for (ConnectionListener listener : getConnectionListeners()) {
|
|
|
|
listener.reconnectionFailed(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (connEvent.isError()) {
|
2014-03-18 11:19:37 +01:00
|
|
|
// TODO Check why jbosh's getCause returns Throwable here. This is very
|
|
|
|
// unusual and should be avoided if possible
|
|
|
|
Throwable cause = connEvent.getCause();
|
|
|
|
Exception e;
|
|
|
|
if (cause instanceof Exception) {
|
|
|
|
e = (Exception) cause;
|
|
|
|
} else {
|
|
|
|
e = new Exception(cause);
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
2014-03-18 11:19:37 +01:00
|
|
|
notifyConnectionError(e);
|
2014-02-19 20:06:30 +01:00
|
|
|
}
|
|
|
|
connected = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
finally {
|
|
|
|
synchronized (connection) {
|
|
|
|
connection.notifyAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|