DownLoadItem.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. using LitJson;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.Collections;
  5. using System.Collections.Generic;
  6. using System.IO;
  7. using System.Text;
  8. using UnityEngine;
  9. using UnityEngine.Networking;
  10. public class DownLoadItem : MonoBehaviour
  11. {
  12. public delegate void DownLoadCallBack(bool b);
  13. public delegate void DownLoadPressOn(float f);
  14. //下载回调
  15. public DownLoadCallBack callback;
  16. //下载进度回调
  17. public DownLoadPressOn onProgress;
  18. //下载ID
  19. public string id;
  20. /// <summary>
  21. /// 下载地址
  22. /// </summary>
  23. public string downLoadPath;
  24. /// <summary>
  25. /// 是否下载成功
  26. /// </summary>
  27. public bool isDownLoad;
  28. /// <summary>
  29. /// 下载成功后的文件
  30. /// </summary>
  31. public byte[] downLoadData;
  32. public object downLoadObject;
  33. public ModelType type;
  34. /// <summary>
  35. /// 进度条
  36. /// </summary>
  37. public float progress;
  38. /// <summary>
  39. /// 下载后状态
  40. /// </summary>
  41. public string downLoadState;
  42. //下载后是否有处理
  43. public bool isAction;
  44. public long updateTime;
  45. private UnityWebRequest webRequest;
  46. public void Init(string downLoadPath,string id,ModelType type,long updateTime)
  47. {
  48. this.downLoadPath = downLoadPath;
  49. this.id = id;
  50. this.type = type;
  51. this.updateTime = updateTime;
  52. LoadManager.Instance.downloadQueueList.Enqueue(this);
  53. }
  54. public System.Collections.IEnumerator DownloadFile()
  55. {
  56. string url = HttpAction.Instance.baseurl + HttpAction.file_download;
  57. if (UserInfo.Instance.is20)
  58. {
  59. url = HttpAction.Instance.baseurl20 + HttpAction.file_download;
  60. }
  61. Debug.Log(" 当前下载>>>> " + url + " " + downLoadPath);
  62. using (webRequest = new UnityWebRequest(url, UnityWebRequest.kHttpVerbPOST))
  63. {
  64. SendMaterials sendImage = new SendMaterials();
  65. sendImage.url = downLoadPath;
  66. string jsonString = JsonConvert.SerializeObject(sendImage);
  67. Debug.Log("body :" + jsonString);
  68. Debug.Log("Token :" + UserInfo.Instance.Token);
  69. byte[] bodyRaw = Encoding.UTF8.GetBytes(jsonString);
  70. webRequest.uploadHandler = (UploadHandler)new UploadHandlerRaw(bodyRaw);
  71. //DownloadHandlerTexture texture = new DownloadHandlerTexture(true);
  72. //webRequest.downloadHandler = texture;
  73. webRequest.downloadHandler = (DownloadHandler)new DownloadHandlerBuffer();
  74. //switch (type)
  75. //{
  76. // case ModelType.Image:
  77. // webRequest.downloadHandler = (DownloadHandler)new DownloadHandlerTexture(true);
  78. // break;
  79. // case ModelType.Video:
  80. // webRequest.downloadHandler = (DownloadHandler)new DownloadHandlerAudioClip("", AudioType.ACC);
  81. // break;
  82. // case ModelType.ABModel:
  83. // webRequest.downloadHandler = (DownloadHandler)new DownloadHandlerFile(Application.persistentDataPath + downLoadPath);
  84. // break;
  85. // case ModelType.Text:
  86. // default:
  87. // webRequest.downloadHandler = (DownloadHandler)new DownloadHandlerBuffer();
  88. // break;
  89. //}
  90. webRequest.SetRequestHeader("authorization", UserInfo.Instance.Token);
  91. webRequest.SetRequestHeader("Content-Type", "application/json");
  92. yield return webRequest.SendWebRequest();
  93. while (!webRequest.isDone)
  94. {
  95. // 此处可以显示下载进度条等UI操作
  96. progress = webRequest.downloadProgress;
  97. onProgress?.Invoke(progress);
  98. // Debug.Log("Download Progress: " + progress);
  99. yield return new WaitForFixedUpdate();
  100. }
  101. if (webRequest.isHttpError || webRequest.isNetworkError)
  102. {
  103. Debug.LogError("Download Failed: " + webRequest.error);
  104. // 下载失败
  105. downLoadState = webRequest.error;
  106. isDownLoad = false;
  107. }
  108. else
  109. {
  110. Debug.Log(webRequest.isDone + " " + webRequest.downloadHandler.data.Length);
  111. // Debug.LogError("Download Failed: " + webRequest.error);
  112. downLoadData = webRequest.downloadHandler.data;
  113. isDownLoad = true;
  114. downLoadState = "下载成功";
  115. }
  116. //if (webRequest.result == UnityWebRequest.Result.ConnectionError || webRequest.result == UnityWebRequest.Result.ProtocolError)
  117. //{
  118. // //Debug.LogError("Download Failed: " + webRequest.error);
  119. // downLoadData = webRequest.downloadHandler.data;
  120. // isDownLoad = true;
  121. //}
  122. //else
  123. //{
  124. // //switch (type)
  125. // //{
  126. // // case ModelType.Image:
  127. // // break;
  128. // // case ModelType.Video:
  129. // // break;
  130. // // case ModelType.ABModel:
  131. // // var ab = DownloadHandlerAssetBundle.GetContent(webRequest);
  132. // // downLoadObject = ab;
  133. // // AssetBundleRequest abRequest = ab.LoadAssetAsync(ab.GetAllAssetNames()[0]);
  134. // // yield return abRequest;
  135. // // GameObject obj = abRequest.asset as GameObject;
  136. // // Debug.Log(" AssetBundleRequest>>>> " + obj.name);
  137. // // break;
  138. // // case ModelType.Text:
  139. // // break;
  140. // // default:
  141. // // break;
  142. // //}
  143. // // 下载失败
  144. //}
  145. callback?.Invoke(isDownLoad);
  146. }
  147. //string url = HttpAction.baseurl + HttpAction.file_download;
  148. //SendMaterials sendImage = new SendMaterials();
  149. //sendImage.url = downLoadPath;
  150. //if (UserInfo.Instance.is20)
  151. //{
  152. // url = HttpAction.baseurl20 + HttpAction.file_download;
  153. //}
  154. //string jsonString = JsonMapper.ToJson(sendImage);
  155. //if (UserInfo.Instance.is20)
  156. // Debug.Log(string.Format("url:{0} postData:{1}", url, jsonString));
  157. //using (UnityWebRequest webRequest = new UnityWebRequest(url, "POST"))
  158. //{
  159. // byte[] bodyRaw = Encoding.UTF8.GetBytes(jsonString);
  160. // webRequest.uploadHandler = (UploadHandler)new UploadHandlerRaw(bodyRaw);
  161. // DownloadHandlerTexture texture = new DownloadHandlerTexture(true);
  162. // webRequest.downloadHandler = texture;
  163. // // Debug.Log(value.mObj.localSavePath);
  164. // // webRequest.downloadHandler = (DownloadHandler)new DownloadHandlerFile(value.mObj.localSavePath);
  165. // // Debug.Log(value.mObj.localSavePath);
  166. // webRequest.SetRequestHeader("authorization", UserInfo.Instance.Token);
  167. // webRequest.SetRequestHeader("Content-Type", "application/json");
  168. // yield return webRequest.SendWebRequest();
  169. // if (webRequest.isHttpError || webRequest.isNetworkError)
  170. // {
  171. // Debug.LogError(webRequest.error + "\n" + webRequest.downloadHandler.text);
  172. // }
  173. // else
  174. // {
  175. // if (callback != null)
  176. // {
  177. // try
  178. // {
  179. // }
  180. // catch (Exception e)
  181. // {
  182. // }
  183. // try
  184. // {
  185. // Texture2D texture2 = texture.texture;
  186. // Sprite createSprite = Sprite.Create(texture2, new Rect(0, 0, texture2.width, texture2.height), Vector2.zero);
  187. // Debug.Log(webRequest.downloadHandler.data.Length + " " + texture2.width);
  188. // Texture2D texture3 = texture.texture;
  189. // }
  190. // catch (Exception e)
  191. // {
  192. // // ErrorLogPanel.Instance.Show(" 图片生成出现错误 " + jsonString);
  193. // }
  194. // ////转为字节数组
  195. // // File.WriteAllBytes(value.mObj.localSavePath, webRequest.downloadHandler.data);
  196. // }
  197. // }
  198. //}
  199. }
  200. public void DownloadFileMsg()
  201. {
  202. Debug.Log("查询需要下载的updateTime"+updateTime);
  203. MsgHandler.AddListener(downLoadPath, HandleMsg);
  204. DownLoadMaterial data = new DownLoadMaterial();
  205. data.downLoadPath = downLoadPath;
  206. data.localLoadPath = Application.persistentDataPath + "/Material/" + Path.GetFileName(downLoadPath);
  207. if(type == ModelType.vuforial)
  208. data.localLoadPath = Application.persistentDataPath + "/StreamingAssets/Vuforia/GHZVuforia." + downLoadPath.Split('.')[1];
  209. data.type = ((int)type).ToString();
  210. Debug.LogError("DownloadFileMsg");
  211. DownloadResManager.Instance.DownLoad(data);
  212. }
  213. private void HandleMsg(Msg msg)
  214. {
  215. if (msg.Value != null)
  216. {
  217. downLoadData = (byte[])msg.Value;
  218. isDownLoad = true;
  219. downLoadState = "下载成功";
  220. }
  221. else
  222. {
  223. isDownLoad = true;
  224. downLoadState = "下载失败";
  225. }
  226. callback?.Invoke(isDownLoad);
  227. MsgHandler.RemoveListener(Application.persistentDataPath + "" + downLoadPath, HandleMsg);
  228. }
  229. Dictionary<string, string> requestHeader = new Dictionary<string, string>(); // header
  230. public void initHead()
  231. {
  232. requestHeader.Clear();
  233. if (UserInfo.Instance.Token != "" && UserInfo.Instance.Token != null)
  234. {
  235. // requestHeader.Add("x-token", UserInfo.Instance.Token);
  236. Debug.Log("ADD Token");
  237. requestHeader.Add("authorization", UserInfo.Instance.Token);
  238. }
  239. requestHeader.Add("Content-Type", "application/json");
  240. }
  241. private void OnDestroy()
  242. {
  243. // 断开下载连接
  244. if (webRequest != null && !webRequest.isDone)
  245. {
  246. webRequest.Abort();
  247. }
  248. }
  249. }