Browse Source

accepts arguments for --port and --ip

logicp 5 years ago
parent
commit
a95a80e9d3
3 changed files with 23 additions and 5 deletions
  1. 1 1
      headers/socket_listener.h
  2. 1 2
      main.cpp
  3. 21 2
      socket_listener.cpp

+ 1 - 1
headers/socket_listener.h

@@ -32,7 +32,7 @@ class SocketListener : public SendInterface {
     std::function<void()> m_cb;
   };
   // constructor
-  SocketListener(std::string ip_address, int port);
+  SocketListener(int arg_num, char** args);
 
   // destructor
   ~SocketListener();

+ 1 - 2
main.cpp

@@ -11,8 +11,7 @@
  */
 
 int main(int argc, char** argv) {
-  SocketListener server("0.0.0.0", 9009);
-
+  SocketListener server(argc, argv);
   if (server.init()) {
     std::cout << "Running message loop" << std::endl;
     server.run();

+ 21 - 2
socket_listener.cpp

@@ -26,8 +26,27 @@ int num_threads = std::thread::hardware_concurrency();
  * Constructor
  * Initialize with ip_address, port and message_handler
  */
-SocketListener::SocketListener(std::string ip_address, int port)
-    : m_ip_address(ip_address), m_port(port), accepting_tasks(true) {}
+SocketListener::SocketListener(int arg_num, char** args)
+    : m_port(-1), accepting_tasks(true) {
+  for (int i = 0; i < arg_num; i++) {
+    std::string argument = std::string(args[i]);
+    std::cout << args[i] << std::endl;
+    if (argument.find("--ip") != -1) {
+      m_ip_address = argument.substr(5);
+      continue;
+    }
+    if (argument.find("--port") != -1) {
+      m_port = std::stoi(argument.substr(7));
+      continue;
+    }
+    if (m_ip_address.empty()) {
+      m_ip_address = "0.0.0.0";
+    }
+    if (m_port == -1) {
+      m_port = 9009;
+    }
+  }
+}
 
 /**
  * Destructor