CURLOPT_READFUNCTION.3 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" * SPDX-License-Identifier: curl
  22. .\" *
  23. .\" **************************************************************************
  24. .\"
  25. .TH CURLOPT_READFUNCTION 3 "25 Jun 2020" libcurl libcurl
  26. .SH NAME
  27. CURLOPT_READFUNCTION \- read callback for data uploads
  28. .SH SYNOPSIS
  29. .nf
  30. #include <curl/curl.h>
  31. size_t read_callback(char *buffer, size_t size, size_t nitems, void *userdata);
  32. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_READFUNCTION, read_callback);
  33. .fi
  34. .SH DESCRIPTION
  35. Pass a pointer to your callback function, as the prototype shows above.
  36. This callback function gets called by libcurl as soon as it needs to read data
  37. in order to send it to the peer - like if you ask it to upload or post data to
  38. the server. The data area pointed at by the pointer \fIbuffer\fP should be
  39. filled up with at most \fIsize\fP multiplied with \fInitems\fP number of bytes
  40. by your function. \fIsize\fP is always 1.
  41. Set the \fIuserdata\fP argument with the \fICURLOPT_READDATA(3)\fP option.
  42. Your function must return the actual number of bytes that it stored in the data
  43. area pointed at by the pointer \fIbuffer\fP. Returning 0 will signal
  44. end-of-file to the library and cause it to stop the current transfer.
  45. If you stop the current transfer by returning 0 "pre-maturely" (i.e before the
  46. server expected it, like when you have said you will upload N bytes and you
  47. upload less than N bytes), you may experience that the server "hangs" waiting
  48. for the rest of the data that will not come.
  49. The read callback may return \fICURL_READFUNC_ABORT\fP to stop the current
  50. operation immediately, resulting in a \fICURLE_ABORTED_BY_CALLBACK\fP error
  51. code from the transfer.
  52. The callback can return \fICURL_READFUNC_PAUSE\fP to cause reading from this
  53. connection to pause. See \fIcurl_easy_pause(3)\fP for further details.
  54. \fBBugs\fP: when doing TFTP uploads, you must return the exact amount of data
  55. that the callback wants, or it will be considered the final packet by the
  56. server end and the transfer will end there.
  57. If you set this callback pointer to NULL, or do not set it at all, the default
  58. internal read function will be used. It is doing an fread() on the FILE *
  59. userdata set with \fICURLOPT_READDATA(3)\fP.
  60. You can set the total size of the data you are sending by using
  61. \fICURLOPT_INFILESIZE_LARGE(3)\fP or \fICURLOPT_POSTFIELDSIZE_LARGE(3)\fP,
  62. depending on the type of transfer. For some transfer types it may be required
  63. and it allows for better error checking.
  64. .SH DEFAULT
  65. The default internal read callback is fread().
  66. .SH PROTOCOLS
  67. This is used for all protocols when doing uploads.
  68. .SH EXAMPLE
  69. .nf
  70. size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userdata)
  71. {
  72. FILE *readhere = (FILE *)userdata;
  73. curl_off_t nread;
  74. /* copy as much data as possible into the 'ptr' buffer, but no more than
  75. 'size' * 'nmemb' bytes! */
  76. size_t retcode = fread(ptr, size, nmemb, readhere);
  77. nread = (curl_off_t)retcode;
  78. fprintf(stderr, "*** We read %" CURL_FORMAT_CURL_OFF_T
  79. " bytes from file\\n", nread);
  80. return retcode;
  81. }
  82. void setup(char *uploadthis)
  83. {
  84. FILE *file = fopen(uploadthis, "rb");
  85. CURLcode result;
  86. /* set callback to use */
  87. curl_easy_setopt(curl, CURLOPT_READFUNCTION, read_callback);
  88. /* pass in suitable argument to callback */
  89. curl_easy_setopt(curl, CURLOPT_READDATA, (void *)file);
  90. result = curl_easy_perform(curl);
  91. }
  92. .fi
  93. .SH AVAILABILITY
  94. CURL_READFUNC_PAUSE return code was added in 7.18.0 and CURL_READFUNC_ABORT
  95. was added in 7.12.1.
  96. .SH RETURN VALUE
  97. This will return CURLE_OK.
  98. .SH "SEE ALSO"
  99. .BR CURLOPT_READDATA "(3), " CURLOPT_WRITEFUNCTION "(3), "
  100. .BR CURLOPT_SEEKFUNCTION "(3), " CURLOPT_UPLOAD "(3), " CURLOPT_POST "(3), "
  101. .BR CURLOPT_UPLOAD_BUFFERSIZE "(3), "