socket_listener.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 static void onMessageReceived(int socket_id,
  36. std::string message) override;
  37. private:
  38. // private methods
  39. int createSocket();
  40. int waitForConnection(int listening);
  41. // private members
  42. std::string m_ip_address;
  43. int m_port;
  44. };
  45. #endif // __SOCKET_LISTENER_H__