client.cpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  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 <algorithm>
  10. #include <cstring>
  11. #include <QDebug>
  12. #include <QByteArray>
  13. #include <iostream>
  14. #include <vector>
  15. #include <future>
  16. #include <headers/kmessage_codec.hpp>
  17. #include <headers/json.hpp>
  18. #include <headers/util.hpp>
  19. using namespace KData;
  20. using json = nlohmann::json;
  21. static const int MAX_BUFFER_SIZE = 2048;
  22. static const int MAX_PACKET_SIZE = 4096;
  23. static const int HEADER_SIZE = 4;
  24. flatbuffers::FlatBufferBuilder builder(1024);
  25. /**
  26. * @brief Client::createMessageHandler
  27. * @param cb
  28. * @return
  29. */
  30. Client::MessageHandler Client::createMessageHandler(
  31. std::function<void()> cb) {
  32. return MessageHandler(cb);
  33. }
  34. /**
  35. * @brief Client::Client
  36. * @constructor
  37. * @param parent
  38. * @param count
  39. * @param arguments
  40. */
  41. Client::Client(QWidget *parent, int count, char** arguments) : QDialog(parent), argc(count), argv(arguments), m_client_socket_fd(-1), m_commands({}), executing(false) {
  42. qRegisterMetaType<QVector<QString>>("QVector<QString>");
  43. }
  44. /**
  45. * @brief Client::~Client
  46. * @destructor
  47. */
  48. Client::~Client() {
  49. closeConnection();
  50. }
  51. /**
  52. * @brief Client::handleMessages
  53. */
  54. void Client::handleMessages() {
  55. uint8_t receive_buffer[2048];
  56. for (;;) {
  57. memset(receive_buffer, 0, 2048);
  58. ssize_t bytes_received = 0;
  59. bytes_received = recv(m_client_socket_fd, receive_buffer, 2048 - 2, 0);
  60. receive_buffer[2047] = 0;
  61. if (bytes_received == 0) {
  62. break;
  63. }
  64. size_t end_idx = findNullIndex(receive_buffer);
  65. std::string data_string{receive_buffer, receive_buffer + end_idx};
  66. StringVec s_v{};
  67. if (isNewSession(data_string.c_str())) {
  68. m_commands = getArgMap(data_string.c_str());
  69. for (const auto& [k, v] : m_commands) {
  70. s_v.push_back(v.data());
  71. }
  72. emit Client::messageReceived(COMMANDS_UPDATE_TYPE, "", s_v);
  73. } else if (serverWaitingForFile(data_string.c_str())) {
  74. sendFileEncoded(outgoing_file);
  75. } else if (isEvent(data_string.c_str())) {
  76. QString event = getEvent(data_string.c_str());
  77. QVector<QString> args = getArgs(data_string.c_str());
  78. emit Client::messageReceived(EVENT_UPDATE_TYPE, event, args);
  79. }
  80. std::string formatted_json = getJsonString(data_string);
  81. emit Client::messageReceived(MESSAGE_UPDATE_TYPE, QString::fromUtf8(formatted_json.data(), formatted_json.size()), {});
  82. }
  83. memset(receive_buffer, 0, 2048);
  84. ::close(m_client_socket_fd);
  85. }
  86. /**
  87. * @brief Client::start
  88. * @return A meaningless integer
  89. */
  90. void Client::start() {
  91. if (m_client_socket_fd == -1) {
  92. m_client_socket_fd = socket(AF_INET, SOCK_STREAM, 0);
  93. if (m_client_socket_fd != -1) {
  94. sockaddr_in server_socket;
  95. char* end;
  96. server_socket.sin_family = AF_INET;
  97. auto port_value = strtol(argv[2], &end, 10);
  98. if (port_value < 0 || end == argv[2]) {
  99. return;
  100. }
  101. int socket_option = 1;
  102. // Free up the port to begin listening again
  103. setsockopt(m_client_socket_fd, SOL_SOCKET, SO_REUSEADDR, &socket_option,
  104. sizeof(socket_option));
  105. server_socket.sin_port = htons(port_value);
  106. inet_pton(AF_INET, argv[1], &server_socket.sin_addr.s_addr);
  107. if (::connect(m_client_socket_fd, reinterpret_cast<sockaddr*>(&server_socket),
  108. sizeof(server_socket)) != -1) {
  109. std::string start_operation_string = createOperation("start", {});
  110. // Send operation as an encoded message
  111. sendEncoded(start_operation_string);
  112. // Delegate message handling to its own thread
  113. std::function<void()> message_send_fn = [this]() {
  114. this->handleMessages();
  115. };
  116. MessageHandler message_handler = createMessageHandler(message_send_fn);
  117. // Handle received messages on separate thread
  118. std::thread (message_handler).detach();
  119. } else {
  120. qDebug() << errno;
  121. ::close(m_client_socket_fd);
  122. }
  123. } else {
  124. qDebug() << "Failed to create new connection";
  125. }
  126. } else {
  127. qDebug() << "Connection already in progress";
  128. }
  129. }
  130. /**
  131. * @brief Client::sendMessage
  132. * @param s[in] <const QString&> The message to send
  133. */
  134. void Client::sendMessage(const QString& s) {
  135. if (m_client_socket_fd != -1) {
  136. std::string json_string {"{\"type\":\"custom\", \"message\": \""};
  137. json_string += s.toUtf8().data();
  138. json_string += "\", \"args\":\"placeholder\"}";
  139. // Send custom message as an encoded message
  140. sendEncoded(json_string);
  141. } else {
  142. qDebug() << "You must first open a connection";
  143. }
  144. }
  145. void Client::sendEncoded(std::string message) {
  146. std::vector<uint8_t> fb_byte_vector{message.begin(), message.end()};
  147. auto byte_vector = builder.CreateVector(fb_byte_vector);
  148. auto k_message = CreateMessage(builder, 69, byte_vector);
  149. builder.Finish(k_message);
  150. uint8_t* encoded_message_buffer = builder.GetBufferPointer();
  151. uint32_t size = builder.GetSize();
  152. qDebug() << "Size is " << size;
  153. uint8_t send_buffer[MAX_BUFFER_SIZE];
  154. memset(send_buffer, 0, MAX_BUFFER_SIZE);
  155. send_buffer[0] = (size & 0xFF) >> 24;
  156. send_buffer[1] = (size & 0xFF) >> 16;
  157. send_buffer[2] = (size & 0xFF) >> 8;
  158. send_buffer[3] = (size & 0xFF);
  159. std::memcpy(send_buffer + 4, encoded_message_buffer, size);
  160. qDebug() << "Ready to send:";
  161. std::string message_to_send{};
  162. for (unsigned int i = 0; i < (size + 4); i++) {
  163. message_to_send += (char)*(send_buffer + i);
  164. }
  165. qDebug() << message_to_send.c_str();
  166. // Send start operation
  167. ::send(m_client_socket_fd, send_buffer, size + 4, 0);
  168. builder.Clear();
  169. }
  170. void Client::sendPackets(uint8_t* data, int size) {
  171. uint32_t total_size = static_cast<uint32_t>(size + HEADER_SIZE);
  172. uint32_t total_packets = static_cast<uint32_t>(ceil(
  173. static_cast<double>(
  174. static_cast<double>(total_size) / static_cast<double>(MAX_PACKET_SIZE)) // total size / packet
  175. )
  176. );
  177. uint32_t idx = 0;
  178. for (; idx < total_packets; idx++) {
  179. bool is_first_packet = (idx == 0);
  180. bool is_last_packet = (idx == (total_packets - 1));
  181. if (is_first_packet) {
  182. uint32_t first_packet_size =
  183. std::min(size + HEADER_SIZE, MAX_PACKET_SIZE);
  184. uint8_t packet[first_packet_size];
  185. packet[0] = (total_size >> 24) & 0xFF;
  186. packet[1] = (total_size >> 16) & 0xFF;
  187. packet[2] = (total_size >> 8) & 0xFF;
  188. packet[3] = (total_size) & 0xFF;
  189. std::memcpy(packet + HEADER_SIZE, data, first_packet_size - HEADER_SIZE);
  190. /**
  191. * SEND PACKET !!!
  192. */
  193. ::send(m_client_socket_fd, packet, first_packet_size, 0);
  194. if (is_last_packet) {
  195. break;
  196. }
  197. continue;
  198. }
  199. int offset = (idx * MAX_PACKET_SIZE) - HEADER_SIZE;
  200. uint32_t packet_size = std::min(size - offset, MAX_PACKET_SIZE);
  201. uint8_t packet[packet_size];
  202. std::memcpy(packet, data + offset, packet_size);
  203. /**
  204. * SEND PACKET !!!
  205. */
  206. ::send(m_client_socket_fd, packet, packet_size, 0);
  207. if (is_last_packet) {
  208. // cleanup
  209. outgoing_file.clear();
  210. }
  211. }
  212. }
  213. void Client::sendFileEncoded(QByteArray bytes) {
  214. sendPackets(reinterpret_cast<uint8_t*>(bytes.data()), bytes.size());
  215. }
  216. void Client::closeConnection() {
  217. if (m_client_socket_fd != -1) {
  218. std::string stop_operation_string = createOperation("stop", {});
  219. // Send operation as an encoded message
  220. sendEncoded(stop_operation_string);
  221. // Clean up socket file descriptor
  222. ::shutdown(m_client_socket_fd, SHUT_RDWR);
  223. ::close(m_client_socket_fd);
  224. m_client_socket_fd = -1;
  225. return;
  226. }
  227. qDebug() << "There is no active connection to close";
  228. }
  229. void Client::setSelectedApp(std::vector<QString> app_names) {
  230. selected_commands.clear();
  231. for (const auto& name : app_names) {
  232. qDebug() << "Matching mask to " << name;
  233. for (const auto& command : m_commands) {
  234. if (command.second.c_str() == name.toUtf8()) {
  235. selected_commands.push_back(command.first);
  236. }
  237. }
  238. }
  239. }
  240. int Client::getSelectedApp() {
  241. if (selected_commands.size() == 1) {
  242. return selected_commands.at(0);
  243. } else {
  244. QMessageBox::warning(this, tr("App Selection Error"), tr("Unable to retrieve app selection"));
  245. }
  246. return -1;
  247. }
  248. QString Client::getAppName(int mask) {
  249. auto app = m_commands.find(mask);
  250. if (app != m_commands.end()) {
  251. return QString{app->second.c_str()};
  252. }
  253. return QString{""};
  254. }
  255. void Client::execute() {
  256. if (!selected_commands.empty()) {
  257. executing = true;
  258. for (const auto& command : selected_commands) {
  259. std::string execute_operation = createOperation("Execute", {std::to_string(command)});
  260. sendEncoded(execute_operation);
  261. }
  262. }
  263. }
  264. void Client::scheduleTask(std::vector<std::string> task_args) {
  265. qDebug() << "Requesting a task to be scheduled";
  266. // auto datetime = task_args.at(1);
  267. std::string operation_string = createOperation("Schedule", task_args);
  268. // qDebug() << "Operation string: " << operation_string.c_str();
  269. // std::string message = createMessage(operation_string.c_str(), "");
  270. // auto operation_string = createOperation("blah", {});
  271. sendEncoded(operation_string);
  272. }
  273. void Client::sendFile(QByteArray bytes) {
  274. if (outgoing_file.isNull()) {
  275. std::string send_file_operation = createOperation("FileUpload", {});
  276. int size = bytes.size();
  277. qDebug() << size << " bytes to send";
  278. sendEncoded(send_file_operation);
  279. outgoing_file = bytes;
  280. } else {
  281. qDebug() << "Outgoing file buffer is not ready";
  282. }
  283. }