zoukankan      html  css  js  c++  java
  • mqtt 异步消息 长连接 解析

    mqtt 是轻量级基于代理的发布/订阅的消息传输协议,设计思想是开放,简单,轻量级,且易于实现,这些优点使得他受用于任何环境

    该协议的特点有:

     使用发布/订阅消息的模式,提供一对多的消息发布,解除应用程序耦合

    对负载内容屏蔽的消息传输

    使用TCP/IO 提供的网络连接

    有三种消息发布服务质量:

      "至多一次",消息发布完全依赖底层TCP/IP 网络,会发生消息丢失或者重复,这一级别可用于如下情况,环境,传感器数据,丢失一次度记录无所谓,因为不久之后会有第二次发送

      "至少一次" 确保消息到达,但消息重复可能发生

      “只有一次",确保消息到达一次,这一级别可用于如下情况,在计费系统中,消息重复或者丢失导致不正确的结果

    小型传输,开销很小(固定床都的头部是2个字节),协议变换最小化,以降低网络流量

    使用Last will和Testament 特性通知有关客户端异常中断的机制

    1:配置环境

    2:服务器端程序

    [java] view plain copy
     
    1. package com.example;  
    2.   
    3. import org.eclipse.paho.client.mqttv3.MqttClient;  
    4. import org.eclipse.paho.client.mqttv3.MqttConnectOptions;  
    5. import org.eclipse.paho.client.mqttv3.MqttDeliveryToken;  
    6. import org.eclipse.paho.client.mqttv3.MqttException;  
    7. import org.eclipse.paho.client.mqttv3.MqttMessage;  
    8. import org.eclipse.paho.client.mqttv3.MqttPersistenceException;  
    9. import org.eclipse.paho.client.mqttv3.MqttTopic;  
    10. import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;  
    11.   
    12.   
    13. /** 
    14.  * Description 
    15.  *   服务器向多个客户端推送主题,即不同客户端可向服务器订阅相同主题 
    16.  * Company Beijing  
    17.  * author  youxuan  E-mail:xuanyouwu@163.com 
    18.  * date createTime:16/7/13 
    19.  * version 
    20.  */  
    21. public class Server {  
    22.   
    23.     public static final String HOST = "tcp://101.200.133.189:1883";  
    24.     public static final String TOPIC = "toclient/124";  
    25.     public static final String TOPIC125 = "toclient/125";  
    26.     private static final String clientid = "server";  
    27.   
    28.     private MqttClient client;  
    29.     private MqttTopic topic;  
    30.     private MqttTopic topic125;  
    31.     private String userName = "admin";  
    32.     private String passWord = "password";  
    33.   
    34.     private MqttMessage message;  
    35.   
    36.     public Server() throws MqttException {  
    37.         // MemoryPersistence设置clientid的保存形式,默认为以内存保存  
    38.         client = new MqttClient(HOST, clientid, new MemoryPersistence());  
    39.         connect();  
    40.     }  
    41.   
    42.     private void connect() {  
    43.         MqttConnectOptions options = new MqttConnectOptions();  
    44.         options.setCleanSession(false);  
    45.         options.setUserName(userName);  
    46.         options.setPassword(passWord.toCharArray());  
    47.         // 设置超时时间  
    48.         options.setConnectionTimeout(10);  
    49.         // 设置会话心跳时间  
    50.         options.setKeepAliveInterval(20);  
    51.         try {  
    52.             client.setCallback(new PushCallback());  
    53.             client.connect(options);  
    54.             topic = client.getTopic(TOPIC);  
    55.             topic125 = client.getTopic(TOPIC125);  
    56.         } catch (Exception e) {  
    57.             e.printStackTrace();  
    58.         }  
    59.     }  
    60.   
    61.     public void publish(MqttTopic topic, MqttMessage message) throws MqttPersistenceException,  
    62.             MqttException {  
    63.         MqttDeliveryToken token = topic.publish(message);  
    64.         token.waitForCompletion();  
    65.         System.out.println("message is published completely! "  
    66.                 + token.isComplete());  
    67.     }  
    68.   
    69.     public static void main(String[] args) throws MqttException {  
    70.         Server server = new Server();  
    71.   
    72.         server.message = new MqttMessage();  
    73.         server.message.setQos(2);  
    74.         server.message.setRetained(true);  
    75.         server.message.setPayload("给客户端124推送的信息:wuyouxuan".getBytes());  
    76.         server.publish(server.topic, server.message);  
    77.   
    78.         server.message = new MqttMessage();  
    79.         server.message.setQos(2);  
    80.         server.message.setRetained(true);  
    81.         server.message.setPayload("给客户端125推送的信息:wuyouxuan".getBytes());  
    82.         server.publish(server.topic125, server.message);  
    83.   
    84.         System.out.println(server.message.isRetained() + "------ratained状态");  
    85.     }  
    86. }  


    回调监听

    [java] view plain copy
     
    1. package com.example;  
    2.     
    3. import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken;  
    4. import org.eclipse.paho.client.mqttv3.MqttCallback;    
    5. import org.eclipse.paho.client.mqttv3.MqttMessage;    
    6.     
    7. /**   
    8.  * 发布消息的回调类   
    9.  *    
    10.  * 必须实现MqttCallback的接口并实现对应的相关接口方法CallBack 类将实现 MqttCallBack。   
    11.  * 每个客户机标识都需要一个回调实例。在此示例中,构造函数传递客户机标识以另存为实例数据。 
    12.  * 在回调中,将它用来标识已经启动了该回调的哪个实例。   
    13.  * 必须在回调类中实现三个方法:   
    14.  *    
    15.  *  public void messageArrived(MqttTopic topic, MqttMessage message)接收已经预订的发布。   
    16.  *    
    17.  *  public void connectionLost(Throwable cause)在断开连接时调用。   
    18.  *    
    19.  *  public void deliveryComplete(MqttDeliveryToken token))   
    20.  *  接收到已经发布的 QoS 1 或 QoS 2 消息的传递令牌时调用。   
    21.  *  由 MqttClient.connect 激活此回调。   
    22.  *    
    23.  */      
    24. public class PushCallback implements MqttCallback {    
    25.     
    26.     public void connectionLost(Throwable cause) {    
    27.         // 连接丢失后,一般在这里面进行重连    
    28.         System.out.println("连接断开,可以做重连");    
    29.     }    
    30.       
    31.     public void deliveryComplete(IMqttDeliveryToken token) {  
    32.         System.out.println("deliveryComplete---------" + token.isComplete());    
    33.     }  
    34.   
    35.     public void messageArrived(String topic, MqttMessage message) throws Exception {  
    36.         // subscribe后得到的消息会执行到这里面    
    37.         System.out.println("接收消息主题 : " + topic);    
    38.         System.out.println("接收消息Qos : " + message.getQos());    
    39.         System.out.println("接收消息内容 : " + new String(message.getPayload()));    
    40.     }    
    41. }  

    3:客户端程序

    [java] view plain copy
     
    1. package com.example;  
    2.     
    3. import org.eclipse.paho.client.mqttv3.MqttClient;  
    4. import org.eclipse.paho.client.mqttv3.MqttConnectOptions;  
    5. import org.eclipse.paho.client.mqttv3.MqttException;  
    6. import org.eclipse.paho.client.mqttv3.MqttTopic;  
    7. import org.eclipse.paho.client.mqttv3.persist.MemoryPersistence;  
    8.   
    9. import java.util.concurrent.ScheduledExecutorService;  
    10.   
    11. /** 
    12.  * Description 
    13.  *   客户端程序 
    14.  * Company Beijing  
    15.  * author  youxuan  E-mail:xuanyouwu@163.com 
    16.  * date createTime:16/7/13 
    17.  * version 
    18.  */  
    19. public class Client {  
    20.   
    21.     public static final String HOST = "tcp://101.200.133.189:1883";  
    22.   
    23.     public static final String TOPIC = "toclient/124";    
    24.     private static final String clientid = "client124";    
    25.     private MqttClient client;    
    26.     private MqttConnectOptions options;    
    27.     private String userName = "admin";  
    28.     private String passWord = "password";  
    29.     
    30.     private ScheduledExecutorService scheduler;    
    31.     
    32.     private void start() {    
    33.         try {    
    34.             // host为主机名,clientid即连接MQTT的客户端ID,一般以唯一标识符表示,MemoryPersistence设置clientid的保存形式,默认为以内存保存    
    35.             client = new MqttClient(HOST, clientid, new MemoryPersistence());    
    36.             // MQTT的连接设置    
    37.             options = new MqttConnectOptions();    
    38.             // 设置是否清空session,这里如果设置为false表示服务器会保留客户端的连接记录,这里设置为true表示每次连接到服务器都以新的身份连接    
    39.             options.setCleanSession(true);    
    40.             // 设置连接的用户名    
    41.             options.setUserName(userName);    
    42.             // 设置连接的密码    
    43.             options.setPassword(passWord.toCharArray());    
    44.             // 设置超时时间 单位为秒    
    45.             options.setConnectionTimeout(10);    
    46.             // 设置会话心跳时间 单位为秒 服务器会每隔1.5*20秒的时间向客户端发送个消息判断客户端是否在线,但这个方法并没有重连的机制    
    47.             options.setKeepAliveInterval(20);    
    48.             // 设置回调    
    49.             client.setCallback(new PushCallback());    
    50.             MqttTopic topic = client.getTopic(TOPIC);    
    51.             //setWill方法,如果项目中需要知道客户端是否掉线可以调用该方法。设置最终端口的通知消息      
    52.             options.setWill(topic, "close".getBytes(), 2, true);    
    53.                 
    54.             client.connect(options);    
    55.             //订阅消息    
    56.             int[] Qos  = {1};    
    57.             String[] topic1 = {TOPIC};    
    58.             client.subscribe(topic1, Qos);    
    59.               
    60.         } catch (Exception e) {    
    61.             e.printStackTrace();    
    62.         }    
    63.     }    
    64.      
    65.     public static void main(String[] args) throws MqttException {       
    66.         Client client = new Client();    
    67.         client.start();    
    68.     }    
    69. }  

    参考网站:

    https://segmentfault.com/a/1190000002809450#articleHeader0

    github 开源项目   https://github.com/fusesource/mqtt-client


    运行效果:

  • 相关阅读:
    POJ1201 Intervals
    POJ3169 Layout
    POJ1692 Crossed Matchings
    POJ1671 Rhyme Schemes
    POJ1742 Coins
    BZOJ2662: [BeiJing wc2012]冻结
    BZOJ 2330: [SCOI2011]糖果
    NOIP2015提高组T2 洛谷P2661 信息传递
    洛谷P1197 [JSOI2008]星球大战
    HDU3538 A sample Hamilton path
  • 原文地址:https://www.cnblogs.com/jiangzhaowei/p/8781980.html
Copyright © 2011-2022 走看看