ftpuploadresume.c
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:4k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  *                                  _   _ ____  _
  3.  *  Project                     ___| | | |  _ | |
  4.  *                             / __| | | | |_) | |
  5.  *                            | (__| |_| |  _ <| |___
  6.  *                             ___|___/|_| ______|
  7.  *
  8.  * $Id: ftpuploadresume.c,v 1.5 2008-08-31 12:12:35 yangtse Exp $
  9.  *
  10.  * Upload to FTP, resuming failed transfers
  11.  *
  12.  * Compile for MinGW like this:
  13.  *  gcc -Wall -pedantic -std=c99 ftpuploadwithresume.c -o ftpuploadresume.exe
  14.  *  -lcurl -lmsvcr70
  15.  *
  16.  * Written by Philip Bock
  17.  */
  18. #include <stdlib.h>
  19. #include <stdio.h>
  20. #include <curl/curl.h>
  21. #if defined(_MSC_VER) && (_MSC_VER < 1300)
  22. #  error _snscanf requires MSVC 7.0 or later.
  23. #endif
  24. /* The MinGW headers are missing a few Win32 function definitions,
  25.    you shouldn't need this if you use VC++ */
  26. #ifdef __MINGW32__
  27. int __cdecl _snscanf(const char * input, size_t length, const char * format, ...);
  28. #endif
  29. /* parse headers for Content-Length */
  30. size_t getcontentlengthfunc(void *ptr, size_t size, size_t nmemb, void *stream) {
  31. int r;
  32. long len = 0;
  33. /* _snscanf() is Win32 specific */
  34. r = _snscanf(ptr, size * nmemb, "Content-Length: %ldn", &len);
  35. if (r) /* Microsoft: we don't read the specs */
  36. *((long *) stream) = len;
  37. return size * nmemb;
  38. }
  39. /* discard downloaded data */
  40. size_t discardfunc(void *ptr, size_t size, size_t nmemb, void *stream) {
  41. return size * nmemb;
  42. }
  43. /* read data to upload */
  44. size_t readfunc(void *ptr, size_t size, size_t nmemb, void *stream)
  45. {
  46. FILE *f = stream;
  47. size_t n;
  48. if (ferror(f))
  49. return CURL_READFUNC_ABORT;
  50. n = fread(ptr, size, nmemb, f) * size;
  51. return n;
  52. }
  53. int upload(CURL *curlhandle, const char * remotepath, const char * localpath,
  54.            long timeout, long tries)
  55. {
  56. FILE *f;
  57. long uploaded_len = 0;
  58. CURLcode r = CURLE_GOT_NOTHING;
  59. int c;
  60. f = fopen(localpath, "rb");
  61. if (f == NULL) {
  62. perror(NULL);
  63. return 0;
  64. }
  65. curl_easy_setopt(curlhandle, CURLOPT_UPLOAD, 1L);
  66. curl_easy_setopt(curlhandle, CURLOPT_URL, remotepath);
  67. if (timeout)
  68. curl_easy_setopt(curlhandle, CURLOPT_FTP_RESPONSE_TIMEOUT, timeout);
  69. curl_easy_setopt(curlhandle, CURLOPT_HEADERFUNCTION, getcontentlengthfunc);
  70. curl_easy_setopt(curlhandle, CURLOPT_HEADERDATA, &uploaded_len);
  71. curl_easy_setopt(curlhandle, CURLOPT_WRITEFUNCTION, discardfunc);
  72. curl_easy_setopt(curlhandle, CURLOPT_READFUNCTION, readfunc);
  73. curl_easy_setopt(curlhandle, CURLOPT_READDATA, f);
  74. curl_easy_setopt(curlhandle, CURLOPT_FTPPORT, "-"); /* disable passive mode */
  75. curl_easy_setopt(curlhandle, CURLOPT_FTP_CREATE_MISSING_DIRS, 1L);
  76. curl_easy_setopt(curlhandle, CURLOPT_VERBOSE, 1L);
  77. for (c = 0; (r != CURLE_OK) && (c < tries); c++) {
  78. /* are we resuming? */
  79. if (c) { /* yes */
  80. /* determine the length of the file already written */
  81. /*
  82.  * With NOBODY and NOHEADER, libcurl will issue a SIZE
  83.  * command, but the only way to retrieve the result is
  84.  * to parse the returned Content-Length header. Thus,
  85.  * getcontentlengthfunc(). We need discardfunc() above
  86.  * because HEADER will dump the headers to stdout
  87.  * without it.
  88.  */
  89. curl_easy_setopt(curlhandle, CURLOPT_NOBODY, 1L);
  90. curl_easy_setopt(curlhandle, CURLOPT_HEADER, 1L);
  91. r = curl_easy_perform(curlhandle);
  92. if (r != CURLE_OK)
  93. continue;
  94. curl_easy_setopt(curlhandle, CURLOPT_NOBODY, 0L);
  95. curl_easy_setopt(curlhandle, CURLOPT_HEADER, 0L);
  96. fseek(f, uploaded_len, SEEK_SET);
  97. curl_easy_setopt(curlhandle, CURLOPT_APPEND, 1L);
  98. }
  99. else { /* no */
  100. curl_easy_setopt(curlhandle, CURLOPT_APPEND, 0L);
  101. }
  102. r = curl_easy_perform(curlhandle);
  103. }
  104. fclose(f);
  105. if (r == CURLE_OK)
  106. return 1;
  107. else {
  108. fprintf(stderr, "%sn", curl_easy_strerror(r));
  109. return 0;
  110. }
  111. }
  112. int main(int c, char **argv) {
  113. CURL *curlhandle = NULL;
  114. curl_global_init(CURL_GLOBAL_ALL);
  115. curlhandle = curl_easy_init();
  116. upload(curlhandle, "ftp://user:pass@host/path/file", "C:\file", 0, 3);
  117. curl_easy_cleanup(curlhandle);
  118. curl_global_cleanup();
  119. return 0;
  120. }