socket_listener.cpp 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. while (true) {
  38. memset(buf, 0, MAX_BUFFER_SIZE);
  39. int bytesReceived = 0;
  40. bytesReceived = recv(socket, buf, MAX_BUFFER_SIZE, 0);
  41. if (bytesReceived > 0) {
  42. // TODO: implement a proper C++ cast
  43. const char* constString = (const char*)buf;
  44. std::cout << "Received: " << constString << std::endl;
  45. onMessageReceived(socket, std::string(constString));
  46. } else {
  47. std::cout << "client disconnected" << std::endl;
  48. break;
  49. }
  50. }
  51. close(socket);
  52. }
  53. }
  54. }
  55. // Cleanup
  56. void SocketListener::cleanup() { std::cout << "Cleaning up" << std::endl; }
  57. int SocketListener::createSocket() {
  58. int listening = socket(AF_INET, SOCK_STREAM, 0);
  59. if (listening != SOCKET_ERROR) {
  60. // TODO: whatsup with the variable name "hint" ?
  61. sockaddr_in hint;
  62. hint.sin_family = AF_INET;
  63. hint.sin_port = htons(m_port);
  64. inet_pton(AF_INET, m_ip_address.c_str(), &hint.sin_addr);
  65. int bind_result = bind(listening, (sockaddr*)&hint, sizeof(hint));
  66. if (bind_result != SOCKET_ERROR) {
  67. int listen_result = listen(listening, SOMAXCONN);
  68. if (listen_result == SOCKET_ERROR) {
  69. return WAIT_SOCKET_FAILURE;
  70. }
  71. } else {
  72. return WAIT_SOCKET_FAILURE;
  73. }
  74. }
  75. return listening;
  76. }
  77. int SocketListener::waitForConnection(int listening) {
  78. int client = accept(listening, NULL, NULL);
  79. return client;
  80. }
  81. void SocketListener::onMessageReceived(int socket_id, std::string message) {
  82. sendMessage(socket_id, message);
  83. }