DatFile.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. //
  2. // Created by Иван_Архипов on 31.10.2017.
  3. //
  4. #include "DatFile.h"
  5. #include "BinaryData.h"
  6. #include "Common/DatException.h"
  7. #include "SubDirectory.h"
  8. #include "Subfile.h"
  9. #include "SubfileData.h"
  10. #include <locale>
  11. extern "C++"
  12. {
  13. namespace LOTRO_DAT {
  14. DatFile::DatFile() {
  15. dat_state_ = CLOSED;
  16. patched_ = false;
  17. }
  18. DatFile::DatFile(const char *filename, int dat_id) {
  19. dat_id_ = dat_id;
  20. dat_state_ = CLOSED;
  21. patched_ = false;
  22. OpenDatFile(filename);
  23. ReadSuperBlock();
  24. MakeDirectories();
  25. try {
  26. MakeDictionary();
  27. } catch (std::exception &e) {
  28. fprintf(stderr, "Caught %s exception.", e.what());
  29. fprintf(stderr, "Unable to make dictionary!! Unable to init DatFile!!!");
  30. return;
  31. }
  32. if (dat_state_ == SUCCESS_DICTIONARY)
  33. dat_state_ = READY;
  34. else
  35. throw DatException("Bad DatFile initialization! Not all init states were successfully passed!",
  36. INIT_EXCEPTION);
  37. //patched_ = true;
  38. //for (auto i : dictionary_)
  39. // patched_list[i.second->file_id()] = new BinaryData(i.second->MakeHeaderData());
  40. }
  41. DatFile::~DatFile() {
  42. if (patched_) {
  43. std::cout << "There are some updated files. Rewriting dictionary..." << std::endl << std::flush;
  44. UpdateHeader();
  45. std::cout << "Updated header..." << std::endl << std::flush;
  46. UpdateSubdirectories();
  47. std::cout << "Updated subdirectories..." << std::endl << std::flush;
  48. std::cout << "Changed " << patched_list.size() << " files..." << std::endl << std::flush;
  49. for (auto i : patched_list)
  50. delete i.second;
  51. }
  52. if (file_handler_ != nullptr)
  53. fclose(file_handler_);
  54. delete file_handler_;
  55. delete root_directory_;
  56. }
  57. /// Extracts file with file_id.
  58. /// If path is undefined then it will be recognised as current working directory
  59. /// Output file path consists of "path + file_id + file_extension";
  60. /// NOTICE: The directory, mentioned in "std::string path" variable SHOULD BE ALREADY CREATED;
  61. /// Otherwise DatException() will be thrown.
  62. /// Returns true, if file was successfully extracted;
  63. /// Throws DatException() if undefined behaviour happened
  64. bool DatFile::ExtractFile(long long file_id, const std::string &path) {
  65. if (dat_state_ != READY) {
  66. throw DatException("Bad DatFile::ExtractFile() - invalid DatFile state!", EXPORT_EXCEPTION);
  67. }
  68. BinaryData file_data;
  69. try {
  70. file_data = GetFileData(dictionary_[file_id], 8);
  71. } catch (std::exception &e) {
  72. fprintf(stderr, "Caught %s exception.", e.what());
  73. fprintf(stderr, "Unable to extract file due to uncaught exception while getting file data. Passing...\n");
  74. return false;
  75. }
  76. try {
  77. SubfileData export_data = dictionary_[file_id]->PrepareForExport(file_data);
  78. export_data.binary_data.WriteToFile(path + export_data.options["ext"].as<std::string>());
  79. } catch (std::exception &e) {
  80. fprintf(stderr, "Caught %s exception.", e.what());
  81. fprintf(stderr, "Unable to extract file due to uncaught exception while preparing file for export. Passing...\n");
  82. return false;
  83. }
  84. return true;
  85. }
  86. /// Extracts file with file_id to database "db".
  87. /// DATABASE SHOULD BE ALREADY CREATED; Otherwise DatException will be called.
  88. /// NOTICE: The directory, mentioned in "std::string path" variable SHOULD BE ALREADY CREATED;
  89. /// Otherwise DatException() will be thrown.
  90. /// Returns true, if file was successfully extracted;
  91. /// Throws DatException() if undefined behaviour happened
  92. bool DatFile::ExtractFile(long long file_id, Database *db) {
  93. if (dat_state_ != READY) {
  94. throw DatException("Bad DatFile::ExtractFile() - invalid DatFile state!", EXPORT_EXCEPTION);
  95. }
  96. BinaryData file_data;
  97. try {
  98. file_data = GetFileData(dictionary_[file_id], 8);
  99. } catch (std::exception &e) {
  100. fprintf(stderr, "Caught %s exception.", e.what());
  101. fprintf(stderr, "Unable to extract file due to uncaught exception while getting file data. Passing...\n");
  102. return false;
  103. }
  104. SubfileData export_data;
  105. try {
  106. export_data = dictionary_[file_id]->PrepareForExport(file_data);
  107. } catch (std::exception &e) {
  108. fprintf(stderr, "Caught %s exception.", e.what());
  109. fprintf(stderr, "Unable to extract file due to uncaught exception while preparing file for export. Passing...\n");
  110. return false;
  111. }
  112. try {
  113. db->PushFile(export_data);
  114. } catch (std::exception &e) {
  115. fprintf(stderr, "Caught %s exception.", e.what());
  116. printf("Caught %s exception.", e.what());
  117. fflush(stdout);
  118. fprintf(stderr, "Unable to put file or it's part to database. Continuing without this part. Database may be not complete\n");
  119. }
  120. return true;
  121. }
  122. /// Extracts all files with specific type to "path + type + file_id + file_part + extension" files;
  123. /// If path is undefined then it will be recognised as current working directory
  124. /// NOTICE: The directory, mentioned in "std::string path" variable SHOULD BE ALREADY CREATED;
  125. /// Otherwise DatException() will be thrown.
  126. /// Returns number of successfully extracted files
  127. /// Throws DatException() if undefined behaviour happened
  128. int DatFile::ExtractAllFilesByType(FILE_TYPE type, std::string path) {
  129. if (dat_state_ != READY) {
  130. throw DatException("Bad DatFile::ExtractAllFilesByType() - invalid DatFile state!", EXPORT_EXCEPTION);
  131. }
  132. int success = 0;
  133. for (auto i : dictionary_) {
  134. FILE_TYPE file_type = i.second->FileType();
  135. if (file_type == type) {
  136. success += ExtractFile(i.second->file_id(), (path + std::to_string(i.second->file_id())));
  137. }
  138. }
  139. return success;
  140. }
  141. /// Extracts all files with specific type to database "db";
  142. /// DATABASE SHOULD BE ALREADY CREATED; Otherwise DatException will be called.
  143. /// Returns number of successfully extracted files
  144. /// Throws DatException() if undefined behaviour happened
  145. int DatFile::ExtractAllFilesByType(FILE_TYPE type, Database *db) {
  146. if (dat_state_ != READY) {
  147. throw DatException("Bad DatFile::ExtractAllFilesByType() - invalid DatFile state!", EXPORT_EXCEPTION);
  148. }
  149. int success = 0;
  150. for (auto i : dictionary_) {
  151. FILE_TYPE file_type = i.second->FileType();
  152. if (file_type == type) {
  153. success += ExtractFile(i.second->file_id(), db);
  154. }
  155. }
  156. return success;
  157. }
  158. /// TODO: Write description and make asserts
  159. bool DatFile::PatchFile(const char *filename, YAML::Node options) {
  160. if (options["did"].IsDefined() && options["did"].as<int>() != dat_id_)
  161. return false;
  162. BinaryData data;
  163. data.ReadFromFile(filename);
  164. auto file_id = options["fid"].as<long long>();
  165. BinaryData old_data = GetFileData(dictionary_[file_id]);
  166. data = dictionary_[file_id]->MakeForImport(old_data, SubfileData(data, u"", options));
  167. try {
  168. ApplyFilePatch(dictionary_[file_id], data);
  169. } catch (std::exception &e) {
  170. fprintf(stderr, "Caught %s exception.", e.what());
  171. fprintf(stderr,
  172. "Some errors happened while patching file with id = %lld. Continuing process without this file..\n"
  173. "WARNING: DAT FILE CAN BE CORRUPTED!\n", file_id);
  174. printf("Some errors happened while patching file with id = %lld. Continuing process without this file..\n"
  175. "WARNING: DAT FILE CAN BE CORRUPTED!\n", file_id);
  176. fflush(stdout);
  177. return false;
  178. }
  179. return true;
  180. }
  181. // TODO: Write description and make asserts
  182. bool DatFile::PatchFile(const SubfileData &data) {
  183. auto file_id = data.options["fid"].as<long long>();
  184. Subfile *file = dictionary_[file_id];
  185. BinaryData old_data = GetFileData(file);
  186. BinaryData patch_data = file->MakeForImport(old_data, data);
  187. ApplyFilePatch(file, patch_data);
  188. return true;
  189. }
  190. // TODO: Write description and make asserts and IMPLEMENT
  191. bool DatFile::PatchAllDatabase(Database *db) {
  192. return false;
  193. }
  194. /// DatFile::WriteUnorderedDictionary(...);
  195. /// Prints list of all found files with some information about them to file.
  196. /// Gets std::string path - path to directory, where the file will be written with name "dict.txt"
  197. void DatFile::WriteUnorderedDictionary(std::string path) const {
  198. FILE *f;
  199. fopen_s(&f, (path + "dict.txt").c_str(), "w");
  200. fprintf(f, "file_id offset size size2 extension\n");
  201. for (auto i : dictionary_) {
  202. fprintf(f, "%lld %lld %lld %lld %s\n", i.second->file_id(), i.second->file_offset(), i.second->file_size(),
  203. i.second->block_size(), i.second->Extension().c_str());
  204. }
  205. fclose(f);
  206. }
  207. /// DatFile::files_number();
  208. /// Returns amount of files, found in dictionaries of DatFile. Some if them may be empty or erased.
  209. long long DatFile::files_number() const {
  210. return dictionary_.size();
  211. }
  212. /// DatFile::GetFileData()
  213. /// Returns BinaryData, which contains of subfile data, made from parts of file in DatFile
  214. BinaryData DatFile::GetFileData(const Subfile *file, long long int offset) {
  215. BinaryData mfile_id(4);
  216. ReadData(mfile_id, 4, file->file_offset() + 8);
  217. if (file->file_id() != mfile_id.ToNumber<4>(0))
  218. throw DatException("Bad DatFile::GetFileData() - file_id in Subfile doesn't match to file_id in DatFile.", READ_EXCEPTION);
  219. BinaryData data((unsigned)(file->file_size()));
  220. if (file->block_size() >= file->file_size() + 8) {
  221. ReadData(data, file->file_size(), file->file_offset() + offset);
  222. return data;
  223. }
  224. BinaryData fragments_count(4);
  225. ReadData(fragments_count, 4, file->file_offset());
  226. long long fragments_number = fragments_count.ToNumber<4>(0);
  227. long long current_block_size = file->block_size() - offset - 8 * fragments_number;
  228. ReadData(data, current_block_size , file->file_offset() + offset);
  229. BinaryData FragmentsDictionary(8 * unsigned(fragments_number));
  230. ReadData(FragmentsDictionary, 8 * unsigned(fragments_number), file->file_offset() + file->block_size() - 8 * fragments_number);
  231. for (long long i = 0; i < fragments_number; i++) {
  232. long long fragment_size = FragmentsDictionary.ToNumber<4>(8 * i);
  233. long long fragment_offset = FragmentsDictionary.ToNumber<4>(8 * i + 4);
  234. ReadData(data, std::min(fragment_size, file->file_size() - current_block_size), fragment_offset, current_block_size );
  235. current_block_size += fragment_size;
  236. }
  237. return data;
  238. }
  239. /// DatFile constants' getters.
  240. long long DatFile::constant1() const {
  241. return constant1_;
  242. }
  243. long long DatFile::constant2() const {
  244. return constant2_;
  245. }
  246. long long DatFile::file_size() const {
  247. return file_size_;
  248. }
  249. long long DatFile::version1() const {
  250. return version1_;
  251. }
  252. long long DatFile::version2() const {
  253. return version2_;
  254. }
  255. /// DatFile special functions for opening and reading/writing raw data.
  256. /// Shouldn't be used by any external classes except Subfile and Subdirectory.
  257. void DatFile::OpenDatFile(const char *dat_name) {
  258. if (dat_state_ != CLOSED)
  259. throw DatException("Bad initialisation of DatFile - current DatFile isn't in correct state!",
  260. INIT_EXCEPTION);
  261. fopen_s(&file_handler_, dat_name, "r+b");
  262. if (file_handler_ == nullptr) {
  263. std::string err = "Bad DatFile::OpenDatFile. Unable to open file ";
  264. err += dat_name;
  265. throw DatException(err.c_str(), INIT_EXCEPTION);
  266. }
  267. fseek(file_handler_, 0, SEEK_END);
  268. file_size_ = ftell(file_handler_);
  269. fseek(file_handler_, 0, SEEK_SET);
  270. dat_state_ = SUCCESS_OPENED;
  271. }
  272. void DatFile::ReadSuperBlock() {
  273. if (dat_state_ != SUCCESS_OPENED)
  274. throw DatException("Bad DatFile::ReadSuperBlock() - DatFile isn't in valid state!", INIT_EXCEPTION);
  275. BinaryData data(1024);
  276. ReadData(data, 1024);
  277. constant1_ = data.ToNumber<4>(0x100);
  278. constant2_ = data.ToNumber<4>(0x140);
  279. version1_ = data.ToNumber<4>(0x14C);
  280. version2_ = data.ToNumber<4>(0x150);
  281. fragmentation_journal_offset_ = data.ToNumber<4>(0x154);
  282. root_directory_offset_ = data.ToNumber<4>(0x160);
  283. auto size1 = data.ToNumber<4>(0x148);
  284. if (constant1_ != 0x4C5000)
  285. throw DatException(
  286. "Bad DatFile::ReadSuperBlock - variable at position 0x100 is not equal to .dat file constant!",
  287. INIT_EXCEPTION);
  288. if (constant2_ != 0x5442)
  289. throw DatException(
  290. "Bad DatFile::ReadSuperBlock - variable at position 0x140 is not equal to .dat file constant!",
  291. INIT_EXCEPTION);
  292. if (file_size_ != size1)
  293. throw DatException(
  294. "Bad DatFile::ReadSuperBlock - variable at 0x148 position is not equal to .dat file size!",
  295. INIT_EXCEPTION);
  296. dat_state_ = SUCCESS_SUPERBLOCK;
  297. }
  298. void DatFile::MakeDirectories() {
  299. if (dat_state_ != SUCCESS_SUPERBLOCK)
  300. throw DatException("Bad DatFile::MakeDirectories() - DatFile isn't in valid state!", INIT_EXCEPTION);
  301. root_directory_ = new SubDirectory((unsigned) root_directory_offset_, this);
  302. dat_state_ = SUCCESS_DIRECTORIES;
  303. }
  304. void DatFile::MakeDictionary() {
  305. if (dat_state_ != SUCCESS_DIRECTORIES)
  306. throw DatException("Bad DatFile::MakeDictionary() - DatFile isn't in valid state!", INIT_EXCEPTION);
  307. try {
  308. root_directory_->MakeDictionary(dictionary_);
  309. } catch (std::exception &e) {
  310. fprintf(stderr, "Caught %s exception.", e.what());
  311. fprintf(stderr, "Bad DatFile::MakeDictionary() - File is corrupted?\n");
  312. return;
  313. }
  314. dat_state_ = SUCCESS_DICTIONARY;
  315. }
  316. void DatFile::ReadData(BinaryData &data, long long size, long long offset, long long data_offset) {
  317. if (dat_state_ == CLOSED)
  318. throw DatException("Bad DatFile::ReadData() - DatFile isn't in valid state!", READ_EXCEPTION);
  319. if (data_offset + size > data.size()) {
  320. std::string err = "Bad DatFile::ReadData - trying to read more than BinaryData size\n";
  321. err += std::string("Reading ") + std::to_string(size) + std::string(" bytes from ")
  322. + std::to_string(offset) + std::string(" position in dat file.");
  323. throw DatException(err.c_str(), READ_EXCEPTION);
  324. }
  325. if (offset + size > file_size()) {
  326. std::string err = "Bad DatFile::ReadData - trying to read more than DatFile size elapsed\n";
  327. err += std::string("Reading ") + std::to_string(size) + std::string(" bytes from ")
  328. + std::to_string(offset) + std::string(" position in dat file.");
  329. throw DatException(err.c_str(), READ_EXCEPTION);
  330. }
  331. _fseeki64(file_handler_, offset, SEEK_SET);
  332. fread(data.data() + data_offset, unsigned(size), 1, file_handler_);
  333. data.CheckCompression();
  334. }
  335. void DatFile::WriteData(const BinaryData &data, long long size, long long offset, long long data_offset) {
  336. if (dat_state_ != READY)
  337. throw DatException("Bad DatFile::WriteData() - DatFile isn't in valid state!", WRITE_EXCEPTION);
  338. _fseeki64(file_handler_, offset, SEEK_SET);
  339. if (data_offset + size > data.size())
  340. throw DatException("Bad DatFile::WriteData - trying to write more than BinaryData size", WRITE_EXCEPTION);
  341. int x = fwrite(data.data() + data_offset, unsigned(size), 1, file_handler_);
  342. }
  343. /// Special functions used by patch process.
  344. /// Shouldn't be used by any external class.
  345. void DatFile::ApplyFilePatch(Subfile *file, const BinaryData &data) {
  346. if (patched_list.count(file->file_id()) != 0) {
  347. fprintf(stderr, "Warning: DatFile::ApplyFilePatch - found 2 files in patch with the same file_id. Passing last...\n");
  348. return;
  349. }
  350. patched_list[file->file_id()] = new BinaryData(file->MakeHeaderData());
  351. patched_ = true;
  352. auto journal = GetFragmentationJournal();
  353. file->file_size_ = data.size() - 8;
  354. //file->fragments_count_ = 0;
  355. if (data.size() > file->block_size()) {
  356. file->file_offset_ = journal[0].second;
  357. file->block_size_ = data.size();
  358. journal[0].second += data.size();
  359. BinaryData nulls(data.size());
  360. WriteData(nulls, nulls.size(), file_size_);
  361. this->file_size_ += data.size();
  362. }
  363. BinaryData fragments_count(4);
  364. fragments_count.FromNumber<4>(0);
  365. BinaryData file_data = fragments_count + data.CutData(4);
  366. if (file->file_id() != file_data.ToNumber<4>(8))
  367. throw DatException("Bad DatFile::ApplyFilePatch() - Created data's file_id doesn't match to original! "
  368. "Patch wasn't written to .dat file");
  369. WriteData(file_data, file_data.size(), file->file_offset());
  370. UpdateFragmentationJournal(journal);
  371. }
  372. void DatFile::UpdateSubdirectories() {
  373. root_directory_->UpdateDirectories(patched_list, dictionary_);
  374. }
  375. std::vector<std::pair<long long, long long> > DatFile::GetFragmentationJournal() {
  376. BinaryData data(8);
  377. ReadData(data, 8, fragmentation_journal_offset_ + 8);
  378. std::vector<std::pair<long long, long long> > result;
  379. result.emplace_back(std::make_pair(data.ToNumber<4>(0), data.ToNumber<4>(4)));
  380. return result;
  381. }
  382. void DatFile::UpdateHeader() {
  383. BinaryData data(4);
  384. data.FromNumber<4>(constant1_);
  385. WriteData(data, 4, 0x100);
  386. data.FromNumber<4>(constant2_);
  387. WriteData(data, 4, 0x140);
  388. data.FromNumber<4>(file_size_);
  389. WriteData(data, 4, 0x148);
  390. data.FromNumber<4>(version1_);
  391. WriteData(data, 4, 0x14C);
  392. data.FromNumber<4>(version2_);
  393. WriteData(data, 4, 0x150);
  394. data.FromNumber<4>(fragmentation_journal_offset_);
  395. WriteData(data, 4, 0x154);
  396. data.FromNumber<4>(root_directory_offset_);
  397. WriteData(data, 4, 0x160);
  398. }
  399. void DatFile::UpdateFragmentationJournal(const std::vector<std::pair<long long, long long> > &journal) {
  400. for (unsigned i = 0; i < journal.size(); i++) {
  401. long long size = journal[i].first;
  402. long long offset = journal[i].second;
  403. BinaryData data(4);
  404. data.FromNumber<4>(size);
  405. WriteData(data, 4, fragmentation_journal_offset_ + 8 * (i + 1));
  406. data.FromNumber<4>(offset);
  407. WriteData(data, 4, fragmentation_journal_offset_ + 8 * (i + 1) + 4);
  408. }
  409. }
  410. }
  411. }