Database.cpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. //
  2. // Created by Иван_Архипов on 17.11.2017.
  3. //
  4. #include "Database.h"
  5. #include "DatException.h"
  6. #include "BinaryData.h"
  7. #include <cstring>
  8. namespace LOTRO_DAT {
  9. Database::Database() {
  10. db_ = nullptr;
  11. query_size_ = 0;
  12. }
  13. Database::Database(const char *filename) {
  14. query_size_ = 0;
  15. InitDatabase(filename);
  16. }
  17. Database::Database(const std::string &filename) {
  18. query_size_ = 0;
  19. InitDatabase(filename.c_str());
  20. }
  21. Database::~Database() {
  22. if (query_size_ != 0)
  23. ExecSql("COMMIT");
  24. if (db_ != nullptr) {
  25. sqlite3_finalize(insert_text_);
  26. sqlite3_finalize(insert_binary_);
  27. sqlite3_close(db_);
  28. }
  29. }
  30. void Database::InitDatabase(const char *filename) {
  31. if (sqlite3_open(filename, &db_) != SQLITE_OK) {
  32. sqlite3_close(db_);
  33. throw DatException("Bad Database::InitDatabase() - sqlite3_open returned an error..."
  34. , DATABASE_EXCEPTION);
  35. }
  36. ExecSql(CreateBinaryTableCommand_);
  37. ExecSql(CreateTextTableCommand_);
  38. ExecSql(CreateMetadataTableCommand_);
  39. ExecSql("PRAGMA synchronous = OFF");
  40. ExecSql("PRAGMA count_changes = OFF");
  41. ExecSql("PRAGMA journal_mode = MEMORY");
  42. ExecSql("PRAGMA temp_store = MEMORY");
  43. sqlite3_prepare_v2(db_, InsertBinaryCommand_, strlen(InsertBinaryCommand_), &insert_binary_, nullptr);
  44. sqlite3_prepare_v2(db_, InsertTextCommand_, strlen(InsertTextCommand_), &insert_text_, nullptr);
  45. //sqlite3_prepare_v2(db_, GetTextCommand, 50ll * 1024ll * 1024ll, &get_text_, nullptr);
  46. //sqlite3_prepare_v2(db_, GetBinaryCommand, 50ll * 1024ll * 1024ll, &get_binary_, nullptr);
  47. }
  48. void Database::ExecSql(const char *sql) {
  49. char *error;
  50. if (sqlite3_exec(db_, sql, nullptr, nullptr, &error) != SQLITE_OK) {
  51. fprintf(stderr, "SQLite3 error: %s\n", sqlite3_errmsg(db_));
  52. throw DatException((std::string("Bad Database::ExecSql() - unable to perform request")
  53. + std::string(sql)).c_str(), DATABASE_EXCEPTION);
  54. }
  55. }
  56. void Database::PushTextFile(long long file_id, long long gossip_id, char *text, char *args, int dat_id) {
  57. if (query_size_ == 0)
  58. ExecSql("BEGIN TRANSACTION");
  59. sqlite3_bind_int(insert_text_, 1, (int)file_id);
  60. sqlite3_bind_int(insert_text_, 2, (int)gossip_id);
  61. sqlite3_bind_text(insert_text_, 3, text, sizeof(text), SQLITE_TRANSIENT);
  62. sqlite3_bind_text(insert_text_, 4, args, sizeof(args), SQLITE_TRANSIENT);
  63. if (sqlite3_step(insert_text_) != SQLITE_OK) {
  64. fprintf(stderr, "SQLite3 error: %s\n", sqlite3_errmsg(db_));
  65. throw DatException((std::string("Bad Database::PushTextFile() - unable to perform push operation")).c_str(),
  66. DATABASE_EXCEPTION);
  67. }
  68. sqlite3_reset(insert_text_);
  69. query_size_++;
  70. if (query_size_ >= QUERY_MAX_SIZE) {
  71. ExecSql("COMMIT");
  72. query_size_ = 0;
  73. }
  74. }
  75. //BinaryData &Database::GetTextFile(long long file_id) {}
  76. void Database::PushBinaryFile(long long file_id, const BinaryData &data) {
  77. if (query_size_ == 0)
  78. ExecSql("BEGIN TRANSACTION");
  79. sqlite3_bind_int(insert_binary_, 1, (int)file_id);
  80. sqlite3_bind_blob(insert_binary_, 2, data.data(), data.size(), SQLITE_TRANSIENT);
  81. if (sqlite3_step(insert_binary_) != SQLITE_DONE) {
  82. fprintf(stderr, "SQLite3 error: %s\n", sqlite3_errmsg(db_));
  83. throw DatException(std::string("Bad Database::PushTextFile() - unable to perform operation").c_str()
  84. , DATABASE_EXCEPTION);
  85. }
  86. sqlite3_reset(insert_binary_);
  87. query_size_++;
  88. if (query_size_ >= QUERY_MAX_SIZE) {
  89. ExecSql("COMMIT");
  90. query_size_ = 0;
  91. }
  92. }
  93. //BinaryData &Database::GetBinaryFile(long long file_id) {
  94. //
  95. //}
  96. }