util.hpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. #ifndef UTIL_HPP
  2. #define UTIL_HPP
  3. #pragma GCC system_header
  4. #include <QDebug>
  5. #include <QQueue>
  6. #include <QString>
  7. #include <QMessageBox>
  8. #include <QDateTime>
  9. #include <QVector>
  10. #include <charconv>
  11. #include <string>
  12. #include <utility>
  13. #include <vector>
  14. #include "rapidjson/document.h"
  15. #include "rapidjson/pointer.h"
  16. #include "rapidjson/prettywriter.h"
  17. #include "rapidjson/stringbuffer.h"
  18. #include "rapidjson/writer.h"
  19. namespace Kontainer {
  20. /** Reverse Iterator */
  21. template <class T>
  22. class ReverseIterator {
  23. T& _obj;
  24. public:
  25. ReverseIterator(T &obj) : _obj(obj) {}
  26. auto begin() {return _obj.rbegin();}
  27. auto end() {return _obj.rend();}
  28. };
  29. } // namespace Kontainer
  30. namespace {
  31. using namespace rapidjson;
  32. typedef std::string KOperation;
  33. typedef std::vector<std::pair<std::string, std::string>> TupVec;
  34. typedef std::vector<std::map<int, std::string>> MapVec;
  35. typedef std::vector<std::string> StdStringVec;
  36. typedef std::map<int, std::string> CommandMap;
  37. typedef std::map<QString, QString> ConfigJson;
  38. struct KSession {
  39. int id;
  40. int fd;
  41. int status;
  42. };
  43. static QString escapeText(QString s) {
  44. s.replace("\t", "\\t");
  45. s.replace('"', "\\\"");
  46. s.replace("'", "'\"\'\"'");
  47. return s;
  48. }
  49. static QString escapeMessage(QString s) {
  50. s.replace("\t", "\\t");
  51. s.replace('"', "\\\"");
  52. s.replace("'", "\'");
  53. return s;
  54. }
  55. static QString escapeTextToRaw(QString s) {
  56. return escapeText(s).toUtf8().constData();
  57. }
  58. /**
  59. * @brief configValue
  60. * @param [in] {QString} key The key whose corresponding value is to be sought from the
  61. * ConfigJson param
  62. * @param [in] {ConfigJson} config JSON Config object
  63. * @param [in] {bool} use_default Indicates that the default key will be sought if no value
  64. * matching the key parameter is found
  65. * @return {QString} The value which corresonds to the key, or an empty string
  66. *
  67. * TODO: ConfigJson should probably be called something else, like
  68. * ConfigJsonObject
  69. */
  70. QString configValue(QString key, ConfigJson config, bool use_default = false) {
  71. ConfigJson::iterator it{config.find(key.toLower())}; // Find iterator to element matching key
  72. if (it != std::end(config)) { // If element was found
  73. return it->second; // Return the value of the Key-Pair element
  74. }
  75. if (use_default) {
  76. it = config.find("default");
  77. if (it != std::end(config)) { // If element was found
  78. return it->second; // Return the value of the Key-Pair element
  79. }
  80. }
  81. return "";
  82. }
  83. bool configBoolValue(QString s, ConfigJson config) {
  84. if (auto it{config.find(s)}; it != std::end(config)) {
  85. return bool{it->second == "true"};
  86. }
  87. }
  88. std::string getJsonString(std::string s) {
  89. Document d;
  90. d.Parse(s.c_str());
  91. StringBuffer buffer;
  92. PrettyWriter<StringBuffer> writer(buffer);
  93. d.Accept(writer);
  94. return buffer.GetString();
  95. }
  96. std::string createMessage(const char* data, std::string args = "") {
  97. StringBuffer s;
  98. Writer<StringBuffer> w(s);
  99. w.StartObject();
  100. w.Key("type");
  101. w.String("custom");
  102. w.Key("message");
  103. w.String(data);
  104. w.Key("args");
  105. w.String(args.c_str());
  106. w.EndObject();
  107. return s.GetString();
  108. }
  109. bool isOperation(const char* data) {
  110. Document d;
  111. d.Parse(data);
  112. return strcmp(d["type"].GetString(), "operation") == 0;
  113. }
  114. bool isUploadCompleteEvent(const char* event) {
  115. return strcmp(event, "File Transfer Complete") == 0;
  116. }
  117. bool isEvent(const char* data) {
  118. Document d;
  119. d.Parse(data);
  120. if (d.HasMember("type")); {
  121. return strcmp(d["type"].GetString(), "event") == 0;
  122. }
  123. return false;
  124. }
  125. template <typename T>
  126. bool isKEvent(T event, const char* kEvent) {
  127. if constexpr (std::is_same_v<T, std::string>) {
  128. return strcmp(event.c_str(), kEvent) == 0;
  129. } else if constexpr (std::is_same_v<T, QString>) {
  130. return strcmp(event.toUtf8(), kEvent) == 0;
  131. } else {
  132. return strcmp(event, kEvent) == 0;
  133. }
  134. }
  135. bool isPong(const char* data) {
  136. return strcmp(data, "PONG") == 0;
  137. }
  138. // TODO: This should be "message", no?
  139. bool isMessage(const char* data) {
  140. Document d;
  141. d.Parse(data);
  142. if (d.HasMember("message")) {
  143. return true;
  144. } else {
  145. return false;
  146. }
  147. }
  148. std::string createOperation(const char* op, std::vector<std::string> args) {
  149. StringBuffer s;
  150. Writer<StringBuffer, Document::EncodingType, ASCII<>> w(s);
  151. w.StartObject();
  152. w.Key("type");
  153. w.String("operation");
  154. w.Key("command");
  155. w.String(op);
  156. w.Key("args");
  157. w.StartArray();
  158. if (!args.empty()) {
  159. for (const auto& arg : args) {
  160. w.String(arg.c_str());
  161. }
  162. }
  163. w.EndArray();
  164. w.EndObject();
  165. return s.GetString();
  166. }
  167. std::string getOperation(const char* data) {
  168. Document d;
  169. d.Parse(data);
  170. if (d.HasMember("command")) {
  171. return d["command"].GetString();
  172. }
  173. return "";
  174. }
  175. QString getEvent(const char* data) {
  176. Document d;
  177. d.Parse(data);
  178. if (d.HasMember("event")) {
  179. return d["event"].GetString();
  180. }
  181. return "";
  182. }
  183. QString getMessage(const char* data) {
  184. Document d;
  185. d.Parse(data);
  186. if (d.HasMember("message")) {
  187. return d["message"].GetString();
  188. }
  189. return "";
  190. }
  191. QVector<QString> getShortArgs(const char* data) {
  192. Document d;
  193. d.Parse(data);
  194. QVector<QString> args{};
  195. if (d.HasMember("args")) {
  196. if (d["args"].IsArray()) {
  197. for (const auto& m : d["args"].GetArray()) {
  198. if (m.GetStringLength() < 100) {
  199. args.push_back(m.GetString());
  200. }
  201. }
  202. } else {
  203. for (const auto& m : d["args"].GetObject()) {
  204. QString arg = m.name.GetString();
  205. arg += ": ";
  206. arg += m.value.GetString();
  207. args.push_back(arg);
  208. }
  209. }
  210. }
  211. return args;
  212. }
  213. QVector<QString> getArgs(const char* data) {
  214. Document d;
  215. d.Parse(data);
  216. QVector<QString> args{};
  217. if (d.HasMember("args")) {
  218. for (const auto& m : d["args"].GetArray()) {
  219. args.push_back(m.GetString());
  220. }
  221. }
  222. return args;
  223. }
  224. QList<QString> getValueArgs(const char* data, QString key) {
  225. auto key_value = key.toUtf8();
  226. Document d;
  227. d.Parse(data);
  228. QList<QString> args{};
  229. if (d.IsObject()) {
  230. for (const auto& m : d.GetObject()) {
  231. auto name = m.name.GetString();
  232. if (name == key.toUtf8()) {
  233. if (m.value.IsArray()) {
  234. for (const auto& a : m.value.GetArray()) {
  235. args.push_back(a.GetString());
  236. }
  237. }
  238. }
  239. }
  240. }
  241. return args;
  242. }
  243. CommandMap getArgMap(const char* data) {
  244. Document d;
  245. d.Parse(data);
  246. CommandMap cm{};
  247. if (d.HasMember("args")) {
  248. for (const auto& m : d["args"].GetObject()) {
  249. cm.emplace(std::stoi(m.name.GetString()), m.value.GetString());
  250. }
  251. }
  252. return cm;
  253. }
  254. ConfigJson getConfigObject(QString json_string) {
  255. Document d;
  256. d.Parse(json_string.toUtf8());
  257. StringBuffer buffer;
  258. Writer<StringBuffer> writer(buffer);
  259. std::map<QString, QString> config_map{};
  260. if (d.IsObject()) {
  261. for (const auto& m : d.GetObject()) {
  262. auto type = m.value.GetType();
  263. if (m.value.GetType() == kStringType) {
  264. config_map.emplace(m.name.GetString(), m.value.GetString());
  265. }
  266. if (m.value.GetType() == kObjectType) {
  267. m.value.Accept(writer);
  268. QString config_value{buffer.GetString()};
  269. config_map.emplace(m.name.GetString(), config_value);
  270. writer.Reset(buffer);
  271. }
  272. }
  273. }
  274. return config_map;
  275. }
  276. std::string createMessage(const char* data,
  277. std::map<int, std::string> map = {}) {
  278. StringBuffer s;
  279. Writer<StringBuffer> w(s);
  280. w.StartObject();
  281. w.Key("type");
  282. w.String("custom");
  283. w.Key("message");
  284. w.String(data);
  285. w.Key("args");
  286. w.StartObject();
  287. if (!map.empty()) {
  288. for (const auto& [k, v] : map) {
  289. w.Key(std::to_string(k).c_str());
  290. w.String(v.c_str());
  291. }
  292. }
  293. w.EndObject();
  294. w.EndObject();
  295. return s.GetString();
  296. }
  297. std::string createMessage(const char* data, std::map<int, std::vector<std::string>> map = {}) {
  298. StringBuffer s;
  299. Writer<StringBuffer> w(s);
  300. w.StartObject();
  301. w.Key("type");
  302. w.String("custom");
  303. w.Key("message");
  304. w.String(data);
  305. w.Key("args");
  306. w.StartObject();
  307. if (!map.empty()) {
  308. for (const auto& [k, v] : map) {
  309. w.Key(std::to_string(k).c_str());
  310. if (!v.empty()) {
  311. w.StartArray();
  312. for (const auto& arg : v) {
  313. w.String(arg.c_str());
  314. }
  315. w.EndArray();
  316. }
  317. }
  318. }
  319. w.EndObject();
  320. w.EndObject();
  321. return s.GetString();
  322. }
  323. std::string rapidCreateMessage(const char* data,
  324. std::map<int, std::string> map = {}) {
  325. StringBuffer s;
  326. Writer<StringBuffer> w(s);
  327. w.StartObject();
  328. w.Key("type");
  329. w.String("custom");
  330. w.Key("message");
  331. w.String(data);
  332. w.Key("args");
  333. w.StartObject();
  334. if (!map.empty()) {
  335. for (const auto& [k, v] : map) {
  336. w.Key(std::to_string(k).c_str());
  337. w.String(v.c_str());
  338. }
  339. }
  340. w.EndObject();
  341. w.EndObject();
  342. return s.GetString();
  343. }
  344. bool isStartOperation(const char* data) {
  345. Document d;
  346. d.Parse(data);
  347. return strcmp(d["command"].GetString(), "start") == 0;
  348. }
  349. bool isStopOperation(const char* data) {
  350. Document d;
  351. d.Parse(data);
  352. return strcmp(d["command"].GetString(), "stop") == 0;
  353. }
  354. bool isNewSession(const char* data) {
  355. Document d;
  356. d.Parse(data);
  357. if (d.IsObject() && d.HasMember("message")) {
  358. return strcmp(d["message"].GetString(), "New Session") == 0;
  359. }
  360. return false;
  361. }
  362. bool serverWaitingForFile(const char* data) {
  363. Document d;
  364. d.Parse(data);
  365. if (d.IsObject() && d.HasMember("message")) {
  366. return strcmp(d["message"].GetString(), "File Ready") == 0;
  367. }
  368. return false;
  369. }
  370. inline size_t findNullIndex(uint8_t* data) {
  371. size_t index = 0;
  372. while (data) {
  373. if (strcmp(const_cast<const char*>((char*)data), "\0") == 0) {
  374. break;
  375. }
  376. index++;
  377. data++;
  378. }
  379. return index;
  380. }
  381. namespace FileUtils {
  382. QString generatePreview(QString video_path, QString video_name) {
  383. QString preview_name =
  384. video_name.left(video_name.size() - 4) + "-preview.jpg";
  385. QString command{
  386. "ffmpeg -y -ss 0 -i '" + video_path +
  387. "' -vf \"scale=w=640:h=640:force_original_aspect_ratio=decrease\" "
  388. "-vframes 1 './assets/previews/" +
  389. preview_name + "'"};
  390. std::system(command.toUtf8());
  391. return preview_name;
  392. }
  393. }; // namespace FileUtils
  394. namespace UI {
  395. inline void infoMessageBox(QString text, QString title = "KYGUI") {
  396. QMessageBox box;
  397. box.setWindowTitle(title);
  398. box.setText(text);
  399. box.setButtonText(0, "Close");
  400. box.exec();
  401. }
  402. } // namespace UI
  403. namespace TimeUtils {
  404. inline QString getTime() { return QDateTime::currentDateTime().toString("hh:mm:ss"); }
  405. inline uint unixtime() { return QDateTime::currentDateTime().toTime_t(); }
  406. } // namespace TimeUtils
  407. } // namespace
  408. #endif // UTIL_HPP