/******************************************************************************* * Copyright (c) 2009, 2018 IBM Corp. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Dave Locke - initial API and implementation and/or initial documentation * Ian Craggs - MQTT 3.1.1 support * Ian Craggs - per subscription message handlers (bug 466579) * Ian Craggs - ack control (bug 472172) */ package org.eclipse.paho.client.mqttv3; import java.util.Properties; import java.util.concurrent.ScheduledExecutorService; import javax.net.SocketFactory; import org.eclipse.paho.client.mqttv3.persist.MqttDefaultFilePersistence; import org.eclipse.paho.client.mqttv3.util.Debug; /** * Lightweight client for talking to an MQTT server using methods that block * until an operation completes. * *

This class implements the blocking {@link IMqttClient} client interface where all * actions block until they have completed (or timed out). * This implementation is compatible with all Java SE runtimes from 1.7 and up. *

*

An application can connect to an MQTT server using:

* * *

To enable messages to be delivered even across network and client restarts * messages need to be safely stored until the message has been delivered at the requested * quality of service. A pluggable persistence mechanism is provided to store the messages. *

*

By default {@link MqttDefaultFilePersistence} is used to store messages to a file. * If persistence is set to null then messages are stored in memory and hence can be lost * if the client, Java runtime or device shuts down. *

*

If connecting with {@link MqttConnectOptions#setCleanSession(boolean)} set to true it * is safe to use memory persistence as all state it cleared when a client disconnects. If * connecting with cleanSession set to false, to provide reliable message delivery * then a persistent message store should be used such as the default one.

*

The message store interface is pluggable. Different stores can be used by implementing * the {@link MqttClientPersistence} interface and passing it to the clients constructor. *

* * @see IMqttClient */ public class MqttClient implements IMqttClient { protected MqttAsyncClient aClient = null; // Delegate implementation to MqttAsyncClient protected long timeToWait = -1; // How long each method should wait for action to complete /** * Create an MqttClient that can be used to communicate with an MQTT server. *

* The address of a server can be specified on the constructor. Alternatively * a list containing one or more servers can be specified using the * {@link MqttConnectOptions#setServerURIs(String[]) setServerURIs} method * on MqttConnectOptions. * *

The serverURI parameter is typically used with the * the clientId parameter to form a key. The key * is used to store and reference messages while they are being delivered. * Hence the serverURI specified on the constructor must still be specified even if a list * of servers is specified on an MqttConnectOptions object. * The serverURI on the constructor must remain the same across * restarts of the client for delivery of messages to be maintained from a given * client to a given server or set of servers. * *

The address of the server to connect to is specified as a URI. Two types of * connection are supported tcp:// for a TCP connection and * ssl:// for a TCP connection secured by SSL/TLS. * For example:

* *

* If the port is not specified, it will * default to 1883 for tcp://" URIs, and 8883 for ssl:// URIs. *

* *

* A client identifier clientId must be specified and be less that 65535 characters. * It must be unique across all clients connecting to the same * server. The clientId is used by the server to store data related to the client, * hence it is important that the clientId remain the same when connecting to a server * if durable subscriptions or reliable messaging are required. *

A convenience method is provided to generate a random client id that * should satisfy this criteria - {@link #generateClientId()}. As the client identifier * is used by the server to identify a client when it reconnects, the client must use the * same identifier between connections if durable subscriptions or reliable * delivery of messages is required. *

*

* In Java SE, SSL can be configured in one of several ways, which the * client will use in the following order: *

* * *

In Java ME, the platform settings are used for SSL connections.

* *

An instance of the default persistence mechanism {@link MqttDefaultFilePersistence} * is used by the client. To specify a different persistence mechanism or to turn * off persistence, use the {@link #MqttClient(String, String, MqttClientPersistence)} * constructor. * * @param serverURI the address of the server to connect to, specified as a URI. Can be overridden using * {@link MqttConnectOptions#setServerURIs(String[])} * @param clientId a client identifier that is unique on the server being connected to * @throws IllegalArgumentException if the URI does not start with * "tcp://", "ssl://" or "local://". * @throws IllegalArgumentException if the clientId is null or is greater than 65535 characters in length * @throws MqttException if any other problem was encountered */ public MqttClient(String serverURI, String clientId) throws MqttException { this(serverURI,clientId, new MqttDefaultFilePersistence()); } /** * 创建可用于与MQTT服务器通信的MqttClient。 *

* 服务器的地址可以在构造函数中指定。或者,可以使用MQTT连接选项上的 * {@link MqttConnectOptions#setServerURIs(String[]) setServerURIs}方法 * 指定包含一个或多个服务器的列表。 * *

serverURI 参数通常与 clientId参数一起使用,以形成键。 * 密钥用于在传递消息时存储和引用消息。 * 因此,即使在MQTT连接选项对象上指定了服务器列表, * 也必须指定构造函数上指定的serverURI。 * 构造函数上的serverURI必须在客户机重启期间保持相同, * 以便将要从给定客户机维护的消息传递到给定服务器或一组服务器。 * *

要连接到的服务器的地址指定为URI。支持两种类型的连接: tcp:// 表示TCP链接; * ssl:// 表示用SSL/TLS协议的安全TCP链接。 * 例如:

* *

如果没有指定端口,将默认以tcp://"开头的地址为1883端口, * 默认以 ssl://开头的地址为8883端口。 * 客户端识标符 clientId 必须被指定并且长度要小于65535个字符。 * 它必须是唯一的所有客户端连接到同一服务器。 * 服务器使用客户端识标符来存储与客户机相关的数据,因此,如果需要持久订阅或可靠的消息传递, * 那么在连接到服务器时,客户端识标符必须保持不变。 *

提供了一种方便的方法来生成应该满足此条件的随机客户机识标符 - {@link #generateClientId()}。 * 由于服务器在重新连接时使用客户机标识符来标识客户机, * 因此如果需要持久订阅或可靠的消息传递,客户机必须在连接之间使用相同的标识符。 *

*

* 在Java SE中,SSL可以通过以下几种方式之一进行配置,客户机将按照以下顺序使用这些方式: *

* * *

在Java ME中,平台设置用于SSL连接。

*

* 持久性机制用于启用可靠的消息传递。 * 对于以服务质量(QoS) 1或2发送的消息要可靠地交付,必须存储消息(在客户机和服务器上),直到消息交付完成。 * 如果消息在交付时没有安全存储,那么客户机或服务器中的故障可能导致丢失消息。 * 通过{@link MqttClientPersistence}接口支持可插入持久性机制。 * 必须指定安全存储消息的此接口的实现程序,以便消息的交付是可靠的。 * 此外, {@link MqttConnectOptions#setCleanSession(boolean)}必须设置为false。 * 如果只发送或接收QoS 0消息或清除会话(cleanSession)被设置为true,则不需要安全存储。 *

*

类{@link MqttDefaultFilePersistence}中提供了基于文件的持久性的实现, * 它将在所有基于Java SE的系统中工作。如果不需要持久性, * 则可以显式地将持久性参数设置为null.

* * Create an MqttClient that can be used to communicate with an MQTT server. *

* The address of a server can be specified on the constructor. Alternatively * a list containing one or more servers can be specified using the * {@link MqttConnectOptions#setServerURIs(String[]) setServerURIs} method * on MqttConnectOptions. * *

The serverURI parameter is typically used with the * the clientId parameter to form a key. The key * is used to store and reference messages while they are being delivered. * Hence the serverURI specified on the constructor must still be specified even if a list * of servers is specified on an MqttConnectOptions object. * The serverURI on the constructor must remain the same across * restarts of the client for delivery of messages to be maintained from a given * client to a given server or set of servers. * *

The address of the server to connect to is specified as a URI. Two types of * connection are supported tcp:// for a TCP connection and * ssl:// for a TCP connection secured by SSL/TLS. * For example:

* *

* If the port is not specified, it will * default to 1883 for tcp://" URIs, and 8883 for ssl:// URIs. * A client identifier clientId must be specified and be less that 65535 characters. * It must be unique across all clients connecting to the same * server. The clientId is used by the server to store data related to the client, * hence it is important that the clientId remain the same when connecting to a server * if durable subscriptions or reliable messaging are required. *

A convenience method is provided to generate a random client id that * should satisfy this criteria - {@link #generateClientId()}. As the client identifier * is used by the server to identify a client when it reconnects, the client must use the * same identifier between connections if durable subscriptions or reliable * delivery of messages is required. *

*

* In Java SE, SSL can be configured in one of several ways, which the * client will use in the following order: *

* * *

In Java ME, the platform settings are used for SSL connections.

*

* A persistence mechanism is used to enable reliable messaging. * For messages sent at qualities of service (QoS) 1 or 2 to be reliably delivered, * messages must be stored (on both the client and server) until the delivery of the message * is complete. If messages are not safely stored when being delivered then * a failure in the client or server can result in lost messages. A pluggable * persistence mechanism is supported via the {@link MqttClientPersistence} * interface. An implementer of this interface that safely stores messages * must be specified in order for delivery of messages to be reliable. In * addition {@link MqttConnectOptions#setCleanSession(boolean)} must be set * to false. In the event that only QoS 0 messages are sent or received or * cleanSession is set to true then a safe store is not needed. *

*

An implementation of file-based persistence is provided in * class {@link MqttDefaultFilePersistence} which will work in all Java SE based * systems. If no persistence is needed, the persistence parameter * can be explicitly set to null.

* * @param serverURI the address of the server to connect to, specified as a URI. Can be overridden using * {@link MqttConnectOptions#setServerURIs(String[])} * @param clientId a client identifier that is unique on the server being connected to * @param persistence the persistence class to use to store in-flight message. If null then the * default persistence mechanism is used * @throws IllegalArgumentException if the URI does not start with * "tcp://", "ssl://" or "local://" * @throws IllegalArgumentException if the clientId is null or is greater than 65535 characters in length * @throws MqttException if any other problem was encountered */ public MqttClient(String serverURI, String clientId, MqttClientPersistence persistence) throws MqttException { aClient = new MqttAsyncClient(serverURI, clientId, persistence); } /** * Create an MqttClient that can be used to communicate with an MQTT server. *

* The address of a server can be specified on the constructor. Alternatively * a list containing one or more servers can be specified using the * {@link MqttConnectOptions#setServerURIs(String[]) setServerURIs} method * on MqttConnectOptions. * *

The serverURI parameter is typically used with the * the clientId parameter to form a key. The key * is used to store and reference messages while they are being delivered. * Hence the serverURI specified on the constructor must still be specified even if a list * of servers is specified on an MqttConnectOptions object. * The serverURI on the constructor must remain the same across * restarts of the client for delivery of messages to be maintained from a given * client to a given server or set of servers. * *

The address of the server to connect to is specified as a URI. Two types of * connection are supported tcp:// for a TCP connection and * ssl:// for a TCP connection secured by SSL/TLS. * For example: *

* *

If the port is not specified, it will * default to 1883 for tcp://" URIs, and 8883 for ssl:// URIs. *

* *

* A client identifier clientId must be specified and be less that 65535 characters. * It must be unique across all clients connecting to the same * server. The clientId is used by the server to store data related to the client, * hence it is important that the clientId remain the same when connecting to a server * if durable subscriptions or reliable messaging are required. *

A convenience method is provided to generate a random client id that * should satisfy this criteria - {@link #generateClientId()}. As the client identifier * is used by the server to identify a client when it reconnects, the client must use the * same identifier between connections if durable subscriptions or reliable * delivery of messages is required. *

*

* In Java SE, SSL can be configured in one of several ways, which the * client will use in the following order: *

* * *

In Java ME, the platform settings are used for SSL connections.

*

* A persistence mechanism is used to enable reliable messaging. * For messages sent at qualities of service (QoS) 1 or 2 to be reliably delivered, * messages must be stored (on both the client and server) until the delivery of the message * is complete. If messages are not safely stored when being delivered then * a failure in the client or server can result in lost messages. A pluggable * persistence mechanism is supported via the {@link MqttClientPersistence} * interface. An implementer of this interface that safely stores messages * must be specified in order for delivery of messages to be reliable. In * addition {@link MqttConnectOptions#setCleanSession(boolean)} must be set * to false. In the event that only QoS 0 messages are sent or received or * cleanSession is set to true then a safe store is not needed. *

*

An implementation of file-based persistence is provided in * class {@link MqttDefaultFilePersistence} which will work in all Java SE based * systems. If no persistence is needed, the persistence parameter * can be explicitly set to null.

* * @param serverURI the address of the server to connect to, specified as a URI. Can be overridden using * {@link MqttConnectOptions#setServerURIs(String[])} * @param clientId a client identifier that is unique on the server being connected to * @param persistence the persistence class to use to store in-flight message. If null then the * default persistence mechanism is used * @param executorService used for managing threads. If null then a newScheduledThreadPool is used. * @throws IllegalArgumentException if the URI does not start with * "tcp://", "ssl://" or "local://" * @throws IllegalArgumentException if the clientId is null or is greater than 65535 characters in length * @throws MqttException if any other problem was encountered */ public MqttClient(String serverURI, String clientId, MqttClientPersistence persistence, ScheduledExecutorService executorService) throws MqttException { aClient = new MqttAsyncClient(serverURI, clientId, persistence, new ScheduledExecutorPingSender(executorService), executorService); } /* * @see IMqttClient#connect() */ public void connect() throws MqttSecurityException, MqttException { this.connect(new MqttConnectOptions()); } /* * @see IMqttClient#connect(MqttConnectOptions) */ public void connect(MqttConnectOptions options) throws MqttSecurityException, MqttException { aClient.connect(options, null, null).waitForCompletion(getTimeToWait()); } /* * @see IMqttClient#connect(MqttConnectOptions) */ public IMqttToken connectWithResult(MqttConnectOptions options) throws MqttSecurityException, MqttException { IMqttToken tok = aClient.connect(options, null, null); tok.waitForCompletion(getTimeToWait()); return tok; } /* * @see IMqttClient#disconnect() */ public void disconnect() throws MqttException { aClient.disconnect().waitForCompletion(); } /* * @see IMqttClient#disconnect(long) */ public void disconnect(long quiesceTimeout) throws MqttException { aClient.disconnect(quiesceTimeout, null, null).waitForCompletion(); } /* * (non-Javadoc) * * @see org.eclipse.paho.client.mqttv3.IMqttAsyncClient#disconnectForcibly() */ public void disconnectForcibly() throws MqttException { aClient.disconnectForcibly(); } /* * (non-Javadoc) * * @see org.eclipse.paho.client.mqttv3.IMqttAsyncClient#disconnectForcibly(long) */ public void disconnectForcibly(long disconnectTimeout) throws MqttException { aClient.disconnectForcibly(disconnectTimeout); } /* * (non-Javadoc) * * @see org.eclipse.paho.client.mqttv3.IMqttAsyncClient#disconnectForcibly(long, long) */ public void disconnectForcibly(long quiesceTimeout, long disconnectTimeout) throws MqttException { aClient.disconnectForcibly(quiesceTimeout, disconnectTimeout); } /** * Disconnects from the server forcibly to reset all the states. Could be useful when disconnect attempt failed. *

* Because the client is able to establish the TCP/IP connection to a none MQTT server and it will certainly fail to * send the disconnect packet. * * @param quiesceTimeout the amount of time in milliseconds to allow for existing work to finish before * disconnecting. A value of zero or less means the client will not quiesce. * @param disconnectTimeout the amount of time in milliseconds to allow send disconnect packet to server. * @param sendDisconnectPacket if true, will send the disconnect packet to the server * @throws MqttException if any unexpected error */ public void disconnectForcibly(long quiesceTimeout, long disconnectTimeout, boolean sendDisconnectPacket) throws MqttException { aClient.disconnectForcibly(quiesceTimeout, disconnectTimeout, sendDisconnectPacket); } /* * @see IMqttClient#subscribe(String) */ public void subscribe(String topicFilter) throws MqttException { this.subscribe(new String[] {topicFilter}, new int[] {1}); } /* * @see IMqttClient#subscribe(String[]) */ public void subscribe(String[] topicFilters) throws MqttException { int[] qos = new int[topicFilters.length]; for (int i=0; iSet the maximum time to wait for an action to complete before * returning control to the invoking application. Control is returned * when:

* *

* The default value is -1 which means the action will not timeout. * In the event of a timeout the action carries on running in the * background until it completes. The timeout is used on methods that * block while the action is in progress. *

* @param timeToWaitInMillis before the action times out. A value or 0 or -1 will wait until * the action finishes and not timeout. * @throws IllegalArgumentException if timeToWaitInMillis is invalid */ public void setTimeToWait(long timeToWaitInMillis) throws IllegalArgumentException{ if (timeToWaitInMillis < -1) { throw new IllegalArgumentException(); } this.timeToWait = timeToWaitInMillis; } /** * Return the maximum time to wait for an action to complete. * @return the time to wait * @see MqttClient#setTimeToWait(long) */ public long getTimeToWait() { return this.timeToWait; } /* (non-Javadoc) * @see org.eclipse.paho.client.mqttv3.IMqttClient#close() */ public void close() throws MqttException { aClient.close(false); } /* (non-Javadoc) * @see org.eclipse.paho.client.mqttv3.IMqttClient#close() */ public void close(boolean force) throws MqttException { aClient.close(force); } /* (non-Javadoc) * @see org.eclipse.paho.client.mqttv3.IMqttClient#getClientId() */ public String getClientId() { return aClient.getClientId(); } /* (non-Javadoc) * @see org.eclipse.paho.client.mqttv3.IMqttClient#getPendingDeliveryTokens() */ public IMqttDeliveryToken[] getPendingDeliveryTokens() { return aClient.getPendingDeliveryTokens(); } /* (non-Javadoc) * @see org.eclipse.paho.client.mqttv3.IMqttClient#getServerURI() */ public String getServerURI() { return aClient.getServerURI(); } /** * Returns the currently connected Server URI * Implemented due to: https://bugs.eclipse.org/bugs/show_bug.cgi?id=481097 * * Where getServerURI only returns the URI that was provided in * MqttAsyncClient's constructor, getCurrentServerURI returns the URI of the * Server that the client is currently connected to. This would be different in scenarios * where multiple server URIs have been provided to the MqttConnectOptions. * * @return the currently connected server URI */ public String getCurrentServerURI(){ return aClient.getCurrentServerURI(); } /* (non-Javadoc) * @see org.eclipse.paho.client.mqttv3.IMqttClient#getTopic(java.lang.String) */ public MqttTopic getTopic(String topic) { return aClient.getTopic(topic); } /* (non-Javadoc) * @see org.eclipse.paho.client.mqttv3.IMqttClient#isConnected() */ public boolean isConnected() { return aClient.isConnected(); } /* (non-Javadoc) * @see org.eclipse.paho.client.mqttv3.IMqttClient#setCallback(org.eclipse.paho.client.mqttv3.MqttCallback) */ public void setCallback(MqttCallback callback) { aClient.setCallback(callback); } /* (non-Javadoc) * @see org.eclipse.paho.client.mqttv3.IMqttClient#setCallback(org.eclipse.paho.client.mqttv3.MqttCallback) */ public void setManualAcks(boolean manualAcks) { aClient.setManualAcks(manualAcks); } public void messageArrivedComplete(int messageId, int qos) throws MqttException { aClient.messageArrivedComplete(messageId, qos); } /** * Returns a randomly generated client identifier based on the current user's login * name and the system time. *

When cleanSession is set to false, an application must ensure it uses the * same client identifier when it reconnects to the server to resume state and maintain * assured message delivery.

* @return a generated client identifier * @see MqttConnectOptions#setCleanSession(boolean) */ public static String generateClientId() { return MqttAsyncClient.generateClientId(); } /** * Will attempt to reconnect to the server after the client has lost connection. * @throws MqttException if an error occurs attempting to reconnect */ public void reconnect() throws MqttException { aClient.reconnect(); } /** * Return a debug object that can be used to help solve problems. * @return the {@link Debug} Object. */ public Debug getDebug() { return (aClient.getDebug()); } }