client.cpp 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. #include <client.hpp>
  2. #include <arpa/inet.h>
  3. #include <netdb.h>
  4. #include <string.h>
  5. #include <sys/socket.h>
  6. #include <sys/types.h>
  7. #include <unistd.h>
  8. #include <functional>
  9. #include <cstring>
  10. #include <QDebug>
  11. #include <QByteArray>
  12. #include <iostream>
  13. #include <vector>
  14. #include <future>
  15. #include <headers/kmessage_codec.hpp>
  16. #include <headers/json.hpp>
  17. #include <headers/util.hpp>
  18. using namespace KData;
  19. using json = nlohmann::json;
  20. static const int MAX_BUFFER_SIZE = 2048;
  21. flatbuffers::FlatBufferBuilder builder(1024);
  22. /**
  23. * @brief Client::createMessageHandler
  24. * @param cb
  25. * @return
  26. */
  27. Client::MessageHandler Client::createMessageHandler(
  28. std::function<void()> cb) {
  29. return MessageHandler(cb);
  30. }
  31. /**
  32. * @brief Client::Client
  33. * @constructor
  34. * @param parent
  35. * @param count
  36. * @param arguments
  37. */
  38. Client::Client(QWidget *parent, int count, char** arguments) : QDialog(parent), argc(count), argv(arguments), m_client_socket_fd(-1), m_commands({}) {
  39. qRegisterMetaType<QVector<QString>>("QVector<QString>");
  40. }
  41. /**
  42. * @brief Client::~Client
  43. * @destructor
  44. */
  45. Client::~Client() {
  46. closeConnection();
  47. }
  48. /**
  49. * @brief Client::handleMessages
  50. */
  51. void Client::handleMessages() {
  52. uint8_t receive_buffer[2048];
  53. for (;;) {
  54. memset(receive_buffer, 0, 2048);
  55. ssize_t bytes_received = 0;
  56. bytes_received = recv(m_client_socket_fd, receive_buffer, 2048 - 2, 0);
  57. receive_buffer[2047] = 0;
  58. if (bytes_received == 0) {
  59. break;
  60. }
  61. size_t end_idx = findNullIndex(receive_buffer);
  62. std::string data_string{receive_buffer, receive_buffer + end_idx};
  63. StringVec s_v{};
  64. if (rapidIsNewSession(data_string.c_str())) {
  65. m_commands = rapidGetArgMap(data_string.c_str());
  66. for (const auto& [k, v] : m_commands) {
  67. s_v.push_back(v.data());
  68. }
  69. emit Client::messageReceived(COMMANDS_UPDATE_TYPE, "", s_v);
  70. }
  71. emit Client::messageReceived(MESSAGE_UPDATE_TYPE, QString::fromUtf8(data_string.data(), data_string.size()), {});
  72. }
  73. memset(receive_buffer, 0, 2048);
  74. ::close(m_client_socket_fd);
  75. }
  76. /**
  77. * @brief Client::start
  78. * @return A meaningless integer
  79. */
  80. void Client::start() {
  81. if (m_client_socket_fd == -1) {
  82. m_client_socket_fd = socket(AF_INET, SOCK_STREAM, 0);
  83. if (m_client_socket_fd != -1) {
  84. sockaddr_in server_socket;
  85. char* end;
  86. server_socket.sin_family = AF_INET;
  87. auto port_value = strtol(argv[2], &end, 10);
  88. if (port_value < 0 || end == argv[2]) {
  89. return;
  90. }
  91. int socket_option = 1;
  92. // Free up the port to begin listening again
  93. setsockopt(m_client_socket_fd, SOL_SOCKET, SO_REUSEADDR, &socket_option,
  94. sizeof(socket_option));
  95. server_socket.sin_port = htons(port_value);
  96. inet_pton(AF_INET, argv[1], &server_socket.sin_addr.s_addr);
  97. if (::connect(m_client_socket_fd, reinterpret_cast<sockaddr*>(&server_socket),
  98. sizeof(server_socket)) != -1) {
  99. std::string start_operation_string = createOperation("start", {});
  100. // Send operation as an encoded message
  101. sendEncoded(start_operation_string);
  102. // Delegate message handling to its own thread
  103. std::function<void()> message_send_fn = [this]() {
  104. this->handleMessages();
  105. };
  106. MessageHandler message_handler = createMessageHandler(message_send_fn);
  107. // Handle received messages on separate thread
  108. std::thread (message_handler).detach();
  109. } else {
  110. qDebug() << errno;
  111. ::close(m_client_socket_fd);
  112. }
  113. } else {
  114. qDebug() << "Failed to create new connection";
  115. }
  116. } else {
  117. qDebug() << "Connection already in progress";
  118. }
  119. }
  120. /**
  121. * @brief Client::sendMessage
  122. * @param s[in] <const QString&> The message to send
  123. */
  124. void Client::sendMessage(const QString& s) {
  125. if (m_client_socket_fd != -1) {
  126. std::string json_string {"{\"type\":\"custom\", \"message\": \""};
  127. json_string += s.toUtf8().data();
  128. json_string += "\", \"args\":\"placeholder\"}";
  129. // Send custom message as an encoded message
  130. sendEncoded(json_string);
  131. } else {
  132. qDebug() << "You must first open a connection";
  133. }
  134. }
  135. void Client::sendEncoded(std::string message) {
  136. std::vector<uint8_t> fb_byte_vector{message.begin(), message.end()};
  137. auto byte_vector = builder.CreateVector(fb_byte_vector);
  138. auto k_message = CreateMessage(builder, 69, byte_vector);
  139. builder.Finish(k_message);
  140. uint8_t* encoded_message_buffer = builder.GetBufferPointer();
  141. uint32_t size = builder.GetSize();
  142. qDebug() << "Size is " << size;
  143. uint8_t send_buffer[MAX_BUFFER_SIZE];
  144. memset(send_buffer, 0, MAX_BUFFER_SIZE);
  145. send_buffer[0] = (size & 0xFF) >> 24;
  146. send_buffer[1] = (size & 0xFF) >> 16;
  147. send_buffer[2] = (size & 0xFF) >> 8;
  148. send_buffer[3] = (size & 0xFF);
  149. std::memcpy(send_buffer + 4, encoded_message_buffer, size);
  150. qDebug() << "Ready to send:";
  151. std::string message_to_send{};
  152. for (unsigned int i = 0; i < (size + 4); i++) {
  153. message_to_send += (char)*(send_buffer + i);
  154. }
  155. qDebug() << message_to_send.c_str();
  156. // Send start operation
  157. ::send(m_client_socket_fd, send_buffer, size + 4, 0);
  158. builder.Clear();
  159. }
  160. void Client::closeConnection() {
  161. if (m_client_socket_fd != -1) {
  162. std::string stop_operation_string = createOperation("stop", {});
  163. // Send operation as an encoded message
  164. sendEncoded(stop_operation_string);
  165. // Clean up socket file descriptor
  166. ::shutdown(m_client_socket_fd, SHUT_RDWR);
  167. ::close(m_client_socket_fd);
  168. m_client_socket_fd = -1;
  169. return;
  170. }
  171. qDebug() << "There is no active connection to close";
  172. }