testSocket.lua 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. --- testSocket
  2. -- @module testSocket
  3. -- @author AIRM2M
  4. -- @license MIT
  5. -- @copyright openLuat.com
  6. -- @release 2018.10.27
  7. require "socket"
  8. module(..., package.seeall)
  9. -- 此处的IP和端口请填上你自己的socket服务器和端口
  10. local ip, port, c = "116.62.220.88", "10004"
  11. -- tcp test
  12. sys.taskInit(function()
  13. local r, s, p
  14. local recv_cnt, send_cnt = 0, 0
  15. while true do
  16. while not socket.isReady() do
  17. sys.wait(1000)
  18. end
  19. c = socket.tcp()
  20. while not c:connect(ip, port) do sys.wait(2000) end
  21. while true do
  22. r, s, p = c:recv(120000, "pub_msg")
  23. if r then
  24. recv_cnt = recv_cnt + #s
  25. log.info("这是收到的服务器下发的数据统计:", recv_cnt, "和前30个字节:", s:sub(1, 30))
  26. elseif s == "pub_msg" then
  27. send_cnt = send_cnt + #p
  28. log.info("这是收到别的线程发来的数据消息!", send_cnt, "和前30个字节", p:sub(1, 30))
  29. if not c:send(p) then break end
  30. elseif s == "timeout" then
  31. log.info("这是等待超时发送心跳包的显示!")
  32. if not c:send("ping") then break end
  33. else
  34. log.info("这是socket连接错误的显示!")
  35. break
  36. end
  37. end
  38. c:close()
  39. end
  40. end)
  41. -- 测试代码,用于发送消息给socket
  42. sys.taskInit(function()
  43. while not socket.isReady() do
  44. --sys.wait(2000)
  45. sys.waitUntil("IP_READY_IND",300000)
  46. end
  47. sys.wait(10000)
  48. -- 这是演示用sys.publish()发送数据
  49. for i = 1, 10 do
  50. sys.publish("pub_msg", string.rep("0123456789", 1024))
  51. sys.wait(500)
  52. end
  53. end)
  54. --[[
  55. local timerIds = {}
  56. sys.taskInit(function()
  57. sys.wait(10000)
  58. -- 定时器创建测试
  59. for i = 1, 2000 do
  60. local timerId
  61. timerId = sys.timerLoopStart(function(index)
  62. log.info("testSocket.timerLoopStart","index:",index,"index:",timerIds[index])
  63. end, 5000, i)
  64. if timerId then
  65. timerIds[i] = timerId
  66. end
  67. sys.wait(1000)
  68. end
  69. end)
  70. sys.timerLoopStart(function()
  71. log.info("打印占用的内存:", _G.collectgarbage("count"))-- 打印占用的RAM
  72. log.info("打印可用的空间", rtos.get_fs_free_size())-- 打印剩余FALSH,单位Byte
  73. end, 1000)
  74. ]]
  75. --发布消息
  76. sys.taskInit(function()
  77. sys.wait(10000)
  78. log.info("testSocket.pub_msg_test","start publish msg")
  79. -- 这是演示用sys.publish()发送数据
  80. for i = 1, 10 do
  81. sys.publish("pub_msg_test", i)
  82. sys.wait(500)
  83. end
  84. log.info("testSocket.pub_msg_test","publish msg finish")
  85. end)
  86. --无等待接收信息
  87. sys.taskInit(
  88. function()
  89. while true do
  90. log.info("testSocket.waitUntil.pub_msg_test1","wait pub_msg_test message ...")
  91. local res,data = sys.waitUntil("pub_msg_test", 3600*1000)
  92. if res then
  93. log.info("testSocket.waitUntil.pub_msg_test1","receive pub_msg_test message, data:",data)
  94. else
  95. log.info("testSocket.waitUntil.pub_msg_test1","wait pub_msg_test timeout")
  96. end
  97. end
  98. end)
  99. --有等待接收信息
  100. sys.taskInit(
  101. function()
  102. while true do
  103. log.info("testSocket.waitUntil.pub_msg_test2","wait pub_msg_test message ...")
  104. local res,data = sys.waitUntil("pub_msg_test", 3600*1000)
  105. if res then
  106. log.info("testSocket.waitUntil.pub_msg_test2","receive pub_msg_test message, data:",data)
  107. sys.wait(1000)
  108. else
  109. log.info("testSocket.waitUntil.pub_msg_test2","wait pub_msg_test timeout")
  110. end
  111. end
  112. end)