socket_listener.cpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #include <arpa/inet.h>
  2. #include <netdb.h>
  3. #include <string.h>
  4. #include <sys/types.h>
  5. #include <unistd.h>
  6. #include <iostream>
  7. #include <string>
  8. #include <sys/socket.h>
  9. #include "headers/constants.h"
  10. #include "headers/socket_listener.h"
  11. int listening() { return socket(AF_INET, SOCK_STREAM, 0); }
  12. SocketListener::SocketListener(std::string ip_address, int port)
  13. : m_ip_address(ip_address), m_port(port) {}
  14. // destructor
  15. SocketListener::~SocketListener() { cleanup(); }
  16. // Send message to client
  17. void SocketListener::sendMessage(int clientSocket, std::string msg) {
  18. send(clientSocket, msg.c_str(), msg.size() + 1, 0);
  19. }
  20. // Initialize
  21. bool SocketListener::init() {
  22. std::cout << "Initializing socket listener" << std::endl;
  23. return true;
  24. }
  25. // Main process loop
  26. void SocketListener::run() {
  27. char buf[MAX_BUFFER_SIZE];
  28. while (true) {
  29. int listening = createSocket();
  30. if (listening == SOCKET_ERROR) {
  31. std::cout << "Socket error: shutting down server" << std::endl;
  32. break;
  33. }
  34. int socket = waitForConnection(listening);
  35. if (socket != SOCKET_ERROR) {
  36. close(listening);
  37. std::string buffer_string;
  38. while (true) {
  39. memset(buf, 0, MAX_BUFFER_SIZE);
  40. int bytesReceived = 0;
  41. bytesReceived = recv(socket, buf, MAX_BUFFER_SIZE - 2, 0);
  42. buf[MAX_BUFFER_SIZE - 1] = 0;
  43. if (bytesReceived > 0) {
  44. // TODO: Verify that we aren't producig undefined behaviour
  45. buffer_string += buf;
  46. std::cout << "Received: " << buffer_string << std::endl;
  47. onMessageReceived(socket, buffer_string);
  48. } else {
  49. std::cout << "client disconnected" << std::endl;
  50. break;
  51. }
  52. }
  53. memset(buf, 0, MAX_BUFFER_SIZE);
  54. close(socket);
  55. }
  56. }
  57. }
  58. // Cleanup
  59. void SocketListener::cleanup() { std::cout << "Cleaning up" << std::endl; }
  60. int SocketListener::createSocket() {
  61. int listening = socket(AF_INET, SOCK_STREAM, 0);
  62. if (listening != SOCKET_ERROR) {
  63. // TODO: whatsup with the variable name "hint" ?
  64. sockaddr_in hint;
  65. hint.sin_family = AF_INET;
  66. hint.sin_port = htons(m_port);
  67. inet_pton(AF_INET, m_ip_address.c_str(), &hint.sin_addr);
  68. int bind_result = bind(listening, (sockaddr *)&hint, sizeof(hint));
  69. if (bind_result != SOCKET_ERROR) {
  70. int listen_result = listen(listening, SOMAXCONN);
  71. if (listen_result == SOCKET_ERROR) {
  72. return WAIT_SOCKET_FAILURE;
  73. }
  74. } else {
  75. return WAIT_SOCKET_FAILURE;
  76. }
  77. }
  78. return listening;
  79. }
  80. int SocketListener::waitForConnection(int listening) {
  81. int client = accept(listening, NULL, NULL);
  82. return client;
  83. }
  84. void SocketListener::onMessageReceived(int socket_id, std::string message) {
  85. sendMessage(socket_id, message);
  86. }