client.hpp 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. #ifndef CLIENT_HPP
  2. #define CLIENT_HPP
  3. #include <QComboBox>
  4. #include <QDialog>
  5. #include <QLabel>
  6. #include <QLineEdit>
  7. #include <QMessageBox>
  8. #include <QMetaType>
  9. #include <QPushButton>
  10. #include <QQueue>
  11. #include <QString>
  12. #include <QThread>
  13. #include <QUuid>
  14. #include <QVector>
  15. #include <headers/util.hpp>
  16. #include <include/task/task.hpp>
  17. #include <string>
  18. #include <thread>
  19. #include <utility>
  20. static constexpr int MESSAGE_UPDATE_TYPE = 1;
  21. static constexpr int COMMANDS_UPDATE_TYPE = 2;
  22. static constexpr int EVENT_UPDATE_TYPE = 3;
  23. static constexpr int PROCESS_REQUEST_TYPE = 4;
  24. using namespace Scheduler;
  25. namespace TaskCode {
  26. static constexpr int IGTASKBYTE = 0xFF;
  27. static constexpr int GENMSGBYTE = 0xFE;
  28. static constexpr int GENTASKBYTE = 0xFC;
  29. static constexpr int PINGBYTE = 0xFD;
  30. } // namespace TaskCode
  31. typedef std::map<int, std::string> CommandMap;
  32. typedef std::map<int, std::vector<std::string>> CommandArgMap;
  33. typedef QVector<QString> StringVec;
  34. struct SentFile {
  35. int timestamp;
  36. QString name;
  37. Scheduler::FileType type;
  38. };
  39. Q_DECLARE_METATYPE(StringVec)
  40. Q_DECLARE_METATYPE(QVector<QByteArray>);
  41. class Client : public QDialog {
  42. Q_OBJECT
  43. QThread workerThread;
  44. public:
  45. class MessageHandler {
  46. public:
  47. MessageHandler(std::function<void()> cb) : m_cb(cb) {}
  48. void operator()() { m_cb(); }
  49. private:
  50. std::function<void()> m_cb;
  51. };
  52. Client(QWidget* parent = nullptr);
  53. Client(QWidget* parent, int count, char** arguments);
  54. ~Client();
  55. void start();
  56. void closeConnection();
  57. void execute();
  58. QString getAppName(int mask);
  59. int getSelectedApp();
  60. // Move this to private after moving responsibilities to Client
  61. void scheduleTask(Scheduler::Task* task);
  62. MessageHandler createMessageHandler(std::function<void()> cb);
  63. public slots:
  64. void sendMessage(const QString& s);
  65. void setSelectedApp(std::vector<QString> app_names);
  66. void sendFiles(Scheduler::Task* task);
  67. void ping();
  68. signals:
  69. void messageReceived(int t, QString s, QVector<QString> args);
  70. void eventReceived(int t, std::string event, StringVec args);
  71. private:
  72. void sendEncoded(std::string message);
  73. void sendFileEncoded(QByteArray bytes);
  74. void sendTaskEncoded(Scheduler::Task* task);
  75. void processFileQueue();
  76. void handleMessages();
  77. void sendPackets(uint8_t* data, int size);
  78. int argc;
  79. char** argv;
  80. int m_client_socket_fd;
  81. Task* m_outbound_task;
  82. bool executing;
  83. bool file_was_sent;
  84. CommandMap m_commands;
  85. CommandArgMap m_command_arg_map;
  86. std::vector<int> selected_commands;
  87. QQueue<Scheduler::KFileData> outgoing_files;
  88. std::vector<SentFile> sent_files;
  89. Scheduler::TaskQueue m_task_queue;
  90. };
  91. #endif // CLIENT_HPP