socket_listener.hpp 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #ifndef __SOCKET_LISTENER_H__
  2. #define __SOCKET_LISTENER_H__
  3. // Project libraries
  4. #include "interface/listen_interface.hpp"
  5. #include "interface/send_interface.hpp"
  6. #include "task_queue.hpp"
  7. #include "types.hpp"
  8. // System libraries
  9. #include <sys/socket.h>
  10. // C++ Libraries
  11. #include <functional>
  12. #include <iostream>
  13. #include <memory>
  14. #include <string>
  15. #include <vector>
  16. /**
  17. * SocketListener
  18. *
  19. * SocketListener is extensible to aid in architecting a socket server
  20. */
  21. class SocketListener : public SendInterface, public ListenInterface {
  22. public:
  23. /* public classes whose instances are used by SocketListener */
  24. /**
  25. * MessageHandler
  26. *
  27. * Instances of this object type wrap a generic, self-contained function and
  28. * behave as callable functions (functors)
  29. * @class
  30. */
  31. class MessageHandler {
  32. public:
  33. MessageHandler(std::function<void()> cb) : m_cb(cb) {}
  34. void operator()() { m_cb(); }
  35. private:
  36. std::function<void()> m_cb;
  37. };
  38. // constructor
  39. SocketListener(int arg_num, char** args);
  40. // destructor
  41. ~SocketListener();
  42. /**
  43. * Send a message to a client socket described by its file descriptor
  44. * @param[in] {int} client_socket_fd The client socket file descriptor
  45. * @param[in] {std::string} The message to be sent
  46. */
  47. virtual void sendMessage(int client_socket_fd,
  48. std::weak_ptr<char[]> w_buffer_ptr) override;
  49. /** overload variants */
  50. void sendMessage(int client_socket_fd, char* message, bool short_message);
  51. void sendMessage(int client_socket_fd, char* message, size_t size);
  52. void sendMessage(int client_socket_fd, const char* message, size_t size);
  53. MessageHandler createMessageHandler(std::function<void()> cb);
  54. /**
  55. * Perform intialization work
  56. */
  57. bool init();
  58. /**
  59. * Main message loop
  60. */
  61. void run();
  62. /**
  63. * Perform any cleanup work
  64. */
  65. void cleanup();
  66. private:
  67. // private methods
  68. int createSocket();
  69. virtual void onMessageReceived(int client_socket_fd,
  70. std::weak_ptr<char[]> w_buffer_ptr) override;
  71. int waitForConnection(int listening);
  72. void handleClientSocket(int client_socket_fd,
  73. SocketListener::MessageHandler message_handler,
  74. const std::shared_ptr<char[]>& s_buffer_ptr);
  75. /* private members */
  76. // Server arguments
  77. std::string m_ip_address;
  78. int m_port;
  79. std::unique_ptr<TaskQueue> u_task_queue_ptr;
  80. };
  81. #endif // __SOCKET_LISTENER_H__