|
@@ -0,0 +1,95 @@
|
|
|
+#include <arpa/inet.h>
|
|
|
+#include <netdb.h>
|
|
|
+#include <string.h>
|
|
|
+#include <sys/types.h>
|
|
|
+#include <unistd.h>
|
|
|
+#include <iostream>
|
|
|
+#include <string>
|
|
|
+
|
|
|
+#include <sys/socket.h>
|
|
|
+#include "headers/constants.h"
|
|
|
+#include "headers/tcplistener.h"
|
|
|
+int listening() { return socket(AF_INET, SOCK_STREAM, 0); }
|
|
|
+
|
|
|
+TcpListener::TcpListener(std::string ipAddress, int port,
|
|
|
+ MessageReceivedHandler handler)
|
|
|
+ : m_ipAddress(ipAddress), m_port(port), MessageReceived(handler) {}
|
|
|
+
|
|
|
+// destructor
|
|
|
+TcpListener::~TcpListener() { cleanup(); }
|
|
|
+
|
|
|
+// Send message to client
|
|
|
+void TcpListener::sendMessage(int clientSocket, std::string msg) {
|
|
|
+ send(clientSocket, msg.c_str(), msg.size() + 1, 0);
|
|
|
+}
|
|
|
+
|
|
|
+// Initialize
|
|
|
+bool TcpListener::init() {
|
|
|
+ std::cout << "Initializing socket listener" << std::endl;
|
|
|
+ return true;
|
|
|
+}
|
|
|
+
|
|
|
+// Main process loop
|
|
|
+void TcpListener::run() {
|
|
|
+ char* buf[MAX_BUFFER_SIZE];
|
|
|
+
|
|
|
+ while (true) {
|
|
|
+ int listening = createSocket();
|
|
|
+
|
|
|
+ if (listening == SOCKET_ERROR) {
|
|
|
+ std::cout << "Socket error: shutting down server" << std::endl;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ int socket = waitForConnection(listening);
|
|
|
+
|
|
|
+ if (socket != SOCKET_ERROR) {
|
|
|
+ close(listening);
|
|
|
+
|
|
|
+ while (true) {
|
|
|
+ memset(buf, 0, MAX_BUFFER_SIZE);
|
|
|
+ int bytesReceived = 0;
|
|
|
+ bytesReceived = recv(socket, buf, MAX_BUFFER_SIZE, 0);
|
|
|
+ if (bytesReceived > 0) {
|
|
|
+ const char* constString = (const char*)buf;
|
|
|
+ std::cout << "Received: " << constString << std::endl;
|
|
|
+ MessageReceived(this, socket, std::string(constString));
|
|
|
+ } else {
|
|
|
+ std::cout << "client disconnected" << std::endl;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ close(socket);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// Cleanup
|
|
|
+void TcpListener::cleanup() { std::cout << "Cleaning up" << std::endl; }
|
|
|
+
|
|
|
+int TcpListener::createSocket() {
|
|
|
+ int listening = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
+
|
|
|
+ if (listening != SOCKET_ERROR) {
|
|
|
+ sockaddr_in hint;
|
|
|
+ hint.sin_family = AF_INET;
|
|
|
+ hint.sin_port = htons(m_port);
|
|
|
+ inet_pton(AF_INET, m_ipAddress.c_str(), &hint.sin_addr);
|
|
|
+
|
|
|
+ int bindOk = bind(listening, (sockaddr*)&hint, sizeof(hint));
|
|
|
+ if (bindOk != SOCKET_ERROR) {
|
|
|
+ int listenOk = listen(listening, SOMAXCONN);
|
|
|
+ if (listenOk == SOCKET_ERROR) {
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return listening;
|
|
|
+}
|
|
|
+
|
|
|
+int TcpListener::waitForConnection(int listening) {
|
|
|
+ int client = accept(listening, NULL, NULL);
|
|
|
+ return client;
|
|
|
+}
|