Browse Source

parsing task information and introducing a new pattern for parsing events

logicp 5 years ago
parent
commit
2a287e2710
5 changed files with 53 additions and 7 deletions
  1. 12 0
      headers/kiq_types.hpp
  2. 11 0
      headers/util.hpp
  3. 9 7
      include/mainwindow.h
  4. 1 0
      ky_gui.pro
  5. 20 0
      src/mainwindow.cpp

+ 12 - 0
headers/kiq_types.hpp

@@ -0,0 +1,12 @@
+#ifndef __KIQ_UI_TYPES_HPP__
+#define __KIQ_UI_TYPES_HPP__
+
+namespace Event {
+
+static const constexpr char* TASK_SCHEDULED = "Task Scheduled";
+static const constexpr char* MESSAGE_RECEIVED = "Message Received";
+
+}  // namespace Event
+
+#endif  // __KIQ_UI_TYPES_HPP__
+

+ 11 - 0
headers/util.hpp

@@ -156,6 +156,17 @@ bool isEvent(const char* data) {
     return strcmp(d["type"].GetString(), "event") == 0;
 }
 
+template <typename T>
+bool isKEvent(T event, const char* kEvent) {
+  if constexpr (std::is_same_v<T, std::string>) {
+    return strcmp(event.c_str(), kEvent) == 0;
+  } else if constexpr (std::is_same_v<T, QString>) {
+    return strcmp(event.toUtf8(), kEvent) == 0;
+  } else {
+    return strcmp(event, kEvent) == 0;
+  }
+}
+
 bool isPong(const char* data) {
     return strcmp(data, "PONG") == 0;
 }

+ 9 - 7
include/mainwindow.h

@@ -1,18 +1,19 @@
 #ifndef MAINWINDOW_H
 #define MAINWINDOW_H
 
-#include <QMainWindow>
-#include <QString>
+#include <include/argdialog.h>
+#include <include/consoledialog.h>
 #include <QList>
 #include <QListView>
 #include <QListWidgetItem>
-#include <QStandardItemModel>
+#include <QMainWindow>
 #include <QStandardItem>
-#include <include/client.hpp>
-#include <include/argdialog.h>
-#include <include/consoledialog.h>
+#include <QStandardItemModel>
+#include <QString>
 #include <QTableView>
 #include <QTimer>
+#include <headers/kiq_types.hpp>
+#include <include/client.hpp>
 
 namespace ProcessState {
     static constexpr int READY = 1;
@@ -36,7 +37,7 @@ struct Process {
     }
 };
 
-struct Event {};
+// struct Event {};
 
 namespace Ui {
 class MainWindow;
@@ -58,6 +59,7 @@ private:
     void connectUi();
     void setConnectScreen(bool visible = true);
     QString parseMessage(const QString& s, StringVec v);
+    QString parseTaskInfo(StringVec v);
     void updateProcessResult(QString request_id, QString result);
     /** UI Members */
     Ui::MainWindow *ui;

+ 1 - 0
ky_gui.pro

@@ -44,6 +44,7 @@ HEADERS += \
         headers/instatask_generated.h \
         headers/json.hpp \
         headers/util.hpp \
+        headers/kiq_types.hpp \
         headers/rapidjson/writer.h \
         headers/rapidjson/stringbuffer.h \
         headers/rapidjson/document.h \

+ 20 - 0
src/mainwindow.cpp

@@ -345,6 +345,11 @@ void MainWindow::updateMessages(int t, const QString& message, StringVec v) {
       }
       m_consecutive_events = 0;
     }
+
+    if (isKEvent<QString>(message, Event::TASK_SCHEDULED)) {
+      event_message += ". Details:\n" + parseTaskInfo(v);
+    }
+
     m_events.push_back(event_message);
     m_event_model->setItem(m_event_model->rowCount(),
                            createEventListItem(event_message));
@@ -353,6 +358,21 @@ void MainWindow::updateMessages(int t, const QString& message, StringVec v) {
   }
 }
 
+QString MainWindow::parseTaskInfo(StringVec v) {
+  if (q_client == nullptr) {
+    qDebug() << "Can't parse when not connected";
+    return "";
+  }
+  if (v.size() < 3) {
+    qDebug() << "Not enough arguments to parse task information";
+    return "";
+  } else {
+    return QString{
+        "  UUID - " + v.at(0) + "\n  ID - " + v.at(1) + "\n  APP - " +
+        q_client->getAppName(std::stoi(v.at(2).toUtf8().constData()))};
+  }
+}
+
 void MainWindow::updateProcessResult(
     QString id, QString result) {  // We need to start matching processes with a
                                    // unique identifier