Resource.cs 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. using CommonLang.Log;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Text;
  6. namespace CommonLang.IO
  7. {
  8. public static class Resource
  9. {
  10. private static IResourceLoader mCurLoader = new DefaultResourceLoader();
  11. public static void SetLoader(IResourceLoader loader)
  12. {
  13. mCurLoader = loader;
  14. }
  15. /// <summary>
  16. /// 判断资源是否存在
  17. /// </summary>
  18. /// <param name="path"></param>
  19. /// <returns></returns>
  20. public static bool ExistData(string path)
  21. {
  22. return mCurLoader.ExistData(path);
  23. }
  24. /// <summary>
  25. /// 读取资源
  26. /// </summary>
  27. /// <param name="path">子目录对应的资源路径</param>
  28. /// <returns></returns>
  29. public static byte[] LoadData(string path)
  30. {
  31. return mCurLoader.LoadData(path);
  32. }
  33. /// <summary>
  34. /// 列出所有子文件,不包换目录
  35. /// </summary>
  36. /// <param name="path"></param>
  37. /// <returns></returns>
  38. public static string[] ListFiles(string path)
  39. {
  40. return mCurLoader.ListFiles(path);
  41. }
  42. /// <summary>
  43. /// 读取资源
  44. /// </summary>
  45. /// <param name="path">子目录对应的资源路径</param>
  46. /// <returns></returns>
  47. public static Stream LoadDataAsStream(string path)
  48. {
  49. var stream = mCurLoader.LoadDataAsStream(path);
  50. if (stream == null)
  51. {
  52. var bin = mCurLoader.LoadData(path);
  53. if (bin != null) stream = new MemoryStream(bin);
  54. }
  55. return stream;
  56. }
  57. /// <summary>
  58. /// 读取文本资源
  59. /// </summary>
  60. /// <param name="path"></param>
  61. /// <returns></returns>
  62. public static string LoadAllText(string path)
  63. {
  64. byte[] data = LoadData(path);
  65. if (data != null)
  66. {
  67. return CUtils.DecodeUTF8(data);
  68. }
  69. return null;
  70. }
  71. public static string FormatPath(string path)
  72. {
  73. path = path.Replace('\\', '/');
  74. return path;
  75. }
  76. }
  77. public interface IResourceLoader
  78. {
  79. /// <summary>
  80. /// 判断一个文件是否存在
  81. /// </summary>
  82. /// <param name="path"></param>
  83. /// <returns></returns>
  84. bool ExistData(string path);
  85. /// <summary>
  86. /// 读取二进制数据
  87. /// </summary>
  88. /// <param name="path"></param>
  89. /// <returns></returns>
  90. byte[] LoadData(string path);
  91. /// <summary>
  92. /// 尝试以流的方式读取,返回空表示不支持流
  93. /// </summary>
  94. /// <param name="path"></param>
  95. /// <returns></returns>
  96. Stream LoadDataAsStream(string path);
  97. /// <summary>
  98. /// 列出所有子文件,不包换目录
  99. /// </summary>
  100. /// <param name="path"></param>
  101. /// <returns></returns>
  102. string[] ListFiles(string path);
  103. }
  104. public class DefaultResourceLoader : IResourceLoader
  105. {
  106. public const string PREFIX_FILE = "file://";
  107. public const string PREFIX_RES = "res://";
  108. protected readonly Logger log;
  109. protected static string mRoot = ".";
  110. public static void SetRoot(string root)
  111. {
  112. mRoot = root;
  113. }
  114. public DefaultResourceLoader()
  115. {
  116. log = LoggerFactory.GetLogger(GetType().Name);
  117. }
  118. public DefaultResourceLoader(string root)
  119. {
  120. mRoot = root;
  121. log = LoggerFactory.GetLogger(GetType().Name);
  122. }
  123. //-----------------------------------------------------------------------------------------------------
  124. #region FileSystem
  125. protected virtual bool _TryLoadFromFileSystem(string path, ref byte[] ret)
  126. {
  127. if (System.IO.File.Exists(path))
  128. {
  129. ret = System.IO.File.ReadAllBytes(path);
  130. return true;
  131. }
  132. try
  133. {
  134. string filepath = System.IO.Path.GetFullPath(mRoot + "/" + path);
  135. if (System.IO.File.Exists(filepath))
  136. {
  137. ret = System.IO.File.ReadAllBytes(filepath);
  138. return true;
  139. }
  140. }
  141. catch (Exception err)
  142. {
  143. log.Error(err.Message, err);
  144. }
  145. return false;
  146. }
  147. protected virtual bool _TryLoadFromFileSystem(string path, ref Stream ret)
  148. {
  149. if (System.IO.File.Exists(path))
  150. {
  151. ret = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read);
  152. return true;
  153. }
  154. try
  155. {
  156. string filepath = System.IO.Path.GetFullPath(mRoot + "/" + path);
  157. if (System.IO.File.Exists(filepath))
  158. {
  159. ret = new FileStream(filepath, FileMode.Open, FileAccess.Read, FileShare.Read);
  160. return true;
  161. }
  162. }
  163. catch (Exception err)
  164. {
  165. log.Error(err.Message, err);
  166. }
  167. return false;
  168. }
  169. protected virtual bool _TryListFileSystem(string path, ref string[] ret)
  170. {
  171. string dir = null;
  172. if (System.IO.Directory.Exists(path))
  173. {
  174. dir = System.IO.Path.GetFullPath(path);
  175. }
  176. else
  177. {
  178. dir = System.IO.Path.GetFullPath(mRoot + "/" + path);
  179. }
  180. if (System.IO.Directory.Exists(dir))
  181. {
  182. try
  183. {
  184. var subs = Directory.GetFiles(dir);
  185. var list = new List<string>(subs.Length);
  186. foreach (var f in subs)
  187. {
  188. list.Add(f.Substring(dir.Length));
  189. }
  190. ret = list.ToArray();
  191. return true;
  192. }
  193. catch (Exception err)
  194. {
  195. log.Error(err.Message, err);
  196. }
  197. }
  198. return false;
  199. }
  200. protected virtual bool _ExistWithFileSystem(string path)
  201. {
  202. if (System.IO.File.Exists(path))
  203. {
  204. return true;
  205. }
  206. try
  207. {
  208. string filepath = System.IO.Path.GetFullPath(mRoot + "/" + path);
  209. return System.IO.File.Exists(filepath);
  210. }
  211. catch (Exception err)
  212. {
  213. log.Error(err.Message, err);
  214. }
  215. return false;
  216. }
  217. #endregion
  218. //-----------------------------------------------------------------------------------------------------
  219. public virtual bool ExistData(string path)
  220. {
  221. if (path.StartsWith(PREFIX_FILE))
  222. {
  223. return _ExistWithFileSystem(path.Substring(PREFIX_FILE.Length));
  224. }
  225. if (path.StartsWith(PREFIX_RES))
  226. {
  227. return false;
  228. }
  229. if (System.IO.File.Exists(path) && _ExistWithFileSystem(path))
  230. {
  231. return true;
  232. }
  233. return false;
  234. }
  235. public virtual byte[] LoadData(string path)
  236. {
  237. byte[] ret = null;
  238. if (path.StartsWith(PREFIX_FILE))
  239. {
  240. _TryLoadFromFileSystem(path.Substring(PREFIX_FILE.Length), ref ret);
  241. return ret;
  242. }
  243. if (path.StartsWith(PREFIX_RES))
  244. {
  245. return ret;
  246. }
  247. // File
  248. if (System.IO.File.Exists(path) && _TryLoadFromFileSystem(path, ref ret))
  249. {
  250. return ret;
  251. }
  252. return ret;
  253. }
  254. public virtual Stream LoadDataAsStream(string path)
  255. {
  256. Stream ret = null;
  257. if (path.StartsWith(PREFIX_FILE))
  258. {
  259. _TryLoadFromFileSystem(path.Substring(PREFIX_FILE.Length), ref ret);
  260. return ret;
  261. }
  262. if (path.StartsWith(PREFIX_RES))
  263. {
  264. return ret;
  265. }
  266. // File
  267. if (System.IO.File.Exists(path) && _TryLoadFromFileSystem(path, ref ret))
  268. {
  269. return ret;
  270. }
  271. return ret;
  272. }
  273. public virtual string[] ListFiles(string path)
  274. {
  275. string[] ret = null;
  276. if (path.StartsWith(PREFIX_FILE))
  277. {
  278. _TryListFileSystem(path.Substring(PREFIX_FILE.Length), ref ret);
  279. return ret;
  280. }
  281. if (path.StartsWith(PREFIX_RES))
  282. {
  283. return ret;
  284. }
  285. // File
  286. if (System.IO.Directory.Exists(path) && _TryListFileSystem(path, ref ret))
  287. {
  288. return ret;
  289. }
  290. return null;
  291. }
  292. }
  293. }