103-asio_ping-pong-2-threads.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. //
  2. // Copyright (c) 2019-2022 Ivan Baidakou (basiliscos) (the dot dmol at gmail dot com)
  3. //
  4. // Distributed under the MIT Software License
  5. //
  6. #include "rotor.hpp"
  7. #include "rotor/asio.hpp"
  8. #include "supervisor_asio_test.h"
  9. #include "actor_test.h"
  10. #include <iostream>
  11. namespace r = rotor;
  12. namespace ra = rotor::asio;
  13. namespace rt = r::test;
  14. namespace asio = boost::asio;
  15. namespace pt = boost::posix_time;
  16. struct ping_t {};
  17. struct pong_t {};
  18. struct pinger_t : public rt::actor_test_t {
  19. std::uint32_t ping_sent = 0;
  20. std::uint32_t pong_received = 0;
  21. using rt::actor_test_t::actor_test_t;
  22. void set_ponger_addr(const r::address_ptr_t &addr) { ponger_addr = addr; }
  23. void configure(r::plugin::plugin_base_t &plugin) noexcept override {
  24. plugin.with_casted<r::plugin::starter_plugin_t>([&](auto &p) { p.subscribe_actor(&pinger_t::on_pong); });
  25. plugin.with_casted<r::plugin::link_client_plugin_t>(
  26. [&](auto &p) { p.link(ponger_addr, true, [&](auto &ec) mutable { REQUIRE(!ec); }); });
  27. }
  28. void on_start() noexcept override {
  29. r::actor_base_t::on_start();
  30. do_send_ping();
  31. std::cout << "pinger start\n";
  32. }
  33. void shutdown_finish() noexcept override {
  34. r::actor_base_t::shutdown_finish();
  35. supervisor->shutdown();
  36. ponger_addr->supervisor.shutdown();
  37. std::cout << "pinger shutdown finish\n";
  38. }
  39. void on_pong(r::message_t<pong_t> &) noexcept {
  40. ++pong_received;
  41. do_shutdown();
  42. }
  43. void do_send_ping() {
  44. ++ping_sent;
  45. send<ping_t>(ponger_addr);
  46. }
  47. r::address_ptr_t ponger_addr;
  48. };
  49. struct ponger_t : public rt::actor_test_t {
  50. std::uint32_t ping_received = 0;
  51. std::uint32_t pong_sent = 0;
  52. using rt::actor_test_t::actor_test_t;
  53. void set_pinger_addr(const r::address_ptr_t &addr) { pinger_addr = addr; }
  54. void on_start() noexcept override {
  55. r::actor_base_t::on_start();
  56. std::cout << "ponger start\n";
  57. }
  58. void configure(r::plugin::plugin_base_t &plugin) noexcept override {
  59. plugin.with_casted<r::plugin::starter_plugin_t>([](auto &p) { p.subscribe_actor(&ponger_t::on_ping); });
  60. }
  61. void on_ping(r::message_t<ping_t> &) noexcept {
  62. ++ping_received;
  63. send<pong_t>(pinger_addr);
  64. ++pong_sent;
  65. }
  66. private:
  67. r::address_ptr_t pinger_addr;
  68. };
  69. TEST_CASE("ping/pong on 2 threads", "[supervisor][asio]") {
  70. using sup_t = rt::supervisor_asio_test_t;
  71. asio::io_context io_ctx1;
  72. asio::io_context io_ctx2;
  73. auto timeout = r::pt::milliseconds{10};
  74. auto sys_ctx1 = ra::system_context_asio_t::ptr_t{new ra::system_context_asio_t(io_ctx1)};
  75. auto sys_ctx2 = ra::system_context_asio_t::ptr_t{new ra::system_context_asio_t(io_ctx2)};
  76. auto strand1 = std::make_shared<asio::io_context::strand>(io_ctx1);
  77. auto strand2 = std::make_shared<asio::io_context::strand>(io_ctx2);
  78. auto sup1 = sys_ctx1->create_supervisor<sup_t>().strand(strand1).timeout(timeout).guard_context(true).finish();
  79. auto sup2 = sys_ctx2->create_supervisor<sup_t>().strand(strand2).timeout(timeout).guard_context(true).finish();
  80. auto pinger = sup1->create_actor<pinger_t>().timeout(timeout).finish();
  81. auto ponger = sup2->create_actor<ponger_t>().timeout(timeout).finish();
  82. std::cout << "sup1: " << sup1.get() << ", sup2: " << sup2.get() << "\n";
  83. std::cout << "pinger: " << pinger.get() << ", ponger: " << ponger.get() << "\n";
  84. auto &pinger_addr = static_cast<r::actor_base_t *>(pinger.get())->get_address();
  85. auto &ponger_addr = static_cast<r::actor_base_t *>(ponger.get())->get_address();
  86. std::cout << "pinger addr: " << pinger_addr.get() << ", ponger addr: " << ponger_addr.get() << "\n";
  87. pinger->set_ponger_addr(static_cast<r::actor_base_t *>(ponger.get())->get_address());
  88. ponger->set_pinger_addr(static_cast<r::actor_base_t *>(pinger.get())->get_address());
  89. sup1->start();
  90. sup2->start();
  91. auto t1 = std::thread([&] { io_ctx1.run(); });
  92. auto t2 = std::thread([&] { io_ctx2.run(); });
  93. t1.join();
  94. t2.join();
  95. if (pinger->ping_sent == 1) {
  96. CHECK(pinger->ping_sent == 1);
  97. CHECK(pinger->pong_received == 1);
  98. CHECK(ponger->ping_received == 1);
  99. CHECK(ponger->pong_sent == 1);
  100. } else {
  101. // this might happen due to unavoidable race between threads, system scheduler etc.
  102. // can be artificially archived launching tool like `stress-ng --cpu 8`
  103. // and/or set small timeout
  104. // no special action is needed, as the pinger will trigger shutdown for the
  105. // both threads
  106. }
  107. CHECK(static_cast<r::actor_base_t *>(sup1.get())->access<rt::to::state>() == r::state_t::SHUT_DOWN);
  108. CHECK(sup1->get_leader_queue().size() == 0);
  109. CHECK(rt::empty(sup1->get_subscription()));
  110. CHECK(static_cast<r::actor_base_t *>(sup2.get())->access<rt::to::state>() == r::state_t::SHUT_DOWN);
  111. CHECK(sup2->get_leader_queue().size() == 0);
  112. CHECK(rt::empty(sup2->get_subscription()));
  113. REQUIRE(pinger->get_state() == r::state_t::SHUT_DOWN);
  114. REQUIRE(ponger->get_state() == r::state_t::SHUT_DOWN);
  115. }