util.hpp 848 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #include <string>
  2. #include <vector>
  3. #include "json.hpp"
  4. using json = nlohmann::json;
  5. struct KSession {
  6. int id;
  7. int fd;
  8. int status;
  9. };
  10. std::string createMessage(const char* data) {
  11. json data_json{};
  12. data_json["type"] = "custom";
  13. data_json["program"] = "placeholder";
  14. data_json["message"] = data;
  15. return data_json.dump();
  16. }
  17. std::string createOperation(const char* op, std::vector<std::string> args) {
  18. json operation_json{};
  19. operation_json["type"] = "operation";
  20. operation_json["command"] = op;
  21. if (!args.empty()) {
  22. operation_json["args"] = args;
  23. }
  24. return operation_json.dump();
  25. }
  26. bool isOperation(json data) { return *(data.find("type")) == "operation"; }
  27. bool isStartOperation(std::string operation) { return operation == "start"; }
  28. bool isStopOperation(std::string operation) { return operation == "stop"; }