|
@@ -1,10 +1,14 @@
|
|
//
|
|
//
|
|
// Created by Иван_Архипов on 17.11.2017.
|
|
// Created by Иван_Архипов on 17.11.2017.
|
|
//
|
|
//
|
|
|
|
+#define UNICODE
|
|
|
|
+#define _UNICODE
|
|
|
|
|
|
#include "Database.h"
|
|
#include "Database.h"
|
|
#include "DatException.h"
|
|
#include "DatException.h"
|
|
#include "BinaryData.h"
|
|
#include "BinaryData.h"
|
|
|
|
+#include "CommonFunctions.h"
|
|
|
|
+
|
|
#include <cstring>
|
|
#include <cstring>
|
|
|
|
|
|
namespace LOTRO_DAT {
|
|
namespace LOTRO_DAT {
|
|
@@ -14,11 +18,6 @@ namespace LOTRO_DAT {
|
|
query_size_ = 0;
|
|
query_size_ = 0;
|
|
}
|
|
}
|
|
|
|
|
|
- Database::Database(const char *filename) {
|
|
|
|
- query_size_ = 0;
|
|
|
|
- InitDatabase(filename);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
Database::Database(const std::string &filename) {
|
|
Database::Database(const std::string &filename) {
|
|
query_size_ = 0;
|
|
query_size_ = 0;
|
|
InitDatabase(filename.c_str());
|
|
InitDatabase(filename.c_str());
|
|
@@ -36,49 +35,52 @@ namespace LOTRO_DAT {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- void Database::InitDatabase(const char *filename) {
|
|
|
|
- if (sqlite3_open(filename, &db_) != SQLITE_OK) {
|
|
|
|
|
|
+ void Database::InitDatabase(const std::string &filename) {
|
|
|
|
+ if (sqlite3_open(filename.c_str(), &db_) != SQLITE_OK) {
|
|
sqlite3_close(db_);
|
|
sqlite3_close(db_);
|
|
throw DatException("Bad Database::InitDatabase() - sqlite3_open returned an error..."
|
|
throw DatException("Bad Database::InitDatabase() - sqlite3_open returned an error..."
|
|
, DATABASE_EXCEPTION);
|
|
, DATABASE_EXCEPTION);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ ExecSql("PRAGMA synchronous = OFF");
|
|
|
|
+ ExecSql("PRAGMA count_changes = OFF");
|
|
|
|
+ ExecSql("PRAGMA journal_mode = MEMORY");
|
|
|
|
+ ExecSql("PRAGMA temp_store = MEMORY");
|
|
|
|
+ //ExecSql("PRAGMA encoding = \"UTF-8\";");
|
|
|
|
+
|
|
ExecSql(CreateBinaryTableCommand_);
|
|
ExecSql(CreateBinaryTableCommand_);
|
|
ExecSql(CreateTextTableCommand_);
|
|
ExecSql(CreateTextTableCommand_);
|
|
ExecSql(CreateMetadataTableCommand_);
|
|
ExecSql(CreateMetadataTableCommand_);
|
|
|
|
|
|
- ExecSql("PRAGMA synchronous = OFF");
|
|
|
|
- ExecSql("PRAGMA count_changes = OFF");
|
|
|
|
- ExecSql("PRAGMA journal_mode = MEMORY");
|
|
|
|
- ExecSql("PRAGMA temp_store = MEMORY");
|
|
|
|
-
|
|
|
|
- sqlite3_prepare_v2(db_, InsertBinaryCommand_, strlen(InsertBinaryCommand_), &insert_binary_, nullptr);
|
|
|
|
- sqlite3_prepare_v2(db_, InsertTextCommand_, strlen(InsertTextCommand_), &insert_text_, nullptr);
|
|
|
|
|
|
+ sqlite3_prepare_v2(db_, InsertBinaryCommand_.c_str(), InsertBinaryCommand_.length(), &insert_binary_, nullptr);
|
|
|
|
+ sqlite3_prepare_v2(db_, InsertTextCommand_.c_str(), InsertTextCommand_.length(), &insert_text_, nullptr);
|
|
|
|
|
|
//sqlite3_prepare_v2(db_, GetTextCommand, 50ll * 1024ll * 1024ll, &get_text_, nullptr);
|
|
//sqlite3_prepare_v2(db_, GetTextCommand, 50ll * 1024ll * 1024ll, &get_text_, nullptr);
|
|
//sqlite3_prepare_v2(db_, GetBinaryCommand, 50ll * 1024ll * 1024ll, &get_binary_, nullptr);
|
|
//sqlite3_prepare_v2(db_, GetBinaryCommand, 50ll * 1024ll * 1024ll, &get_binary_, nullptr);
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
- void Database::ExecSql(const char *sql) {
|
|
|
|
- char *error;
|
|
|
|
- if (sqlite3_exec(db_, sql, nullptr, nullptr, &error) != SQLITE_OK) {
|
|
|
|
- fprintf(stderr, "SQLite3 error: %s\n", sqlite3_errmsg(db_));
|
|
|
|
- throw DatException((std::string("Bad Database::ExecSql() - unable to perform request")
|
|
|
|
- + std::string(sql)).c_str(), DATABASE_EXCEPTION);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ void Database::ExecSql(const std::string &sql) {
|
|
|
|
+ char *error;
|
|
|
|
+ if (sqlite3_exec(db_, sql.c_str(), nullptr, nullptr, &error) != SQLITE_OK) {
|
|
|
|
+ fprintf(stderr, "SQLite3 error: %s\n", sqlite3_errmsg(db_));
|
|
|
|
+ throw DatException((std::string("Bad Database::ExecSql() - unable to perform request")
|
|
|
|
+ + std::string(sql)).c_str(), DATABASE_EXCEPTION);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
- void Database::PushTextFile(long long file_id, long long gossip_id, char *text, char *args, int dat_id) {
|
|
|
|
|
|
+ void Database::PushTextFile(long long file_id, long long gossip_id, const char16_t *text, const char *args, int dat_id) {
|
|
if (query_size_ == 0)
|
|
if (query_size_ == 0)
|
|
ExecSql("BEGIN TRANSACTION");
|
|
ExecSql("BEGIN TRANSACTION");
|
|
|
|
+ query_size_++;
|
|
|
|
|
|
sqlite3_bind_int(insert_text_, 1, (int)file_id);
|
|
sqlite3_bind_int(insert_text_, 1, (int)file_id);
|
|
sqlite3_bind_int(insert_text_, 2, (int)gossip_id);
|
|
sqlite3_bind_int(insert_text_, 2, (int)gossip_id);
|
|
- sqlite3_bind_text(insert_text_, 3, text, sizeof(text), SQLITE_TRANSIENT);
|
|
|
|
- sqlite3_bind_text(insert_text_, 4, args, sizeof(args), SQLITE_TRANSIENT);
|
|
|
|
|
|
+ int a = sqlite3_bind_text16(insert_text_, 3, text, -1, SQLITE_TRANSIENT);
|
|
|
|
+ int b = sqlite3_bind_text(insert_text_, 4, args, -1, SQLITE_TRANSIENT);
|
|
|
|
|
|
- if (sqlite3_step(insert_text_) != SQLITE_OK) {
|
|
|
|
|
|
+ if (sqlite3_step(insert_text_) != SQLITE_DONE) {
|
|
fprintf(stderr, "SQLite3 error: %s\n", sqlite3_errmsg(db_));
|
|
fprintf(stderr, "SQLite3 error: %s\n", sqlite3_errmsg(db_));
|
|
throw DatException((std::string("Bad Database::PushTextFile() - unable to perform push operation")).c_str(),
|
|
throw DatException((std::string("Bad Database::PushTextFile() - unable to perform push operation")).c_str(),
|
|
DATABASE_EXCEPTION);
|
|
DATABASE_EXCEPTION);
|
|
@@ -86,7 +88,6 @@ namespace LOTRO_DAT {
|
|
|
|
|
|
sqlite3_reset(insert_text_);
|
|
sqlite3_reset(insert_text_);
|
|
|
|
|
|
- query_size_++;
|
|
|
|
if (query_size_ >= QUERY_MAX_SIZE) {
|
|
if (query_size_ >= QUERY_MAX_SIZE) {
|
|
ExecSql("COMMIT");
|
|
ExecSql("COMMIT");
|
|
query_size_ = 0;
|
|
query_size_ = 0;
|
|
@@ -98,18 +99,18 @@ namespace LOTRO_DAT {
|
|
void Database::PushBinaryFile(long long file_id, const BinaryData &data) {
|
|
void Database::PushBinaryFile(long long file_id, const BinaryData &data) {
|
|
if (query_size_ == 0)
|
|
if (query_size_ == 0)
|
|
ExecSql("BEGIN TRANSACTION");
|
|
ExecSql("BEGIN TRANSACTION");
|
|
|
|
+ query_size_++;
|
|
|
|
|
|
sqlite3_bind_int(insert_binary_, 1, (int)file_id);
|
|
sqlite3_bind_int(insert_binary_, 1, (int)file_id);
|
|
sqlite3_bind_blob(insert_binary_, 2, data.data(), data.size(), SQLITE_TRANSIENT);
|
|
sqlite3_bind_blob(insert_binary_, 2, data.data(), data.size(), SQLITE_TRANSIENT);
|
|
|
|
|
|
- if (sqlite3_step(insert_binary_) != SQLITE_DONE) {
|
|
|
|
|
|
+ if (sqlite3_step(insert_binary_) != SQLITE_DONE) {
|
|
fprintf(stderr, "SQLite3 error: %s\n", sqlite3_errmsg(db_));
|
|
fprintf(stderr, "SQLite3 error: %s\n", sqlite3_errmsg(db_));
|
|
throw DatException(std::string("Bad Database::PushTextFile() - unable to perform operation").c_str()
|
|
throw DatException(std::string("Bad Database::PushTextFile() - unable to perform operation").c_str()
|
|
, DATABASE_EXCEPTION);
|
|
, DATABASE_EXCEPTION);
|
|
}
|
|
}
|
|
sqlite3_reset(insert_binary_);
|
|
sqlite3_reset(insert_binary_);
|
|
|
|
|
|
- query_size_++;
|
|
|
|
if (query_size_ >= QUERY_MAX_SIZE) {
|
|
if (query_size_ >= QUERY_MAX_SIZE) {
|
|
ExecSql("COMMIT");
|
|
ExecSql("COMMIT");
|
|
query_size_ = 0;
|
|
query_size_ = 0;
|