mainwindow.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <include/ui/argdialog.h>
  4. #include <include/ui/consoledialog.h>
  5. #include <include/ui/messagedialog.hpp>
  6. #include <QList>
  7. #include <QListView>
  8. #include <QListWidgetItem>
  9. #include <QMainWindow>
  10. #include <QStandardItem>
  11. #include <QStandardItemModel>
  12. #include <QString>
  13. #include <QTableView>
  14. #include <QTimer>
  15. #include <headers/kiq_types.hpp>
  16. #include <include/client/client.hpp>
  17. namespace ProcessState {
  18. static constexpr int READY = 1;
  19. static constexpr int PENDING = 2;
  20. static constexpr int SUCCEEDED = 3;
  21. static constexpr int FAILED = 4;
  22. }
  23. struct KListViewsStates {
  24. bool eventViewBottom;
  25. bool processViewBottom;
  26. bool historyViewBottom;
  27. };
  28. const QString ProcessNames[4] = { "READY", "PENDING", "SUCCEEDED", "FAILED" };
  29. struct Process {
  30. QString name;
  31. int state;
  32. QString start;
  33. QString end;
  34. QString id;
  35. QString result = "";
  36. QString error = "";
  37. bool operator==(const Process &other) const {
  38. return name == other.name && state == other.state;
  39. }
  40. };
  41. // struct Event {};
  42. namespace Ui {
  43. class MainWindow;
  44. }
  45. class MainWindow : public QMainWindow
  46. {
  47. Q_OBJECT
  48. public:
  49. explicit MainWindow(int argc = 0, char** argv = nullptr, QWidget* parent = nullptr);
  50. ~MainWindow();
  51. class MessageParser {
  52. public:
  53. void init(MainWindow* window);
  54. void handleCommands(StringVec commands, QString default_app);
  55. void handleMessage(QString message, StringVec v);
  56. QString handleEventMessage(QString message, StringVec v);
  57. private:
  58. QString parseMessage(const QString& s, StringVec v);
  59. void updateProcessResult(QString id, QString result, bool error);
  60. MainWindow* window;
  61. };
  62. /** Process arguments */
  63. int cli_argc;
  64. char** cli_argv;
  65. /** UI & Messages */
  66. void connectUi();
  67. void setConnectScreen(bool visible = true);
  68. QString parseTaskInfo(StringVec v);
  69. /** UI Members */
  70. MessageParser message_parser;
  71. Ui::MainWindow *ui;
  72. ArgDialog *arg_ui;
  73. ConsoleDialog console_ui;
  74. MessageDialog message_ui;
  75. /** Client member */
  76. Client* q_client;
  77. /** Models */
  78. std::vector<Process> m_processes;
  79. QList<QString> m_events;
  80. QStandardItemModel* m_process_model;
  81. QStandardItemModel* m_event_model;
  82. KListViewsStates m_view_states;
  83. /** Misc */
  84. ConfigJson m_config;
  85. uint16_t m_consecutive_events;
  86. private slots:
  87. /** Receivers */
  88. void connectClient();
  89. void updateMessages(int t, const QString& s, StringVec v);
  90. };
  91. #endif // MAINWINDOW_H