FileSystem.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.IO;
  5. using MPQ.Updater;
  6. using CommonLang.IO;
  7. using System.Text.RegularExpressions;
  8. namespace MPQ.FileSystem
  9. {
  10. public class MPQFileSystem : IDisposable
  11. {
  12. private Dictionary<long, Dictionary<string, MPQFileEntry>> indexer = new Dictionary<long, Dictionary<string, MPQFileEntry>>();
  13. private Dictionary<string, MPQStream> mpq_files = new Dictionary<string, MPQStream>();
  14. /// <summary>
  15. /// 用于老文件存在,新目录已没有的文件
  16. /// </summary>
  17. private Dictionary<string, string> dir = new Dictionary<string, string>();
  18. public MPQFileSystem()
  19. {
  20. }
  21. /// <summary>
  22. /// 搜索并加载目录里的所有MPQ文件
  23. /// </summary>
  24. /// <param name="mpq_dir"></param>
  25. /// <returns></returns>
  26. public bool init(DirectoryInfo mpq_dir)
  27. {
  28. if (mpq_dir.Exists)
  29. {
  30. loadDir(new FileInfo(mpq_dir.FullName + Path.DirectorySeparatorChar + ".dir"));
  31. try
  32. {
  33. foreach (FileInfo file in mpq_dir.GetFiles())
  34. {
  35. if (file.Extension.ToLower().EndsWith(MPQ.Updater.MPQUpdater.MPQ_EXT))
  36. {
  37. if (load(file.FullName) == null)
  38. {
  39. return false;
  40. }
  41. }
  42. }
  43. foreach (DirectoryInfo sub_dir in mpq_dir.GetDirectories())
  44. {
  45. if (!init(sub_dir))
  46. {
  47. return false;
  48. }
  49. }
  50. }
  51. finally
  52. {
  53. dir.Clear();
  54. }
  55. return true;
  56. }
  57. return false;
  58. }
  59. /// <summary>
  60. /// 将自动更新的MPQ加载到文件系统
  61. /// </summary>
  62. /// <param name="updater"></param>
  63. /// <returns></returns>
  64. public bool init(MPQUpdater updater)
  65. {
  66. loadDir(new FileInfo(updater.LocalSaveRoot.FullName + Path.DirectorySeparatorChar + ".dir"));
  67. try
  68. {
  69. foreach (FileInfo rmf in updater.GetAllFiles())
  70. {
  71. if (rmf.FullName.ToLower().EndsWith(MPQUpdater.MPQ_EXT))
  72. {
  73. if (load(rmf.FullName) == null)
  74. {
  75. return false;
  76. }
  77. }
  78. }
  79. }
  80. finally
  81. {
  82. dir.Clear();
  83. }
  84. return true;
  85. }
  86. private void loadDir(FileInfo dir_file)
  87. {
  88. if (dir_file.Exists)
  89. {
  90. string[] lines = File.ReadAllLines(dir_file.FullName);
  91. foreach (var line in lines)
  92. {
  93. dir.Add(line.Trim(), line);
  94. }
  95. }
  96. }
  97. /// <summary>
  98. /// 加载单个MPQ文件到文件系统
  99. /// </summary>
  100. /// <param name="path"></param>
  101. /// <returns></returns>
  102. public MPQStream load(string path)
  103. {
  104. FileInfo fileinfo = new FileInfo(Path.GetFullPath(path));
  105. //Console.WriteLine("MPQFile::Load : " + fileinfo.FullName);
  106. List<MPQFileEntry> entries = new List<MPQFileEntry>(1000);
  107. MPQStream mpq_stream = new MPQStream(fileinfo);
  108. if (mpq_stream.loadEntrys(entries))
  109. {
  110. mpq_files[fileinfo.FullName] = mpq_stream;
  111. foreach (MPQFileEntry e in entries)
  112. {
  113. if (dir.Count == 0 || dir.ContainsKey(e.Key))
  114. {
  115. putEntry(e);
  116. }
  117. else
  118. {
  119. Console.WriteLine(string.Format("MPQFileSystem : ignore entry \"{0}\" not exist in .dir file!!!", e.Key));
  120. }
  121. }
  122. return mpq_stream;
  123. }
  124. else
  125. {
  126. mpq_stream.Dispose();
  127. throw new Exception("Cannot Init MPQ file : " + path);
  128. }
  129. }
  130. public void Dispose()
  131. {
  132. indexer.Clear();
  133. foreach (MPQStream path in mpq_files.Values)
  134. {
  135. path.Dispose();
  136. }
  137. mpq_files.Clear();
  138. }
  139. virtual protected long hashCode(string data)
  140. {
  141. return data.GetHashCode();
  142. }
  143. private bool putEntry(MPQFileEntry re)
  144. {
  145. re.hash = hashCode(re.key);
  146. Dictionary<string, MPQFileEntry> ets = null;
  147. // 首个HASH
  148. if (!indexer.TryGetValue(re.hash, out ets))
  149. {
  150. ets = new Dictionary<string, MPQFileEntry>(1);
  151. ets[re.key] = re;
  152. indexer[re.hash] = ets;
  153. return true;
  154. }
  155. // 首个文件
  156. MPQFileEntry exist = null;
  157. if (!ets.TryGetValue(re.key, out exist))
  158. {
  159. ets[re.key] = re;
  160. return true;
  161. }
  162. // 如果当前文件较新,则更新
  163. if (exist.f_date < re.f_date)
  164. {
  165. ets[re.key] = re;
  166. return true;
  167. }
  168. // 当前文件较老,忽略
  169. return false;
  170. }
  171. private MPQFileEntry findEntry(long hash, String name)
  172. {
  173. Dictionary<string, MPQFileEntry> ets = null;
  174. if (indexer.TryGetValue(hash, out ets))
  175. {
  176. MPQFileEntry ret = null;
  177. if (ets.TryGetValue(name, out ret))
  178. {
  179. return ret;
  180. }
  181. }
  182. return null;
  183. }
  184. public MPQFileEntry findEntry(string path)
  185. {
  186. long hash = hashCode(path);
  187. return findEntry(hash, path);
  188. }
  189. public byte[] getEntryData(MPQFileEntry e)
  190. {
  191. if (e != null)
  192. {
  193. byte[] data = new byte[e.f_size];
  194. e.fs.Read(e, 0, data, 0, data.Length);
  195. return data;
  196. }
  197. return null;
  198. }
  199. public byte[] getData(String name)
  200. {
  201. long hash = hashCode(name);
  202. MPQFileEntry e = findEntry(hash, name);
  203. byte[] ed = getEntryData(e);
  204. return ed;
  205. }
  206. public Stream openEntryStream(MPQFileEntry e)
  207. {
  208. if (e != null)
  209. {
  210. return new EntryStream(e);
  211. }
  212. return null;
  213. }
  214. public Stream openStream(String name)
  215. {
  216. long hash = hashCode(name);
  217. MPQFileEntry e = findEntry(hash, name);
  218. Stream ed = openEntryStream(e);
  219. return ed;
  220. }
  221. public List<MPQFileEntry> listEntrys()
  222. {
  223. List<MPQFileEntry> ret = new List<MPQFileEntry>();
  224. foreach (Dictionary<string, MPQFileEntry> fe in indexer.Values)
  225. {
  226. foreach (MPQFileEntry e in fe.Values)
  227. {
  228. ret.Add(e);
  229. }
  230. }
  231. return ret;
  232. }
  233. public List<MPQFileEntry> listEntrys(string pettern)
  234. {
  235. Regex regex = new Regex(pettern);
  236. List<MPQFileEntry> ret = new List<MPQFileEntry>();
  237. foreach (Dictionary<string, MPQFileEntry> fe in indexer.Values)
  238. {
  239. foreach (MPQFileEntry e in fe.Values)
  240. {
  241. if (regex.IsMatch(e.key))
  242. {
  243. ret.Add(e);
  244. }
  245. }
  246. }
  247. return ret;
  248. }
  249. //----------------------------------------------------------------------------------------------------------------------
  250. public class MPQStream : IDisposable
  251. {
  252. public static byte[] FS_HEAD_START = { (byte)'M', (byte)'F', (byte)'F', (byte)'S' };
  253. public static byte[] FS_ENTRY_START = { (byte)'M', (byte)'F', (byte)'E', (byte)'T' };
  254. public static byte[] FS_TRUNK_START = { (byte)'M', (byte)'F', (byte)'T', (byte)'K' };
  255. public static byte[] FS_END = { (byte)'M', (byte)'F', (byte)'E', (byte)'D' };
  256. public static byte[] VERSION = { 0, 0, 0, 1 };
  257. private FileInfo info;
  258. private FileStream fis;
  259. private long trunk_start;
  260. public long TrunkStart
  261. {
  262. get { return trunk_start; }
  263. }
  264. public FileInfo MPQFile
  265. {
  266. get { return info; }
  267. }
  268. public MPQStream(FileInfo file)
  269. {
  270. this.info = file;
  271. this.fis = new FileStream(file.FullName, FileMode.Open, FileAccess.Read, FileShare.Read);
  272. }
  273. private bool headEquals(byte[] a, byte[] b)
  274. {
  275. for (int i = 0; i < a.Length; i++)
  276. {
  277. if (a[i] != b[i])
  278. {
  279. return false;
  280. }
  281. }
  282. return true;
  283. }
  284. // public List<MPQFileEntry> ListEntrys()
  285. // {
  286. // List<MPQFileEntry> ret = new List<MPQFileEntry>();
  287. // if (loadEntrys(ret))
  288. // {
  289. // }
  290. // return ret;
  291. // }
  292. public bool loadEntrys(List<MPQFileEntry> entries)
  293. {
  294. lock (fis)
  295. {
  296. fis.Position = 0;
  297. BinaryReader bis = new BinaryReader(fis, Encoding.UTF8);
  298. byte[] head_trunk = IOUtil.ReadExpect(fis, MPQStream.FS_HEAD_START.Length); // head
  299. if (headEquals(head_trunk, MPQStream.FS_HEAD_START))
  300. {
  301. head_trunk = IOUtil.ReadExpect(fis, MPQStream.VERSION.Length);// version
  302. long total_size = bis.ReadInt64();
  303. head_trunk = IOUtil.ReadExpect(fis, MPQStream.FS_ENTRY_START.Length);// entry start
  304. if (headEquals(head_trunk, MPQStream.FS_ENTRY_START))
  305. {
  306. int entry_count = bis.ReadInt32();
  307. for (int i = 0; i < entry_count; i++)
  308. {
  309. MPQFileEntry re = new MPQFileEntry();
  310. re.fs = this;
  311. re.load(bis);
  312. entries.Add(re);
  313. }
  314. head_trunk = IOUtil.ReadExpect(fis, MPQStream.FS_TRUNK_START.Length);// trunk start
  315. if (headEquals(head_trunk, MPQStream.FS_TRUNK_START))
  316. {
  317. // record file trunk start
  318. this.trunk_start = fis.Position;
  319. return true;
  320. }
  321. }
  322. }
  323. }
  324. return false;
  325. }
  326. public void Dispose()
  327. {
  328. try
  329. {
  330. lock (fis)
  331. {
  332. fis.Close();
  333. fis.Dispose();
  334. }
  335. }
  336. catch (Exception err)
  337. {
  338. Console.WriteLine(err.Message + "\n" + err.StackTrace);
  339. }
  340. }
  341. public int Read(MPQFileEntry src, long src_pos, byte[] dst, int dst_pos, int length)
  342. {
  343. if (src.fs == this)
  344. {
  345. lock (fis)
  346. {
  347. try
  348. {
  349. fis.Position = trunk_start + src.f_start + src_pos;
  350. IOUtil.ReadToEnd(fis, dst, dst_pos, length);
  351. }
  352. catch (Exception err)
  353. {
  354. throw new Exception("MPQStream read error : " + err.Message, err);
  355. }
  356. }
  357. return length;
  358. }
  359. throw new Exception("MPQStream read error");
  360. }
  361. }
  362. public class MPQFileEntry
  363. {
  364. internal static DateTime JAVA_START_DATE = new DateTime(1970, 1, 1, 0, 0, 0);
  365. internal long hash; // 文件名HASH
  366. //internal int index; // HASH对应所在Entry位置
  367. internal String key; // 文件名
  368. //internal int key_size; // 文件名长度
  369. //internal String key_md5; // 文件名MD5
  370. internal int f_start; // 文件内容开始位置
  371. internal int f_size; // 文件内容尺寸
  372. internal long f_date; // 文件日期(1970-1-1起始秒)
  373. //internal String f_md5; // 文件内容MD5
  374. internal MPQFileSystem.MPQStream fs;
  375. public string Key
  376. {
  377. get { return key; }
  378. }
  379. public int Size
  380. {
  381. get { return f_size; }
  382. }
  383. public DateTime Date
  384. {
  385. get { return JAVA_START_DATE.AddSeconds(f_date); }
  386. }
  387. public override string ToString()
  388. {
  389. return key + "(" + f_size + ")";
  390. }
  391. public byte[] getFileData()
  392. {
  393. byte[] data = new byte[this.f_size];
  394. this.fs.Read(this, 0, data, 0, data.Length);
  395. return data;
  396. }
  397. internal void load(BinaryReader bis)
  398. {
  399. /*
  400. * hash = LittleIODeserialize.getLong (is);
  401. * index = LittleIODeserialize.getInt (is);
  402. * key = LittleIODeserialize.getString (is, "UTF-8");
  403. * key_size = LittleIODeserialize.getInt (is);
  404. * key_md5 = LittleIODeserialize.getString (is, "UTF-8");
  405. * f_start = LittleIODeserialize.getInt (is);
  406. * f_size = LittleIODeserialize.getInt (is);
  407. * f_date = LittleIODeserialize.getLong (is);
  408. * f_md5 = LittleIODeserialize.getString (is, "UTF-8");
  409. */
  410. this.hash = bis.ReadInt64();
  411. bis.ReadInt32();
  412. this.key = readUTF(bis);
  413. bis.ReadInt32();
  414. readUTF(bis);
  415. this.f_start = bis.ReadInt32();
  416. this.f_size = bis.ReadInt32();
  417. this.f_date = bis.ReadInt64();
  418. readUTF(bis);
  419. }
  420. private static string readUTF(BinaryReader bis)
  421. {
  422. int len = bis.ReadUInt16();
  423. byte[] bytes = new byte[len];
  424. int readed = bis.Read(bytes, 0, len);
  425. while (readed < len)
  426. {
  427. readed += bis.Read(bytes, readed, len - readed);
  428. }
  429. return Encoding.UTF8.GetString(bytes, 0, len);
  430. }
  431. public bool Equals(MPQFileEntry b)
  432. {
  433. if (!b.key.Equals(this.key)) return false;
  434. if (!b.f_size.Equals(this.f_size)) return false;
  435. if (!b.f_date.Equals(this.f_date)) return false;
  436. if (!b.f_start.Equals(this.f_start)) return false;
  437. return true;
  438. }
  439. }
  440. /// <summary>
  441. /// 外部读取用流
  442. /// </summary>
  443. internal class EntryStream : Stream
  444. {
  445. private long pos = 0;
  446. private MPQFileEntry e;
  447. public EntryStream(MPQFileEntry entry)
  448. {
  449. this.e = entry;
  450. }
  451. public override long Position
  452. {
  453. get { return pos; }
  454. set { pos = value; }
  455. }
  456. public override long Length
  457. {
  458. get { return e.Size; }
  459. }
  460. public override bool CanRead
  461. {
  462. get { return true; }
  463. }
  464. public override bool CanSeek
  465. {
  466. get { return false; }
  467. }
  468. public override bool CanWrite
  469. {
  470. get { return false; }
  471. }
  472. public override int Read(byte[] buffer, int offset, int count)
  473. {
  474. long avaliable = e.Size - pos;
  475. if (avaliable > 0)
  476. {
  477. count = (int)Math.Min(avaliable, count);
  478. int readed = e.fs.Read(e, pos, buffer, offset, count);
  479. pos += readed;
  480. return readed;
  481. }
  482. else if (avaliable == 0)
  483. {
  484. return 0;
  485. }
  486. throw new IOException("EOF of MPQEntry");
  487. }
  488. public override long Seek(long offset, SeekOrigin origin)
  489. {
  490. throw new NotImplementedException();
  491. }
  492. public override void SetLength(long value)
  493. {
  494. throw new NotImplementedException();
  495. }
  496. public override void Write(byte[] buffer, int offset, int count)
  497. {
  498. throw new NotImplementedException();
  499. }
  500. public override void Flush()
  501. {
  502. }
  503. }
  504. }
  505. }