|
@@ -36,14 +36,19 @@ namespace LOTRO_DAT {
|
|
defaultConf.setGlobally(el::ConfigurationType::Filename, "dat_library.log");
|
|
defaultConf.setGlobally(el::ConfigurationType::Filename, "dat_library.log");
|
|
defaultConf.setGlobally(el::ConfigurationType::ToStandardOutput, "false");
|
|
defaultConf.setGlobally(el::ConfigurationType::ToStandardOutput, "false");
|
|
defaultConf.setGlobally(el::ConfigurationType::PerformanceTracking, "true");
|
|
defaultConf.setGlobally(el::ConfigurationType::PerformanceTracking, "true");
|
|
- defaultConf.setGlobally(el::ConfigurationType::MaxLogFileSize, "20971520"); // 20MB
|
|
|
|
|
|
+ defaultConf.setGlobally(el::ConfigurationType::MaxLogFileSize, "5242880"); // 5MB
|
|
defaultConf.setGlobally(el::ConfigurationType::LogFlushThreshold, "1"); // Flush after every one log
|
|
defaultConf.setGlobally(el::ConfigurationType::LogFlushThreshold, "1"); // Flush after every one log
|
|
- el::Loggers::reconfigureAllLoggers(defaultConf);
|
|
|
|
|
|
|
|
|
|
+ defaultConf.set(el::Level::Debug, el::ConfigurationType::Enabled, "true");
|
|
|
|
+ defaultConf.set(el::Level::Debug, el::ConfigurationType::Filename, "dat_library_debug.log");
|
|
|
|
+
|
|
|
|
+ el::Loggers::reconfigureAllLoggers(defaultConf);
|
|
|
|
+ LOG(INFO) << "==================================================================";
|
|
LOG(INFO) << "Starting new DatFile class instance";
|
|
LOG(INFO) << "Starting new DatFile class instance";
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::InitDatFile(const std::string &filename, int dat_id) {
|
|
DAT_RESULT DatFile::InitDatFile(const std::string &filename, int dat_id) {
|
|
|
|
+ LOG(INFO) << "Started initialisation of DatFile " << filename;
|
|
if (dat_state_ != CLOSED && filename == filename_) {
|
|
if (dat_state_ != CLOSED && filename == filename_) {
|
|
LOG(DEBUG) << "Trying to reopen the same file: " << filename << ". Doing nothing.";
|
|
LOG(DEBUG) << "Trying to reopen the same file: " << filename << ". Doing nothing.";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
@@ -124,6 +129,7 @@ namespace LOTRO_DAT {
|
|
/// Throws DatException() if undefined behaviour happened
|
|
/// Throws DatException() if undefined behaviour happened
|
|
|
|
|
|
DAT_RESULT DatFile::ExtractFile(long long file_id, const std::string &path) {
|
|
DAT_RESULT DatFile::ExtractFile(long long file_id, const std::string &path) {
|
|
|
|
+ LOG(DEBUG) << "Extracting file " << file_id << " to path " << path;
|
|
if (dat_state_ < READY) {
|
|
if (dat_state_ < READY) {
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot perform extraction.";
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot perform extraction.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -146,6 +152,7 @@ namespace LOTRO_DAT {
|
|
LOG(ERROR) << "Cannot write to file.";
|
|
LOG(ERROR) << "Cannot write to file.";
|
|
return WRITE_TO_FILE_ERROR;
|
|
return WRITE_TO_FILE_ERROR;
|
|
}
|
|
}
|
|
|
|
+ LOG(DEBUG) << "File " << file_id << " extracted successfully";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -157,6 +164,8 @@ namespace LOTRO_DAT {
|
|
/// Throws DatException() if undefined behaviour happened
|
|
/// Throws DatException() if undefined behaviour happened
|
|
|
|
|
|
DAT_RESULT DatFile::ExtractFile(long long file_id, Database *db) {
|
|
DAT_RESULT DatFile::ExtractFile(long long file_id, Database *db) {
|
|
|
|
+ LOG(DEBUG) << "Extracting file " << file_id << " to database.";
|
|
|
|
+
|
|
if (dat_state_ < READY) {
|
|
if (dat_state_ < READY) {
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot perform extraction.";
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot perform extraction.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -192,6 +201,7 @@ namespace LOTRO_DAT {
|
|
LOG(ERROR) << "Caught " << e.what() << " exception.";
|
|
LOG(ERROR) << "Caught " << e.what() << " exception.";
|
|
return FAILED;
|
|
return FAILED;
|
|
}
|
|
}
|
|
|
|
+ LOG(DEBUG) << "File " << file_id << " extracted successfully";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -203,6 +213,7 @@ namespace LOTRO_DAT {
|
|
/// Throws DatException() if undefined behaviour happened
|
|
/// Throws DatException() if undefined behaviour happened
|
|
|
|
|
|
int DatFile::ExtractAllFilesByType(FILE_TYPE type, std::string path) {
|
|
int DatFile::ExtractAllFilesByType(FILE_TYPE type, std::string path) {
|
|
|
|
+ LOG(INFO) << "Extracting all files to path " << path;
|
|
if (dat_state_ < READY) {
|
|
if (dat_state_ < READY) {
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot perform extraction.";
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot perform extraction.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -215,6 +226,7 @@ namespace LOTRO_DAT {
|
|
success += (ExtractFile(i.second->file_id(), (path + std::to_string(i.second->file_id()))) == SUCCESS ? 1 : 0);
|
|
success += (ExtractFile(i.second->file_id(), (path + std::to_string(i.second->file_id()))) == SUCCESS ? 1 : 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ LOG(INFO) << "Successfully extracted " << success << " files";
|
|
return success;
|
|
return success;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -224,6 +236,8 @@ namespace LOTRO_DAT {
|
|
/// Throws DatException() if undefined behaviour happened
|
|
/// Throws DatException() if undefined behaviour happened
|
|
|
|
|
|
int DatFile::ExtractAllFilesByType(FILE_TYPE type, Database *db) {
|
|
int DatFile::ExtractAllFilesByType(FILE_TYPE type, Database *db) {
|
|
|
|
+ LOG(INFO) << "Extracting all files to database...";
|
|
|
|
+
|
|
if (dat_state_ < READY) {
|
|
if (dat_state_ < READY) {
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot perform extraction.";
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot perform extraction.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -236,11 +250,13 @@ namespace LOTRO_DAT {
|
|
success += (ExtractFile(i.second->file_id(), db) == SUCCESS ? 1 : 0);
|
|
success += (ExtractFile(i.second->file_id(), db) == SUCCESS ? 1 : 0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ LOG(INFO) << "Extracted " << success << " files";
|
|
return success;
|
|
return success;
|
|
}
|
|
}
|
|
|
|
|
|
// TODO: Write description and make asserts
|
|
// TODO: Write description and make asserts
|
|
DAT_RESULT DatFile::PatchFile(const char *filename, YAML::Node options) {
|
|
DAT_RESULT DatFile::PatchFile(const char *filename, YAML::Node options) {
|
|
|
|
+ LOG(DEBUG) << "Patching file with filename" << filename << " and id = " << options["fid"].as<long long>();
|
|
if (dat_state_ < READY) {
|
|
if (dat_state_ < READY) {
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot patch.";
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot patch.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -270,11 +286,13 @@ namespace LOTRO_DAT {
|
|
LOG(ERROR) << "Caught " << e.what() <<" exception.";
|
|
LOG(ERROR) << "Caught " << e.what() <<" exception.";
|
|
return FAILED;
|
|
return FAILED;
|
|
}
|
|
}
|
|
|
|
+ LOG(DEBUG) << "Successfully patched file with filename = " << filename << " and id = " << options["fid"].as<long long>();
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
// TODO: Write description and make asserts
|
|
// TODO: Write description and make asserts
|
|
DAT_RESULT DatFile::PatchFile(const SubfileData &data, bool rewrite_original) {
|
|
DAT_RESULT DatFile::PatchFile(const SubfileData &data, bool rewrite_original) {
|
|
|
|
+ LOG(DEBUG) << "Patching file with id = " << data.options["fid"].as<long long>() << (rewrite_original ? " REWRITING ORIGINAL FILE." : ".");
|
|
if (dat_state_ < READY) {
|
|
if (dat_state_ < READY) {
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot patch.";
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot patch.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -315,11 +333,13 @@ namespace LOTRO_DAT {
|
|
LOG(ERROR) << "Caught " << e.what() << " exception";
|
|
LOG(ERROR) << "Caught " << e.what() << " exception";
|
|
return FAILED;
|
|
return FAILED;
|
|
}
|
|
}
|
|
|
|
+ LOG(DEBUG) << "Patched successfully file " << data.options["fid"].as<long long>() << (rewrite_original ? " REWRITING ORIGINAL FILE." : ".");
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
// TODO: Write description
|
|
// TODO: Write description
|
|
DAT_RESULT DatFile::PatchAllDatabase(Database *db) {
|
|
DAT_RESULT DatFile::PatchAllDatabase(Database *db) {
|
|
|
|
+ LOG(INFO) << "Patching all database";
|
|
if (dat_state_ < READY) {
|
|
if (dat_state_ < READY) {
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot patch.";
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot patch.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -337,7 +357,7 @@ namespace LOTRO_DAT {
|
|
DAT_RESULT result = CommitChanges();
|
|
DAT_RESULT result = CommitChanges();
|
|
if (result != SUCCESS)
|
|
if (result != SUCCESS)
|
|
return result;
|
|
return result;
|
|
-
|
|
|
|
|
|
+ LOG(INFO) << "Successfully patched whole database";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -346,6 +366,7 @@ namespace LOTRO_DAT {
|
|
/// Gets std::string path - path to directory, where the file will be written with name "dict.txt"
|
|
/// Gets std::string path - path to directory, where the file will be written with name "dict.txt"
|
|
|
|
|
|
DAT_RESULT DatFile::WriteUnorderedDictionary(std::string path) const {
|
|
DAT_RESULT DatFile::WriteUnorderedDictionary(std::string path) const {
|
|
|
|
+ LOG(INFO) << "Writing unordered dictionary to " << path << "dict.txt";
|
|
FILE *f = nullptr;
|
|
FILE *f = nullptr;
|
|
fopen_s(&f, (path + "dict.txt").c_str(), "w");
|
|
fopen_s(&f, (path + "dict.txt").c_str(), "w");
|
|
|
|
|
|
@@ -360,6 +381,7 @@ namespace LOTRO_DAT {
|
|
i.second->block_size(), i.second->Extension().c_str());
|
|
i.second->block_size(), i.second->Extension().c_str());
|
|
}
|
|
}
|
|
fclose(f);
|
|
fclose(f);
|
|
|
|
+ LOG(INFO) << "Unordered dictionary was written successfully to " << path << "dict.txt";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -374,6 +396,7 @@ namespace LOTRO_DAT {
|
|
/// Returns BinaryData, which contains of subfile data, made from parts of file in DatFile
|
|
/// Returns BinaryData, which contains of subfile data, made from parts of file in DatFile
|
|
// TODO: ASSERTS
|
|
// TODO: ASSERTS
|
|
BinaryData DatFile::GetFileData(const Subfile *file, long long int offset) {
|
|
BinaryData DatFile::GetFileData(const Subfile *file, long long int offset) {
|
|
|
|
+ LOG(DEBUG) << "Getting file " << file->file_id() << " data";
|
|
BinaryData mfile_id(20);
|
|
BinaryData mfile_id(20);
|
|
ReadData(mfile_id, 20, file->file_offset() + 8);
|
|
ReadData(mfile_id, 20, file->file_offset() + 8);
|
|
if (!mfile_id.CheckCompression() && file->file_id() != mfile_id.ToNumber<4>(0))
|
|
if (!mfile_id.CheckCompression() && file->file_id() != mfile_id.ToNumber<4>(0))
|
|
@@ -404,7 +427,7 @@ namespace LOTRO_DAT {
|
|
ReadData(data, std::min(fragment_size, file->file_size() - current_block_size), fragment_offset, current_block_size );
|
|
ReadData(data, std::min(fragment_size, file->file_size() - current_block_size), fragment_offset, current_block_size );
|
|
current_block_size += fragment_size;
|
|
current_block_size += fragment_size;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ LOG(DEBUG) << "Successfully got file " << file->file_id() << " data";
|
|
return data;
|
|
return data;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -412,6 +435,7 @@ namespace LOTRO_DAT {
|
|
/// Shouldn't be used by any external classes except Subfile and Subdirectory.
|
|
/// Shouldn't be used by any external classes except Subfile and Subdirectory.
|
|
|
|
|
|
DAT_RESULT DatFile::OpenDatFile(const char *dat_name) {
|
|
DAT_RESULT DatFile::OpenDatFile(const char *dat_name) {
|
|
|
|
+ LOG(DEBUG) << "Started opening DatFile";
|
|
if (dat_state_ != CLOSED) {
|
|
if (dat_state_ != CLOSED) {
|
|
CloseDatFile();
|
|
CloseDatFile();
|
|
}
|
|
}
|
|
@@ -428,10 +452,12 @@ namespace LOTRO_DAT {
|
|
fseek(file_handler_, 0, SEEK_SET);
|
|
fseek(file_handler_, 0, SEEK_SET);
|
|
|
|
|
|
dat_state_ = SUCCESS_OPENED;
|
|
dat_state_ = SUCCESS_OPENED;
|
|
|
|
+ LOG(DEBUG) << "Successfully opened DatFile";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::ReadSuperBlock() {
|
|
DAT_RESULT DatFile::ReadSuperBlock() {
|
|
|
|
+ LOG(DEBUG) << "Started reading superblock";
|
|
if (dat_state_ != SUCCESS_OPENED) {
|
|
if (dat_state_ != SUCCESS_OPENED) {
|
|
LOG(ERROR) << "Dat state isn't SUCCESS_OPENED. Cannot perform extraction.";
|
|
LOG(ERROR) << "Dat state isn't SUCCESS_OPENED. Cannot perform extraction.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -463,10 +489,12 @@ namespace LOTRO_DAT {
|
|
}
|
|
}
|
|
|
|
|
|
dat_state_ = SUCCESS_SUPERBLOCK;
|
|
dat_state_ = SUCCESS_SUPERBLOCK;
|
|
|
|
+ LOG(DEBUG) << "Superblock read successfully";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::MakeDirectories() {
|
|
DAT_RESULT DatFile::MakeDirectories() {
|
|
|
|
+ LOG(DEBUG) << "Started making directories";
|
|
if (dat_state_ != SUCCESS_SUPERBLOCK) {
|
|
if (dat_state_ != SUCCESS_SUPERBLOCK) {
|
|
LOG(ERROR) << "Dat state isn't SUCCESS_SUPERBLOCK. Cannot make directories.";
|
|
LOG(ERROR) << "Dat state isn't SUCCESS_SUPERBLOCK. Cannot make directories.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -474,10 +502,12 @@ namespace LOTRO_DAT {
|
|
|
|
|
|
root_directory_ = new SubDirectory((unsigned) root_directory_offset_, this);
|
|
root_directory_ = new SubDirectory((unsigned) root_directory_offset_, this);
|
|
dat_state_ = SUCCESS_DIRECTORIES;
|
|
dat_state_ = SUCCESS_DIRECTORIES;
|
|
|
|
+ LOG(DEBUG) << "Directories made successfully";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::MakeDictionary() {
|
|
DAT_RESULT DatFile::MakeDictionary() {
|
|
|
|
+ LOG(DEBUG) << "Started making dictionary";
|
|
if (dat_state_ != SUCCESS_DIRECTORIES) {
|
|
if (dat_state_ != SUCCESS_DIRECTORIES) {
|
|
LOG(ERROR) << "Dat state isn't SUCCESS_DIRECTORIES. Cannot make directories.";
|
|
LOG(ERROR) << "Dat state isn't SUCCESS_DIRECTORIES. Cannot make directories.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -490,6 +520,7 @@ namespace LOTRO_DAT {
|
|
|
|
|
|
root_directory_->MakeDictionary(dictionary_);
|
|
root_directory_->MakeDictionary(dictionary_);
|
|
dat_state_ = SUCCESS_DICTIONARY;
|
|
dat_state_ = SUCCESS_DICTIONARY;
|
|
|
|
+ LOG(DEBUG) << "Dictionary made successfull";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -531,6 +562,7 @@ namespace LOTRO_DAT {
|
|
/// Special functions used by patch process.
|
|
/// Special functions used by patch process.
|
|
/// Shouldn't be used by any external class.
|
|
/// Shouldn't be used by any external class.
|
|
DAT_RESULT DatFile::ApplyFilePatch(Subfile *file, const BinaryData &data, bool rewrite_original) {
|
|
DAT_RESULT DatFile::ApplyFilePatch(Subfile *file, const BinaryData &data, bool rewrite_original) {
|
|
|
|
+ LOG(DEBUG) << "Applying " << file->file_id() << " patch.";
|
|
auto file_id = file->file_id();
|
|
auto file_id = file->file_id();
|
|
if (patched_list.count(file_id) != 0) {
|
|
if (patched_list.count(file_id) != 0) {
|
|
LOG(WARNING) << "Warning: DatFile::ApplyFilePatch - found 2 files in patch with the same file_id = "
|
|
LOG(WARNING) << "Warning: DatFile::ApplyFilePatch - found 2 files in patch with the same file_id = "
|
|
@@ -609,24 +641,30 @@ namespace LOTRO_DAT {
|
|
patch_dict_[file_id]->category = file->category;
|
|
patch_dict_[file_id]->category = file->category;
|
|
|
|
|
|
UpdateFragmentationJournal(journal);
|
|
UpdateFragmentationJournal(journal);
|
|
|
|
+ LOG(DEBUG) << "Successfully applied file " << file->file_id() << " patch.";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::UpdateSubdirectories() {
|
|
DAT_RESULT DatFile::UpdateSubdirectories() {
|
|
// TODO: asserts
|
|
// TODO: asserts
|
|
|
|
+ LOG(DEBUG) << "Started updating subdirectories";
|
|
root_directory_->UpdateDirectories(patched_list, dictionary_);
|
|
root_directory_->UpdateDirectories(patched_list, dictionary_);
|
|
|
|
+ LOG(DEBUG) << "Finished updating subdirectories";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
std::vector<std::pair<long long, long long> > DatFile::GetFragmentationJournal() {
|
|
std::vector<std::pair<long long, long long> > DatFile::GetFragmentationJournal() {
|
|
|
|
+ LOG(DEBUG) << "Getting fragmentation journal";
|
|
BinaryData data(8);
|
|
BinaryData data(8);
|
|
ReadData(data, 8, fragmentation_journal_offset_ + 8);
|
|
ReadData(data, 8, fragmentation_journal_offset_ + 8);
|
|
std::vector<std::pair<long long, long long> > result;
|
|
std::vector<std::pair<long long, long long> > result;
|
|
result.emplace_back(std::make_pair(data.ToNumber<4>(0), data.ToNumber<4>(4)));
|
|
result.emplace_back(std::make_pair(data.ToNumber<4>(0), data.ToNumber<4>(4)));
|
|
|
|
+ LOG(DEBUG) << "Finished getting fragmentation journal";
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::UpdateHeader() {
|
|
DAT_RESULT DatFile::UpdateHeader() {
|
|
|
|
+ LOG(DEBUG) << "Updating header";
|
|
WriteData(BinaryData::FromNumber<4>(constant1_), 4, 0x100);
|
|
WriteData(BinaryData::FromNumber<4>(constant1_), 4, 0x100);
|
|
WriteData(BinaryData::FromNumber<4>(constant2_), 4, 0x140);
|
|
WriteData(BinaryData::FromNumber<4>(constant2_), 4, 0x140);
|
|
WriteData(BinaryData::FromNumber<4>(file_size_), 4, 0x148);
|
|
WriteData(BinaryData::FromNumber<4>(file_size_), 4, 0x148);
|
|
@@ -634,10 +672,12 @@ namespace LOTRO_DAT {
|
|
WriteData(BinaryData::FromNumber<4>(version2_), 4, 0x150);
|
|
WriteData(BinaryData::FromNumber<4>(version2_), 4, 0x150);
|
|
WriteData(BinaryData::FromNumber<4>(fragmentation_journal_offset_), 4, 0x154);
|
|
WriteData(BinaryData::FromNumber<4>(fragmentation_journal_offset_), 4, 0x154);
|
|
WriteData(BinaryData::FromNumber<4>(root_directory_offset_), 4, 0x160);
|
|
WriteData(BinaryData::FromNumber<4>(root_directory_offset_), 4, 0x160);
|
|
|
|
+ LOG(DEBUG) << "Finished updating header";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::UpdateFragmentationJournal(const std::vector<std::pair<long long, long long> > &journal) {
|
|
DAT_RESULT DatFile::UpdateFragmentationJournal(const std::vector<std::pair<long long, long long> > &journal) {
|
|
|
|
+ LOG(DEBUG) << "Updating fragmentation journal";
|
|
for (unsigned i = 0; i < journal.size(); i++) {
|
|
for (unsigned i = 0; i < journal.size(); i++) {
|
|
long long size = journal[i].first;
|
|
long long size = journal[i].first;
|
|
long long offset = journal[i].second;
|
|
long long offset = journal[i].second;
|
|
@@ -645,36 +685,35 @@ namespace LOTRO_DAT {
|
|
WriteData(BinaryData::FromNumber<4>(size), 4, fragmentation_journal_offset_ + 8 * (i + 1));
|
|
WriteData(BinaryData::FromNumber<4>(size), 4, fragmentation_journal_offset_ + 8 * (i + 1));
|
|
WriteData(BinaryData::FromNumber<4>(offset), 4, fragmentation_journal_offset_ + 8 * (i + 1) + 4);
|
|
WriteData(BinaryData::FromNumber<4>(offset), 4, fragmentation_journal_offset_ + 8 * (i + 1) + 4);
|
|
}
|
|
}
|
|
|
|
+ LOG(DEBUG) << "Finished updating fragmentation journal";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::CommitChanges() {
|
|
DAT_RESULT DatFile::CommitChanges() {
|
|
|
|
+ LOG(INFO) << "Started commiting changes";
|
|
if (dat_state_ != UPDATED) {
|
|
if (dat_state_ != UPDATED) {
|
|
LOG(DEBUG) << "Commiting changes to file with state != UPDATED. Nothing to do";
|
|
LOG(DEBUG) << "Commiting changes to file with state != UPDATED. Nothing to do";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
- LOG(DEBUG) << "There are some updated files. Rewriting dictionary...";
|
|
|
|
- LOG(DEBUG) << "Updating locales...";
|
|
|
|
|
|
+ LOG(INFO) << "There are some updated files. Rewriting dictionary...";
|
|
CommitLocales();
|
|
CommitLocales();
|
|
|
|
|
|
auto journal = GetFragmentationJournal();
|
|
auto journal = GetFragmentationJournal();
|
|
UpdateFragmentationJournal(journal);
|
|
UpdateFragmentationJournal(journal);
|
|
- LOG(DEBUG) << "Updated fragmentation journal...";
|
|
|
|
|
|
|
|
UpdateHeader();
|
|
UpdateHeader();
|
|
- LOG(DEBUG) << "Updated header...";
|
|
|
|
UpdateSubdirectories();
|
|
UpdateSubdirectories();
|
|
- LOG(DEBUG) << "Updated subdirectories...";
|
|
|
|
- LOG(DEBUG) << "Changed " << patched_list.size() << " files...";
|
|
|
|
|
|
+ LOG(INFO) << "Changed " << patched_list.size() << " files...";
|
|
|
|
|
|
patched_list.clear();
|
|
patched_list.clear();
|
|
dat_state_ = READY;
|
|
dat_state_ = READY;
|
|
- LOG(DEBUG) << "Done Commiting changes!";
|
|
|
|
|
|
+ LOG(INFO) << "Done Commiting changes!";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::CloseDatFile() {
|
|
DAT_RESULT DatFile::CloseDatFile() {
|
|
|
|
+ LOG(INFO) << "Closing DatFile";
|
|
if (dat_state_ == CLOSED) {
|
|
if (dat_state_ == CLOSED) {
|
|
LOG(INFO) << "DatFile is already closed. Nothing to do";
|
|
LOG(INFO) << "DatFile is already closed. Nothing to do";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
@@ -699,14 +738,14 @@ namespace LOTRO_DAT {
|
|
dictionary_.clear();
|
|
dictionary_.clear();
|
|
|
|
|
|
dat_state_ = CLOSED;
|
|
dat_state_ = CLOSED;
|
|
-
|
|
|
|
|
|
+ LOG(INFO) << "File closed successfully.";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
// LOCALE MANAGING SECTION
|
|
// LOCALE MANAGING SECTION
|
|
|
|
|
|
DAT_RESULT DatFile::InitLocales() {
|
|
DAT_RESULT DatFile::InitLocales() {
|
|
- LOG(DEBUG) << "Initialising locales...";
|
|
|
|
|
|
+ LOG(INFO) << "Initialising locales...";
|
|
BinaryData dicts_data;
|
|
BinaryData dicts_data;
|
|
|
|
|
|
if (dictionary_.count(2013266257) != 0)
|
|
if (dictionary_.count(2013266257) != 0)
|
|
@@ -791,6 +830,7 @@ namespace LOTRO_DAT {
|
|
inactive_cat_s += std::to_string(i) + " ";
|
|
inactive_cat_s += std::to_string(i) + " ";
|
|
}
|
|
}
|
|
LOG(INFO) << "Unactive patches now: " << inactive_cat_s;
|
|
LOG(INFO) << "Unactive patches now: " << inactive_cat_s;
|
|
|
|
+ LOG(INFO) << "Finished initialising locales";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -807,6 +847,7 @@ namespace LOTRO_DAT {
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::SetLocale(LOCALE locale) {
|
|
DAT_RESULT DatFile::SetLocale(LOCALE locale) {
|
|
|
|
+ LOG(INFO) << "Setting locale to " << (locale == PATCHED ? " PATCHED" : " ORIGINAL");
|
|
if (dat_state_ < READY) {
|
|
if (dat_state_ < READY) {
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot set locale.";
|
|
LOG(ERROR) << "Dat state isn't READY. Cannot set locale.";
|
|
return INCORRECT_STATE_ERROR;
|
|
return INCORRECT_STATE_ERROR;
|
|
@@ -844,10 +885,12 @@ namespace LOTRO_DAT {
|
|
|
|
|
|
current_locale_ = locale;
|
|
current_locale_ = locale;
|
|
CommitChanges();
|
|
CommitChanges();
|
|
|
|
+ LOG(INFO) << "Locale set successfull";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
bool DatFile::CheckIfUpdatedByGame() {
|
|
bool DatFile::CheckIfUpdatedByGame() {
|
|
|
|
+ LOG(INFO) << "Checking if DatFile was updated by LotRO";
|
|
if (!pending_patch_.empty())
|
|
if (!pending_patch_.empty())
|
|
return true;
|
|
return true;
|
|
if (current_locale_ == ORIGINAL)
|
|
if (current_locale_ == ORIGINAL)
|
|
@@ -872,11 +915,13 @@ namespace LOTRO_DAT {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
CommitChanges();
|
|
CommitChanges();
|
|
|
|
+ LOG(INFO) << "Dat file " << (updated ? "WAS " : "WASN'T ") << "updated by game.";
|
|
return updated;
|
|
return updated;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::RepairPatches(Database *db) {
|
|
DAT_RESULT DatFile::RepairPatches(Database *db) {
|
|
// TODO: Find errors
|
|
// TODO: Find errors
|
|
|
|
+ LOG(INFO) << "Repairing patches";
|
|
SubfileData data;
|
|
SubfileData data;
|
|
data = db->GetNextFile();
|
|
data = db->GetNextFile();
|
|
while (!data.Empty()) {
|
|
while (!data.Empty()) {
|
|
@@ -886,10 +931,12 @@ namespace LOTRO_DAT {
|
|
data = db->GetNextFile();
|
|
data = db->GetNextFile();
|
|
}
|
|
}
|
|
CommitChanges();
|
|
CommitChanges();
|
|
|
|
+ LOG(INFO) << "Successfully repaired with database";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::FinishRepairingPatches() {
|
|
DAT_RESULT DatFile::FinishRepairingPatches() {
|
|
|
|
+ LOG(INFO) << "Finishing repairing patches";
|
|
pending_patch_.clear();
|
|
pending_patch_.clear();
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
@@ -907,7 +954,7 @@ namespace LOTRO_DAT {
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::CommitLocales() {
|
|
DAT_RESULT DatFile::CommitLocales() {
|
|
- std::cout << "Committing locales..." << std::endl;
|
|
|
|
|
|
+ LOG(INFO) << "Committing locales...";
|
|
SubfileData data = dictionary_[2013266257]->PrepareForExport(GetFileData(dictionary_[2013266257]));
|
|
SubfileData data = dictionary_[2013266257]->PrepareForExport(GetFileData(dictionary_[2013266257]));
|
|
data.options["fid"] = "2013266257";
|
|
data.options["fid"] = "2013266257";
|
|
data.options["ext"] = ".unknown";
|
|
data.options["ext"] = ".unknown";
|
|
@@ -970,11 +1017,12 @@ namespace LOTRO_DAT {
|
|
if (result != SUCCESS)
|
|
if (result != SUCCESS)
|
|
return result;
|
|
return result;
|
|
|
|
|
|
|
|
+ LOG(INFO) << "Locales commited successfully";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::EnableCategory(int category) {
|
|
DAT_RESULT DatFile::EnableCategory(int category) {
|
|
- LOG(DEBUG) << "Enabling category " << category;
|
|
|
|
|
|
+ LOG(INFO) << "Enabling category " << category;
|
|
if (inactive_categories.count(category) == 0)
|
|
if (inactive_categories.count(category) == 0)
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
|
|
|
|
@@ -992,11 +1040,12 @@ namespace LOTRO_DAT {
|
|
patched_list.insert(file_id);
|
|
patched_list.insert(file_id);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ LOG(INFO) << "Category " << category << " enabled successfully";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
DAT_RESULT DatFile::DisableCategory(int category) {
|
|
DAT_RESULT DatFile::DisableCategory(int category) {
|
|
- LOG(DEBUG) << "Disabling category " << category;
|
|
|
|
|
|
+ LOG(INFO) << "Disabling category " << category;
|
|
if (inactive_categories.count(category) != 0)
|
|
if (inactive_categories.count(category) != 0)
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
inactive_categories.insert(category);
|
|
inactive_categories.insert(category);
|
|
@@ -1013,6 +1062,7 @@ namespace LOTRO_DAT {
|
|
patched_list.insert(file_id);
|
|
patched_list.insert(file_id);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ LOG(INFO) << "Category " << category << " disabled successfully";
|
|
return SUCCESS;
|
|
return SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1021,10 +1071,12 @@ namespace LOTRO_DAT {
|
|
}
|
|
}
|
|
|
|
|
|
bool DatFile::CheckIfNotPatched() {
|
|
bool DatFile::CheckIfNotPatched() {
|
|
|
|
+ LOG(INFO) << "DatFile " << (patch_dict_.empty() ? "HASN'T " : "HAS already") << " been patched by LEGACY launcher!";
|
|
return patch_dict_.empty();
|
|
return patch_dict_.empty();
|
|
}
|
|
}
|
|
|
|
|
|
bool DatFile::CheckIfPatchedByOldLauncher() {
|
|
bool DatFile::CheckIfPatchedByOldLauncher() {
|
|
|
|
+ LOG(INFO) << "DatFile " << (dictionary_.count(620750000) == 0 ? "HASN'T " : "HAS already") << " been patched by OLD LAUNCHER!";
|
|
return dictionary_.count(620750000) > 0;
|
|
return dictionary_.count(620750000) > 0;
|
|
}
|
|
}
|
|
|
|
|