DatFile.cpp 20 KB

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