Database.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // Created by Иван_Архипов on 17.11.2017.
  3. //
  4. #ifndef LOTRO_DAT_PATCHER_DATABASE_H
  5. #define LOTRO_DAT_PATCHER_DATABASE_H
  6. #include "Common/SQLite/sqlite3.h"
  7. #include <string>
  8. #include "yaml-cpp/yaml.h"
  9. extern "C++"
  10. {
  11. namespace LOTRO_DAT
  12. {
  13. class BinaryData;
  14. class Database {
  15. public:
  16. Database();
  17. explicit Database(const std::string &filename);
  18. ~Database();
  19. void InitDatabase(const std::string &filename);
  20. void PushFile(const BinaryData &binary_data, const std::u16string &text_data, const std::string &options);
  21. bool GetNextFile(BinaryData &binary_data, std::u16string &text_data, YAML::Node &options);
  22. void RemoveDatabase();
  23. void ClearDatabase();
  24. private:
  25. void ExecSql(const std::string &sql);
  26. sqlite3* db_;
  27. sqlite3_stmt* insert_request_;
  28. sqlite3_stmt* fetch_one_request_;
  29. const std::string CreateTableCommand_ = "CREATE TABLE IF NOT EXISTS `patch_data` ( "
  30. "`binary_data` BLOB, "
  31. "`text_data` TEXT, "
  32. "`options` TEXT NOT NULL);";
  33. const std::string InsertFileCommand_ = "INSERT INTO `patch_data` "
  34. "(`binary_data`, `text_data`, `options`) "
  35. "VALUES (?, ?, ?); ";
  36. const std::string FetchOneCommand = "SELECT * FROM `patch_data`";
  37. const std::string ClearTableCommand_ = "DELETE * FROM `patch_data`";
  38. };
  39. }
  40. }
  41. #endif