socket_listener.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #ifndef __SOCKET_LISTENER_H__
  2. #define __SOCKET_LISTENER_H__
  3. // Project libraries
  4. #include "listen_interface.h"
  5. #include "send_interface.h"
  6. // System libraries
  7. #include <sys/socket.h>
  8. // C++ Libraries
  9. #include <string>
  10. #define MAX_BUFFER_SIZE (49152)
  11. class SocketListener : public ListenInterface, public SendInterface {
  12. public:
  13. // constructor
  14. SocketListener(std::string ipAddress, int port);
  15. // destructor
  16. ~SocketListener();
  17. /**
  18. * Send a message to a client socket described by its file descriptor
  19. * @param[in] {int} client_socket_fd The client socket file descriptor
  20. * @param[in] {std::string} The message to be sent
  21. */
  22. virtual void sendMessage(int client_socket_fd, std::string message) override;
  23. /**
  24. * Perform intialization work
  25. */
  26. bool init();
  27. /**
  28. * Main message loop
  29. */
  30. void run();
  31. /**
  32. * Perform any cleanup work
  33. */
  34. void cleanup();
  35. virtual void onMessageReceived(int socket_id, std::string message) override;
  36. private:
  37. // private methods
  38. int createSocket();
  39. int waitForConnection(int listening);
  40. // private members
  41. std::string m_ip_address;
  42. int m_port;
  43. };
  44. #endif // __SOCKET_LISTENER_H__