curl断点续载

摘自http://blog.csdn.net/zmy12007/article/details/37157297

摘自http://www.linuxidc.com/Linux/2014-10/107509.htm

curl断点续传,下载过程中关闭控制台,然后重新启动,又会接着下载

  1. #include "stdafx.h"
  2. #include <io.h>
  3. #include "curl/curl.h"
  4. #include <string>/*注意包含这个头文件后必须把share.h重命名一下,可能是stl里面也有这个头文件,比如curl_share.h,然后把包含到的地方替换一下*/
  5. #include "curl/easy.h"
  6. using namespace std;
  7. static size_t downLoadPackage(void *ptr, size_t size, size_t nmemb, void *userdata)
  8. {
  9. FILE *fp = (FILE*)userdata;
  10. size_t written = fwrite(ptr, size, nmemb, fp);
  11. return written;
  12. }
  13. int assetsManagerProgressFunc(void *ptr, double totalToDownload, double nowDownloaded, double totalToUpLoad, double nowUpLoaded)
  14. {
  15. static int percent = 0;
  16. int tmp = 0;
  17. long localLen = *(long*)ptr;
  18. if ( totalToDownload > 0 )
  19. {
  20. tmp = (int)((nowDownloaded + (double)localLen) / (totalToDownload + (double)localLen) * 100);
  21. }
  22. printf("下载进度%0d%%\r", tmp);
  23. return 0;
  24. }
  25. long GetLocalFileLenth(const char* fileName)
  26. {
  27. char strTemp[256] = {0};
  28. strcpy_s(strTemp,fileName);
  29. FILE* fp = fopen(strTemp, "rb");
  30. if(fp != NULL)
  31. {
  32. long localLen = _filelength(_fileno(fp));
  33. fclose(fp);
  34. return localLen;
  35. }
  36. return 0;
  37. }
  38. /************************************************************************/
  39. /* 获取要下载的远程文件的大小                                            */
  40. /************************************************************************/
  41. long getDownloadFileLenth(const char *url){
  42. long downloadFileLenth = 0;
  43. CURL *handle = curl_easy_init();
  44. curl_easy_setopt(handle, CURLOPT_URL, url);
  45. curl_easy_setopt(handle, CURLOPT_HEADER, 1);    //只需要header头
  46. curl_easy_setopt(handle, CURLOPT_NOBODY, 1);    //不需要body
  47. if (curl_easy_perform(handle) == CURLE_OK)
  48. {
  49. curl_easy_getinfo(handle, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &downloadFileLenth);
  50. }
  51. else
  52. {
  53. downloadFileLenth = -1;
  54. }
  55. return downloadFileLenth;
  56. }
  57. bool downLoad(void *_curl, std::string _packageUrl, std::string _storagePath, std::string fileName )
  58. {
  59. // Create a file to save package.
  60. const string outFileName = _storagePath + fileName;
  61. //================断点续载===================
  62. long localLen = GetLocalFileLenth(outFileName.c_str());
  63. FILE *fp = fopen(outFileName.c_str(), "a+b");
  64. if (! fp)
  65. {
  66. return false;
  67. }
  68. fseek(fp, 0, SEEK_END);
  69. // Download pacakge
  70. CURLcode res;
  71. curl_easy_setopt(_curl, CURLOPT_URL, _packageUrl.c_str());
  72. curl_easy_setopt(_curl, CURLOPT_WRITEFUNCTION, downLoadPackage);
  73. curl_easy_setopt(_curl, CURLOPT_WRITEDATA, fp);
  74. curl_easy_setopt(_curl, CURLOPT_NOPROGRESS, false);
  75. curl_easy_setopt(_curl, CURLOPT_PROGRESSFUNCTION, assetsManagerProgressFunc);
  76. curl_easy_setopt(_curl, CURLOPT_NOSIGNAL, 1L);
  77. curl_easy_setopt(_curl, CURLOPT_LOW_SPEED_LIMIT, 1L);
  78. curl_easy_setopt(_curl, CURLOPT_LOW_SPEED_TIME, 5L);
  79. curl_easy_setopt(_curl, CURLOPT_HEADER, 0L);
  80. curl_easy_setopt(_curl, CURLOPT_NOBODY, 0L);
  81. curl_easy_setopt(_curl, CURLOPT_FOLLOWLOCATION, 1L);
  82. curl_easy_setopt(_curl, CURLOPT_RESUME_FROM, localLen);
  83. curl_easy_setopt(_curl, CURLOPT_PROGRESSDATA, &localLen);
  84. res = curl_easy_perform(_curl);
  85. curl_easy_cleanup(_curl);
  86. if (res != 0)
  87. {
  88. fclose(fp);
  89. return false;
  90. }
  91. fclose(fp);
  92. return true;
  93. }
  94. int _tmain(int argc, _TCHAR* argv[])
  95. {
  96. CURL* _curl = curl_easy_init();
  97. if (! _curl)
  98. {
  99. return 0;
  100. }
  101. downLoad(_curl, "http://ardownload.adobe.com/pub/adobe/reader/win/11.x/11.0.01/en_US/AdbeRdr11001_en_US.exe", "./", "AdbeRdr11001_en_US.exe");
  102. //downLoad(_curl, "http://localhost/MyWebServer.rar", "./", "MyWebServer.rar");
  103. getchar();
  104. return 0;
  105. }
上一篇:你也可以玩转Skype -- 基于Skype API开发外壳程序入门


下一篇:HTML5规范-相关资料链接(大多都是英文文档)