DatFile.cpp 16 KB

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