socket_listener.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #ifndef __SOCKET_LISTENER_H__
  2. #define __SOCKET_LISTENER_H__
  3. // Project libraries
  4. #include "send_interface.h"
  5. #include "types.h"
  6. // System libraries
  7. #include <sys/socket.h>
  8. // C++ Libraries
  9. #include <atomic>
  10. #include <condition_variable>
  11. #include <functional>
  12. #include <iostream>
  13. #include <memory>
  14. #include <mutex>
  15. #include <queue>
  16. #include <string>
  17. #include <thread>
  18. #include <vector>
  19. class SocketListener : public SendInterface {
  20. public:
  21. class MessageHandler {
  22. public:
  23. MessageHandler(std::function<void()> cb) : m_cb(cb) {}
  24. void operator()() { m_cb(); }
  25. private:
  26. // int m_client_socket_fd;
  27. // std::shared_ptr<char[]> m_char_ptr;
  28. std::function<void()> m_cb;
  29. };
  30. // constructor
  31. SocketListener(std::string ipAddress, int port);
  32. // destructor
  33. ~SocketListener();
  34. /**
  35. * Send a message to a client socket described by its file descriptor
  36. * @param[in] {int} client_socket_fd The client socket file descriptor
  37. * @param[in] {std::string} The message to be sent
  38. */
  39. virtual void sendMessage(int client_socket_fd,
  40. std::shared_ptr<char[]> buffer) override;
  41. MessageHandler createMessageHandler(std::function<void()> cb);
  42. /**
  43. * Perform intialization work
  44. */
  45. bool init();
  46. /**
  47. * Main message loop
  48. */
  49. void run();
  50. /**
  51. * Perform any cleanup work
  52. */
  53. void cleanup();
  54. // virtual void setMessageHandler(MessageHandler message_handler) override;
  55. private:
  56. // private methods
  57. int createSocket();
  58. int waitForConnection(int listening);
  59. void loop_check();
  60. void done();
  61. void handle_loop();
  62. void detachThreads();
  63. void push_to_queue(std::function<void()> fn);
  64. void handle_client_socket(int client_socket_fd,
  65. SocketListener::MessageHandler message_handler,
  66. std::shared_ptr<char[]> buf);
  67. // private members
  68. std::string m_ip_address;
  69. int m_port;
  70. std::thread m_loop_thread;
  71. std::queue<std::function<void()>> task_queue;
  72. std::mutex m_mutex_lock;
  73. std::condition_variable pool_condition;
  74. std::atomic<bool> accepting_tasks;
  75. std::atomic<bool> shutdown_loop;
  76. std::atomic<bool> m_loop_switch;
  77. std::vector<std::thread> thread_pool;
  78. };
  79. #endif // __SOCKET_LISTENER_H__